/** Shopify CDN: Minification failed

Line 443:38 Expected "]" to go with "["

**/
/* ============================================================
   Wild Littles — Shopify theme
   Mantiene visualmente el diseño de Lovable (React + Tailwind).
   Todo en CSS plano, sin build step.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

/* ----- Tokens (HSL) ----- */
:root {
  --background: 40 14% 90%;
  --foreground: 30 8% 14%;
  --surface: 38 12% 86%;
  --surface-deep: 36 10% 80%;
  --cream: 42 18% 92%;
  --card: 40 14% 92%;
  --primary: 30 8% 14%;
  --primary-foreground: 42 18% 94%;
  --muted: 38 8% 84%;
  --muted-foreground: 30 6% 38%;
  --accent: 28 18% 38%;
  --accent-foreground: 42 18% 94%;
  --olive: 78 10% 38%;
  --clay: 28 14% 42%;
  --border: 36 8% 78%;
  --input: 36 8% 78%;
  --ring: 30 8% 22%;
  --ink: 30 8% 8%;
  --radius: 0.125rem;
  --font-serif: 'Instrument Serif', ui-serif, Georgia, serif;
  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-brush: 'Caveat Brush', 'Instrument Serif', cursive;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; border: 0 solid hsl(var(--border)); }
html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.5; }
body {
  margin: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
}
img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
input, button, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; font-weight: inherit; font-size: inherit; }
::selection { background: hsl(var(--foreground)); color: hsl(var(--background)); }

/* ----- Typography helpers ----- */
.font-serif { font-family: var(--font-serif); font-optical-sizing: auto; }
.font-sans  { font-family: var(--font-sans); }
.font-brush { font-family: var(--font-brush); font-weight: 400; letter-spacing: -0.01em; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tabular-nums { font-variant-numeric: tabular-nums; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.whitespace-nowrap { white-space: nowrap; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.leading-none { line-height: 1; }

.eyebrow { font-size: 10px; text-transform: uppercase; letter-spacing: 0.32em; font-weight: 500; color: hsl(var(--muted-foreground)); }
.rule { height: 1px; width: 100%; background: hsl(var(--foreground) / 0.15); }
.num-index { font-family: var(--font-serif); font-style: italic; color: hsl(var(--clay)); font-size: 14px; letter-spacing: -0.01em; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ----- Layout container ----- */
.container { width: 100%; max-width: 1480px; margin-inline: auto; padding-inline: 1.5rem; }

/* ----- Display / position ----- */
.block { display: block; } .inline-block { display: inline-block; } .inline { display: inline; } .hidden { display: none; }
.flex { display: flex; } .inline-flex { display: inline-flex; } .grid { display: grid; }
.flex-col { flex-direction: column; } .flex-row { flex-direction: row; }
.flex-1 { flex: 1 1 0%; } .flex-shrink-0, .shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; } .items-start { align-items: flex-start; } .items-baseline { align-items: baseline; }
.justify-center { justify-content: center; } .justify-between { justify-content: space-between; }
.self-start { align-self: flex-start; }
.relative { position: relative; } .absolute { position: absolute; } .fixed { position: fixed; } .sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.left-1\/2 { left: 50%; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.z-40 { z-index: 40; } .z-50 { z-index: 50; } .z-30 { z-index: 30; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.min-h-screen { min-height: 100vh; }
.min-w-0 { min-width: 0; }
.min-h-0 { min-height: 0; }
.h-full { height: 100%; }
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xs { max-width: 20rem; }
.mx-auto { margin-inline: auto; }
.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; }
.cursor-pointer { cursor: pointer; }
.object-cover { object-fit: cover; }

/* ----- Spacing (px on common values) ----- */
.gap-1 { gap: .25rem; } .gap-1\.5 { gap: .375rem; } .gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; } .gap-7 { gap: 1.75rem; } .gap-8 { gap: 2rem; } .gap-10 { gap: 2.5rem; } .gap-12 { gap: 3rem; }
.gap-x-8 { column-gap: 2rem; }

.p-0 { padding: 0; }
.px-2 { padding-inline: .5rem; } .px-3 { padding-inline: .75rem; } .px-4 { padding-inline: 1rem; }
.px-5 { padding-inline: 1.25rem; } .px-7 { padding-inline: 1.75rem; } .px-8 { padding-inline: 2rem; }
.py-2 { padding-block: .5rem; } .py-2\.5 { padding-block: .625rem; } .py-3 { padding-block: .75rem; } .py-4 { padding-block: 1rem; }
.py-5 { padding-block: 1.25rem; } .py-10 { padding-block: 2.5rem; } .py-16 { padding-block: 4rem; } .py-20 { padding-block: 5rem; }
.pt-6 { padding-top: 1.5rem; } .pt-8 { padding-top: 2rem; }
.pb-4 { padding-bottom: 1rem; } .pb-6 { padding-bottom: 1.5rem; } .pb-10 { padding-bottom: 2.5rem; }
.pr-2 { padding-right: .5rem; } .pr-16 { padding-right: 4rem; }

.mt-0\.5 { margin-top: .125rem; } .mt-1 { margin-top: .25rem; } .mt-1\.5 { margin-top: .375rem; }
.mt-2 { margin-top: .5rem; } .mt-3 { margin-top: .75rem; } .mt-5 { margin-top: 1.25rem; } .mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; } .mt-12 { margin-top: 3rem; }
.mb-1 { margin-bottom: .25rem; } .mb-1\.5 { margin-bottom: .375rem; } .mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; } .mb-5 { margin-bottom: 1.25rem; } .mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; } .mb-10 { margin-bottom: 2.5rem; } .mb-12 { margin-bottom: 3rem; }
.space-y-3 > * + * { margin-top: .75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }

