@import "tailwindcss";


@theme {
  --color-brand-primary: var(--brand-primary, #4F46E5);
  --color-brand-secondary: var(--brand-secondary, #7C3AED);
  --color-brand-background: var(--brand-background, #FFFFFF);
  --color-brand-text: var(--brand-text, #111827);
  --radius-brand: var(--brand-radius, 0.5rem);
  --my-grid-cols: 6;
}


/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: #138670; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.storefront-header {
  background-color: var(--brand-primary);
  color: #fff;
  padding: 1rem 2rem;
}

.storefront-header-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.storefront-logo {
  max-height: 2.5rem;
  width: auto;
}

.storefront-name {
  font-size: 1.25rem;
  font-weight: 700;
}