/* ----- Sizing ----- */
.w-3 { width: .75rem; } .h-3 { height: .75rem; }
.w-3\.5 { width: .875rem; } .h-3\.5 { height: .875rem; }
.w-4 { width: 1rem; } .h-4 { height: 1rem; }
.w-5 { width: 1.25rem; } .h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; } .h-6 { height: 1.5rem; }
.w-7 { width: 1.75rem; } .h-7 { height: 1.75rem; }
.w-8 { width: 2rem; } .h-8 { height: 2rem; }
.w-9 { width: 2.25rem; } .h-9 { height: 2.25rem; }
.w-10 { width: 2.5rem; } .h-10 { height: 2.5rem; }
.w-20 { width: 5rem; } .h-24 { height: 6rem; }
.w-24 { width: 6rem; } .w-32 { width: 8rem; } .h-32 { height: 8rem; }
.h-px { height: 1px; }
.h-\[72px\] { height: 72px; }
.h-\[84px\] { height: 84px; }
.h-\[18px\] { height: 18px; } .w-\[18px\] { width: 18px; }
.h-2\.5 { height: .625rem; }
.w-\[260px\] { width: 260px; } .w-\[300px\] { width: 300px; } .w-\[320px\] { width: 320px; }
.w-\[340px\] { width: 340px; } .w-\[380px\] { width: 380px; }

/* Aspect ratio */
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }

/* ----- Colors (background) ----- */
.bg-background { background-color: hsl(var(--background)); }
.bg-ink { background-color: hsl(var(--ink)); }
.bg-cream { background-color: hsl(var(--cream)); }
.bg-surface { background-color: hsl(var(--surface)); }
.bg-surface-deep { background-color: hsl(var(--surface-deep)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-transparent { background-color: transparent; }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-background\/90 { background-color: hsl(var(--background) / 0.9); }
.bg-background\/40 { background-color: hsl(var(--background) / 0.4); }
.bg-ink\/85 { background-color: hsl(var(--ink) / 0.85); }
.bg-ink\/0 { background-color: hsl(var(--ink) / 0); }
.bg-ink\/20 { background-color: hsl(var(--ink) / 0.2); }
.bg-foreground\/15 { background-color: hsl(var(--foreground) / 0.15); }

/* ----- Colors (text) ----- */
.text-foreground { color: hsl(var(--foreground)); }
.text-background { color: hsl(var(--background)); }
.text-ink { color: hsl(var(--ink)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-clay { color: hsl(var(--clay)); }
.text-background\/70 { color: hsl(var(--background) / 0.7); }
.text-background\/40 { color: hsl(var(--background) / 0.4); }
.text-background\/90 { color: hsl(var(--background) / 0.9); }
.text-foreground\/75 { color: hsl(var(--foreground) / 0.75); }

/* placeholders */
.placeholder\:text-background\/40::placeholder { color: hsl(var(--background) / 0.4); }

/* ----- Borders ----- */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-y { border-block-width: 1px; }
.border-b-0 { border-bottom-width: 0; }
.border-foreground\/10 { border-color: hsl(var(--foreground) / 0.1); }
.border-foreground\/20 { border-color: hsl(var(--foreground) / 0.2); }
.border-ink { border-color: hsl(var(--ink)); }
.border-background\/40 { border-color: hsl(var(--background) / 0.4); }
.border-background { border-color: hsl(var(--background)); }
.divide-x > * + * { border-left-width: 1px; }
.divide-foreground\/10 > * + * { border-color: hsl(var(--foreground) / 0.1); }

.rounded-full { border-radius: 9999px; }

/* ----- Effects ----- */
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1); }
.opacity-0 { opacity: 0; }
.opacity-40 { opacity: 0.4; }
.opacity-60 { opacity: 0.6; }
.opacity-90 { opacity: 0.9; }
.opacity-50 { opacity: 0.5; }

/* ----- Transitions ----- */
.transition-all { transition: all 200ms ease; }
.transition-colors { transition: color 200ms, background-color 200ms, border-color 200ms; }
.transition-opacity { transition: opacity 200ms; }
.transition-transform { transition: transform 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* ----- Hover ----- */
.hover\:opacity-50:hover { opacity: 0.5; }
.hover\:opacity-60:hover { opacity: 0.6; }
.hover\:bg-ink:hover { background-color: hsl(var(--ink)); }
.hover\:bg-ink\/85:hover { background-color: hsl(var(--ink) / 0.85); }
.hover\:bg-background\/90:hover { background-color: hsl(var(--background) / 0.9); }
.hover\:text-background:hover { color: hsl(var(--background)); }
.hover\:text-ink:hover { color: hsl(var(--ink)); }
.hover\:border-ink:hover { border-color: hsl(var(--ink)); }

/* ----- Focus ----- */
.focus\:outline-none:focus { outline: none; }
.focus\:border-background:focus { border-color: hsl(var(--background)); }

/* ----- Disabled ----- */
.disabled\:opacity-50:disabled { opacity: 0.5; }
button:disabled { cursor: not-allowed; }

/* ----- Scroll ----- */
.scroll-smooth { scroll-behavior: smooth; }
.snap-x { scroll-snap-type: x mandatory; }
.snap-mandatory { scroll-snap-type: x mandatory; }
.snap-start { scroll-snap-align: start; }

.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* ----- Custom utilities (de index.css del proyecto Lovable) ----- */
.underline-grow {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 700ms var(--ease-out-expo);
}
.underline-grow:hover { background-size: 100% 1px; }

.marquee { animation: marquee 50s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.image-zoom { transition: transform 1600ms var(--ease-out-expo); }
.group:hover .image-zoom { transform: scale(1.05); }

.grain { position: relative; }
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up 1100ms var(--ease-out-expo) both; }

@keyframes spin { to { transform: rotate(360deg); } }
.animate-spin { animation: spin 1s linear infinite; }
.animate-spin-slow { animation: spin 22s linear infinite; }

/* ----- Typography sizes (px-arbitrary used in JSX) ----- */
.text-\[10px\] { font-size: 10px; line-height: 1.3; }
.text-\[11px\] { font-size: 11px; line-height: 1.4; }
.text-\[12px\] { font-size: 12px; line-height: 1.5; }
.text-\[13px\] { font-size: 13px; line-height: 1.5; }
.text-\[14px\] { font-size: 14px; line-height: 1.6; }
.text-sm { font-size: 14px; line-height: 1.5; }
.text-lg { font-size: 18px; line-height: 1.5; }
.text-xl { font-size: 20px; line-height: 1.4; }
.text-3xl { font-size: 30px; line-height: 1.2; }
.text-\[22px\] { font-size: 22px; }
.text-\[34px\] { font-size: 34px; }
.text-\[44px\] { font-size: 44px; }
.text-\[48px\] { font-size: 48px; }
.text-\[52px\] { font-size: 52px; }
.text-\[56px\] { font-size: 56px; }
.text-\[60px\] { font-size: 60px; }
.text-\[68px\] { font-size: 68px; }
.text-\[72px\] { font-size: 72px; }
.text-\[80px\] { font-size: 80px; }
.text-\[88px\] { font-size: 88px; }
.text-\[92px\] { font-size: 92px; }
.text-\[104px\] { font-size: 104px; }
.text-\[112px\] { font-size: 112px; }
.text-\[128px\] { font-size: 128px; }
.text-\[8px\] { font-size: 8px; }
.text-\[9px\] { font-size: 9px; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.tracking-\[0\.22em\] { letter-spacing: 0.22em; }
.tracking-\[0\.28em\] { letter-spacing: 0.28em; }
.tracking-\[0\.32em\] { letter-spacing: 0.32em; }
.tracking-\[0\.55em\] { letter-spacing: 0.55em; }
.tracking-\[0\.6em\] { letter-spacing: 0.6em; }

.leading-\[0\.95\] { line-height: 0.95; }
.leading-\[1\.55\] { line-height: 1.55; }
.leading-\[1\.7\] { line-height: 1.7; }

/* ----- Grid columns ----- */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ----- Group helpers ----- */
.group { /* placeholder, classnames apply via descendant selectors below */ }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem) translateY(-0.25rem); }
.group:hover .group-hover\:-translate-y-1 { transform: translateX(0.25rem) translateY(-0.25rem); }
.group:hover .group-hover\:bg-ink\/20 { background-color: hsl(var(--ink) / 0.2); }

.translate-y-3 { transform: translateY(0.75rem); }

/* ----- Order ----- */
.order-1 { order: 1; } .order-2 { order: 2; }

/* ----- Responsive — sm (≥640px) ----- */
@media (min-width: 640px) {
  .sm\:inline { display: inline; }
  .sm\:block { display: block; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:max-w-lg { max-width: 32rem; }
  .sm\:text-\[60px\] { font-size: 60px; }
  .sm\:text-\[72px\] { font-size: 72px; }
  .sm\:text-\[80px\] { font-size: 80px; }
  .sm\:text-\[92px\] { font-size: 92px; }
  .sm\:px-6 { padding-inline: 1.5rem; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:w-\[300px\] { width: 300px; }
  .sm\:w-\[320px\] { width: 320px; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }
}

/* ----- Responsive — md (≥768px) ----- */
@media (min-width: 768px) {
  .md\:inline { display: inline; }
}

/* ----- Responsive — lg (≥1024px) ----- */
@media (min-width: 1024px) {
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-6 { grid-column: span 6 / span 6; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:divide-x > * + * { border-left-width: 1px; }
  .lg\:border-b-0 { border-bottom-width: 0; }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  .lg\:py-10 { padding-block: 2.5rem; }
  .lg\:py-12 { padding-block: 3rem; }
  .lg\:py-20 { padding-block: 5rem; }
  .lg\:py-28 { padding-block: 7rem; }
  .lg\:pt-8 { padding-top: 2rem; }
  .lg\:pb-10 { padding-bottom: 2.5rem; }
  .lg\:pl-6 { padding-left: 1.5rem; }
  .lg\:px-8 { padding-inline: 2rem; }
  .lg\:px-6 { padding-inline: 1.5rem; }
  .lg\:gap-x-8 { column-gap: 2rem; }
  .lg\:gap-x-10 { column-gap: 2.5rem; }
  .lg\:gap-x-12 { column-gap: 3rem; }
  .lg\:gap-y-10 { row-gap: 2.5rem; }
  .lg\:gap-4 { gap: 1rem; }
  .lg\:mb-8 { margin-bottom: 2rem; }
  .lg\:mb-14 { margin-bottom: 3.5rem; }
  .lg\:mb-16 { margin-bottom: 4rem; }
  .lg\:top-7 { top: 1.75rem; }
  .lg\:left-7 { left: 1.75rem; }
  .lg\:bottom-7 { bottom: 1.75rem; }
  .lg\:right-7 { right: 1.75rem; }
  .lg\:top-10 { top: 2.5rem; }
  .lg\:left-10 { left: 2.5rem; }
  .lg\:w-32 { width: 8rem; } .lg\:h-32 { height: 8rem; }
  .lg\:w-7 { width: 1.75rem; } .lg\:h-7 { height: 1.75rem; }
  .lg\:w-9 { width: 2.25rem; } .lg\:h-9 { height: 2.25rem; }
  .lg\:w-5 { width: 1.25rem; } .lg\:h-5 { height: 1.25rem; }
  .lg\:w-\[340px\] { width: 340px; }
  .lg\:w-\[380px\] { width: 380px; }
  .lg\:h-\[84px\] { height: 84px; }
  .lg\:h-\[82vh\] { height: 82vh; }
  .lg\:aspect-auto { aspect-ratio: auto; }
  .lg\:inline { display: inline; }
  .lg\:text-\[72px\] { font-size: 72px; }
  .lg\:text-\[88px\] { font-size: 88px; }
  .lg\:text-\[104px\] { font-size: 104px; }
  .lg\:text-\[112px\] { font-size: 112px; }
}

/* ----- Responsive — xl (≥1280px) ----- */
@media (min-width: 1280px) {
  .xl\:text-\[128px\] { font-size: 128px; }
}

/* ----- Top fixed positions used in Hero ----- */
.top-5 { top: 1.25rem; }
.left-5 { left: 1.25rem; }
.bottom-5 { bottom: 1.25rem; }
.right-5 { right: 1.25rem; }
.top-6 { top: 1.5rem; }
.left-6 { left: 1.5rem; }
.bottom-3 { bottom: .75rem; }
.left-3 { left: .75rem; }
.right-3 { right: .75rem; }
.-bottom-1 { bottom: -0.25rem; }
.left-0 { left: 0; }

/* ----- Misc utilities used inline ----- */
.last\:border-b-0:last-child { border-bottom-width: 0; }
[\&\:nth-child\(2\)\]\:lg\:border-b-0 { /* placeholder; replicated via :nth-child below */ }
@media (min-width: 1024px) {
  .lg-second-noborder:nth-child(2) { border-bottom-width: 0; }
}

/* ----- Form controls baseline ----- */
input[type="email"], input[type="text"], input[type="search"] {
  background: transparent;
  border-radius: 0;
}

/* ----- Cart drawer (slide-in sheet) ----- */
.cart-drawer-backdrop {
  position: fixed; inset: 0; background: hsl(var(--ink) / 0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 300ms var(--ease-out-expo);
  z-index: 49;
}
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100vh; width: 100%; max-width: 32rem;
  background: hsl(var(--background));
  transform: translateX(100%);
  transition: transform 400ms var(--ease-out-expo);
  z-index: 50;
  display: flex; flex-direction: column;
  padding: 1.5rem;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* ----- Helper: hide scroll on horizontal carousels ----- */
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* ---- Lookbook infinite marquee (CSS animation) ---- */
.lookbook-marquee {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: lookbook-scroll 70s linear infinite;
}
@media (min-width: 1024px) { .lookbook-marquee { gap: 1rem; } }
.lookbook-marquee:hover { animation-play-state: paused; }
@keyframes lookbook-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
