/** Shopify CDN: Minification failed

Line 1418:11 Expected identifier but found whitespace
Line 1418:20 Unexpected ";"

**/
/* ═══════════════════════════════════════════
   CAPRI STUDIO — BASE STYLESHEET
   Soft Mediterranean Luxury
═══════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

/* ── BRAND TOKENS ── */
:root {
  --cream:       #F5F0EB;
  --sand:        #E8DDD0;
  --warm-white:  #FDFAF7;
  --charcoal:    #2C2C2A;
  --taupe:       #9C8E82;
  --gold:        #C4A882;
  --gold-light:  #D4BFA0;
  --deep:        #1A1917;
  --deep-2:      #0E0D0C;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;

  --nav-h:       72px;
  --max-w:       1440px;
  --gutter:      clamp(24px, 5vw, 80px);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  --radius-sm:   4px;
  --radius-md:   8px;

  --transition:  0.4s var(--ease-out);
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(48px, 8vw, 100px); }
h2 { font-size: clamp(32px, 5vw, 56px); }
h3 { font-size: clamp(22px, 3vw, 36px); }
h4 { font-size: clamp(16px, 2vw, 22px); }

p { font-size: 13px; font-weight: 300; line-height: 1.85; color: var(--taupe); }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.italic { font-style: italic; }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-pad { padding: var(--section-pad, 80px) 0; }
.section-pad-lg { padding: calc(var(--section-pad, 80px) * 1.5) 0; }

/* ── BUTTONS ── */
.btn {
  border-radius: var(--btn-radius, 0px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid;
  white-space: nowrap;
  text-decoration: none;
}
.btn-dark {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--warm-white);
}
.btn-dark:hover {
  background: var(--deep);
  border-color: var(--deep);
}
.btn-outline-dark {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--warm-white);
}
.btn-outline-light {
  background: transparent;
  border-color: rgba(245,240,235,0.5);
  color: var(--warm-white);
}
.btn-outline-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
}
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
}
.btn-gold:hover {
  background: transparent;
  color: var(--charcoal);
}

/* ── FORMS ── */
.field {
  position: relative;
  margin-bottom: 20px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--sand);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
}
.field input:focus,
.field textarea:focus { border-bottom-color: var(--charcoal); }
.field input::placeholder { color: var(--taupe); }
.field label {
  position: absolute;
  top: 14px; left: 0;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  pointer-events: none;
  transition: all 0.3s;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 8px;
  color: var(--gold);
}

/* ── FADE ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--deep);
  padding: 10px var(--gutter);
  text-align: center;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 201;
  height: var(--ann-h, 38px);
}
.announcement-bar p {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0;
  line-height: 1;
}
.announcement-bar a { color: var(--gold); text-decoration: underline; }

/* ── HEADER / NAV ── */
.site-header {
  background: var(--header-bg, var(--warm-white));
  position: fixed;
  top: var(--ann-h, 0px); left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s, height 0.4s, box-shadow 0.4s;
}
.site-header.transparent { background: transparent; }
.site-header.scrolled {
  background: rgba(253,250,247,0.95);
  backdrop-filter: blur(16px);
  height: 60px;
  box-shadow: none;
  border-bottom: 1px solid rgba(232,221,208,0.6);
}
.header-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.header-nav {
  display: flex;
  gap: 32px;
  list-style: none;
}
.header-nav a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
  transform-origin: left;
}
.header-nav a:hover { color: var(--gold); }
.header-nav a:hover::after { transform: scaleX(1); }

.site-header.transparent .header-nav a { color: var(--warm-white); }
.site-header.transparent .header-nav a:hover { color: var(--gold); }

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.header-logo__img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
  /* Remove the sandy background — show only the CS mark */
  mix-blend-mode: multiply;
}
.site-header.scrolled .header-logo__img {
  mix-blend-mode: normal;
}
.site-header.transparent .header-logo__img {
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
}
.header-logo__img:hover { opacity: 0.75; }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.header-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-header.transparent .header-action-btn { color: var(--warm-white); }
.header-action-btn:hover { color: var(--gold); }

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep);
  font-size: 9px;
  font-weight: 500;
}
.site-header.transparent .cart-count { background: rgba(196,168,130,0.8); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--charcoal);
  transition: var(--transition);
}
.site-header.transparent .menu-toggle span { background: var(--warm-white); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 300;
  color: var(--warm-white);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); font-style: italic; }
.mobile-nav-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none;
  border: none;
  color: var(--taupe);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

/* ── MARQUEE ── */
.marquee-band {
  background: var(--charcoal);
  padding: 13px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll var(--marquee-speed, 40s) linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  white-space: nowrap;
}
.marquee-item span {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
}
.marquee-dot {
  color: var(--gold) !important;
  font-size: 6px !important;
  letter-spacing: 0 !important;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,25,23,0.2) 0%, transparent 40%, rgba(26,25,23,0.5) 100%);
  z-index: 1;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 900px;
}
.hero-eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 1.4s 0.2s var(--ease-out) both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 110px);
  font-weight: 300;
  line-height: 0.92;
  color: var(--warm-white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  animation: fadeUp 1.4s 0.4s var(--ease-out) both;
}
.hero-title em { font-style: italic; color: var(--sand); }
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 20px);
  font-style: italic;
  font-weight: 300;
  color: var(--taupe);
  letter-spacing: 0.06em;
  margin-bottom: 44px;
  animation: fadeUp 1.4s 0.6s var(--ease-out) both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1.4s 0.8s var(--ease-out) both;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1.4s 1.2s var(--ease-out) both;
}
.hero-scroll-cue span {
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── COLLECTION GRID ── */
.collection-grid-section { background: var(--warm-white); }
.collections-heading {
  text-align: center;
  padding: 80px var(--gutter) 48px;
}
.collections-heading .eyebrow { display: block; margin-bottom: 16px; }

.collections-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  padding: 0 3px 3px;
}
.coll-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--sand);
  aspect-ratio: 3/4;
}
.coll-card--featured {
  grid-row: span 2;
  aspect-ratio: unset;
}
.coll-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.coll-card:hover .coll-card__image { transform: scale(1.06); }

.coll-card__placeholder {
  position: absolute;
  inset: 0;
  transition: transform 0.9s var(--ease-out);
}
.coll-card:hover .coll-card__placeholder { transform: scale(1.06); }

.coll-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,25,23,0.72) 0%, rgba(26,25,23,0.1) 50%, transparent 100%);
  z-index: 1;
  transition: opacity 0.4s;
}
.coll-card:hover .coll-card__overlay { opacity: 1.2; }

.coll-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  z-index: 2;
  transform: translateY(6px);
  transition: transform 0.4s var(--ease-out);
}
.coll-card:hover .coll-card__body { transform: translateY(0); }
.coll-card__label {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.coll-card__name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: var(--warm-white);
  margin-bottom: 14px;
  line-height: 1.1;
}
.coll-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s 0.05s, transform 0.4s 0.05s var(--ease-out), color 0.3s;
}
.coll-card:hover .coll-card__link { opacity: 1; transform: translateY(0); }
.coll-card__link:hover { color: var(--gold); }
.coll-card__link::after { content: '→'; }

/* ── BRAND STORY SPLIT ── */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.story-visual {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.story-visual:hover img { transform: scale(1.04); }
.story-visual-mono {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #D4C4B0 0%, #B8A890 40%, #9C8C78 100%);
}
.story-mono-text {
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 300;
  color: rgba(253,250,247,0.18);
  letter-spacing: -0.06em;
  user-select: none;
  line-height: 1;
}
.story-badge {
  position: absolute;
  bottom: 36px; right: 36px;
  width: 76px; height: 76px;
  border: 1px solid rgba(253,250,247,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.story-badge span {
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,250,247,0.7);
  line-height: 1.7;
}
.story-text {
  padding: clamp(48px, 7vw, 96px);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-text .eyebrow { display: block; margin-bottom: 20px; }
.story-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 24px;
  quotes: '\201C' '\201D';
}
.story-quote::before { content: open-quote; color: var(--gold); }
.story-divider {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0 24px;
}
.story-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--taupe);
  max-width: 440px;
  margin-bottom: 36px;
}

/* ── THE WOMAN SECTION (dark) ── */
.woman-section {
  position: relative;
  background: var(--deep);
  overflow: hidden;
  padding: 100px var(--gutter);
  text-align: center;
}
.woman-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 240px);
  font-weight: 300;
  color: rgba(196,168,130,0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.06em;
  user-select: none;
}
.woman-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.woman-section .eyebrow { display: block; margin-bottom: 24px; }
.woman-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 28px;
}
.woman-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--taupe);
  max-width: 520px;
  margin: 0 auto 44px;
}
.woman-traits {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(156,142,130,0.18);
}
.trait-word {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--sand);
  display: block;
  text-align: center;
}
.trait-line {
  width: 20px;
  height: 1px;
  background: var(--gold);
  margin: 10px auto 0;
}

/* ── PRODUCT CARD ── */
.products-section { padding: 80px 0; background: var(--warm-white); }
.products-section .section-header {
  text-align: center;
  padding: 0 var(--gutter) 52px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 0 2px;
}
.product-card {
  position: relative;
  background: var(--cream);
  cursor: pointer;
}
.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--sand);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 12px;
  background: var(--gold);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep);
}
.product-card__quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: var(--charcoal);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-white);
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.product-card:hover .product-card__quick-add { transform: translateY(0); }
.product-card__quick-add:hover { background: var(--gold); color: var(--deep); }
.product-card__body { padding: 20px 20px 24px; }
.product-card__vendor {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 6px;
  display: block;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-card__price {
  font-size: 12px;
  font-weight: 300;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card__price s { color: var(--taupe); }
.product-card__price .sale { color: var(--gold); }
.product-card__swatches {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.swatch {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.swatch:hover, .swatch.active { border-color: var(--charcoal); }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--sand);
  padding: 100px var(--gutter);
  text-align: center;
}
.newsletter-section .eyebrow { display: block; margin-bottom: 16px; }
.newsletter-section h2 { margin-bottom: 12px; }
.newsletter-subtitle {
  font-size: 12px;
  font-weight: 300;
  color: var(--taupe);
  letter-spacing: 0.06em;
  margin-bottom: 44px;
}
.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  border-bottom: 1px solid var(--charcoal);
  gap: 12px;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 0;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--charcoal);
}
.newsletter-form input::placeholder { color: var(--taupe); }
.newsletter-form button {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
  transition: color 0.3s;
  padding: 13px 0;
  white-space: nowrap;
}
.newsletter-form button:hover { color: var(--gold); }

/* ── FOOTER ── */
.site-footer {
  background: var(--charcoal);
  padding: 72px var(--gutter) 36px;
  color: var(--taupe);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(156,142,130,0.12);
  margin-bottom: 36px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--warm-white);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 14px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: 28px;
}
.footer-socials {
  display: flex;
  gap: 20px;
}
.footer-socials a {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color 0.3s;
}
.footer-socials a:hover { color: var(--gold); }
.footer-col-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 20px;
  display: block;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-links a {
  font-size: 11px;
  font-weight: 300;
  color: var(--taupe);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--sand); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 10px;
  font-weight: 300;
  color: rgba(156,142,130,0.45);
  letter-spacing: 0.1em;
}
.footer-tagline-bottom {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: rgba(156,142,130,0.35);
}

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,25,23,0.5);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: var(--warm-white);
  z-index: 500;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid var(--sand);
}
.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.cart-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--taupe);
  line-height: 1;
  transition: color 0.3s;
}
.cart-close:hover { color: var(--charcoal); }
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  text-align: center;
}
.cart-empty p {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--taupe);
}
.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--sand);
}
.cart-item__image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
}
.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}
.cart-item__variant {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--taupe);
  margin-bottom: 12px;
}
.cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--sand);
}
.qty-btn {
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--sand); }
.qty-val { font-size: 12px; font-weight: 300; min-width: 20px; text-align: center; }
.cart-item__price {
  font-size: 13px;
  font-weight: 300;
  color: var(--charcoal);
}
.cart-drawer__footer {
  padding: 24px 32px 32px;
  border-top: 1px solid var(--sand);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.cart-subtotal span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}
.cart-subtotal strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
}
.cart-note {
  font-size: 10px;
  font-weight: 300;
  color: var(--taupe);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.btn-checkout {
  width: 100%;
  padding: 16px;
  text-align: center;
  background: var(--charcoal);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
}
.btn-checkout:hover { background: var(--deep); }
.btn-continue {
  width: 100%;
  padding: 14px;
  text-align: center;
  background: transparent;
  color: var(--taupe);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}
.btn-continue:hover { color: var(--charcoal); }

/* ── PRODUCT PAGE ── */
.product-page { padding-top: var(--nav-h); }
.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  min-height: auto;
}
.product-gallery {
  position: sticky;
  top: var(--nav-h);
  height: auto;
  overflow: hidden;
}
.product-gallery__main {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.product-gallery__main img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  transition: transform 0.6s var(--ease-out);
  cursor: zoom-in;
}
.product-gallery__main img:hover { transform: scale(1.04); }
.product-gallery__thumbs {
  display: flex;
  gap: 3px;
  padding: 3px 0 0;
  height: 25%;
}
.product-gallery__thumbs .thumb {
  flex: 1;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.product-gallery__thumbs .thumb.active { opacity: 1; }
.product-gallery__thumbs .thumb:hover { opacity: 1; }
.product-gallery__thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info {
  padding: clamp(40px, 6vw, 80px);
  background: var(--warm-white);
  overflow-y: auto;
  max-height: auto;
}
.product-info__breadcrumb {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 24px;
}
.product-info__breadcrumb a { transition: color 0.3s; }
.product-info__breadcrumb a:hover { color: var(--gold); }
.product-info__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 10px;
}
.product-info__price {
  font-size: 20px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-info__price s { color: var(--taupe); font-size: 14px; }
.product-info__divider {
  width: 100%;
  height: 1px;
  background: var(--sand);
  margin: 28px 0;
}
.variant-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.variant-label span { color: var(--charcoal); font-weight: 400; }
.size-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 24px;
}
.size-btn {
  padding: 12px 4px;
  text-align: center;
  background: transparent;
  border: 1px solid var(--sand);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s;
}
.size-btn:hover { border-color: var(--charcoal); }
.size-btn.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--warm-white);
}
.size-btn.unavailable {
  color: var(--taupe);
  text-decoration: line-through;
  cursor: not-allowed;
}
.add-to-cart-btn {
  width: 100%;
  padding: 18px;
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 12px;
}
.add-to-cart-btn:hover { background: var(--deep); border-color: var(--deep); }
.add-to-cart-btn:active { transform: scale(0.99); }
.product-description {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
}
.product-description h3 {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.product-description p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--taupe);
  margin-bottom: 12px;
}
.accordion-item {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--sand);
}
.accordion-trigger {
  position: relative;
  z-index: 2;
  transition: color 0.3s;
  text-align: left;
}
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s;
}
.accordion-trigger:hover { color: var(--gold); }
.accordion-trigger .icon {
  font-size: 20px;
  font-weight: 200;
  color: var(--taupe);
  line-height: 1;
  transition: transform 0.3s;
}
.accordion-trigger.open .icon { transform: rotate(45deg); }
.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
}
.accordion-body.open { max-height: 2000px; overflow: visible; padding-bottom: 16px; position: relative; z-index: 0; }
.accordion-body p {
  padding-bottom: 20px;
  font-size: 12px;
  line-height: 1.9;
}

/* ── COLLECTION / CATALOG PAGE ── */
.catalog-page { padding-top: var(--nav-h); }
.catalog-hero {
  height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gutter) 44px;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.catalog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
  position: relative;
  z-index: 1;
}
.catalog-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}
.catalog-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--gutter);
  border-bottom: 1px solid var(--sand);
}
.catalog-count {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--taupe);
}
.catalog-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}
.catalog-sort select {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--charcoal);
  cursor: pointer;
}
.catalog-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 2px var(--gutter);
}

/* ── ABOUT PAGE ── */
.about-page { padding-top: var(--nav-h); }
.about-hero {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 110px);
  font-weight: 300;
  color: var(--warm-white);
  font-style: italic;
  position: relative;
  z-index: 1;
}
.about-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px var(--gutter);
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--charcoal);
}
.about-content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--taupe);
  margin-bottom: 20px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 16px var(--gutter);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  border-bottom: 1px solid var(--sand);
}
.breadcrumb a { transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--charcoal); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .collections-grid {
    grid-template-columns: 1fr 1fr;
  }
  .coll-card--featured { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .story-split { grid-template-columns: 1fr; }
  .story-visual { min-height: auto; }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: relative; height: auto; top: 0; }
  .product-gallery__main { height: auto; }
  .product-info { max-height: none; }
  .catalog-products { grid-template-columns: repeat(2, 1fr); padding: 2px 12px; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; --nav-h: 60px; }
  .header-nav { display: none; }
  .menu-toggle { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr; }
  .coll-card--featured { grid-column: span 1; aspect-ratio: 3/4; }
  .story-text { padding: 48px 24px; }
  .woman-traits { gap: 20px; }
  .catalog-products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .catalog-products { grid-template-columns: repeat(2, 1fr); padding: 2px 8px; }
}

/* ═══════════════════════════════════════════
   FIXES & ADDITIONS
═══════════════════════════════════════════ */

/* ── PRODUCT CARD HOVER IMAGE ── */
.product-card__media { position: relative; }
.product-card__img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.product-card:hover .product-card__img-hover { opacity: 1; }
.product-card__placeholder-img {
  width: 100%;
  height: 100%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--taupe);
  opacity: 0.3;
}
.product-card__quick-add--soldout {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px;
  background: rgba(44,44,42,0.5);
  color: var(--taupe);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}

/* ── CATALOG PAGE FIXES ── */
.catalog-page { padding-top: var(--nav-h); }

.catalog-hero {
  height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gutter) 48px;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.catalog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
}
.catalog-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}
.catalog-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  border-bottom: 1px solid var(--sand);
  background: var(--warm-white);
  position: sticky;
  top: var(--nav-h);
  z-index: 10;
}
.catalog-count {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--taupe);
}
.catalog-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}
.catalog-sort select {
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--charcoal);
  cursor: pointer;
  padding-right: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239C8E82'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}
.catalog-grid-wrap {
  padding: 0;
  background: var(--warm-white);
}
.catalog-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 2px;
}
.catalog-empty {
  text-align: center;
  padding: 80px var(--gutter);
}
.catalog-empty p {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--taupe);
}
.catalog-pagination {
  text-align: center;
  padding: 56px var(--gutter);
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.catalog-pagination a,
.catalog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--taupe);
  border: 1px solid var(--sand);
  text-decoration: none;
  transition: all 0.3s;
}
.catalog-pagination a:hover { border-color: var(--charcoal); color: var(--charcoal); }
.catalog-pagination .current {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--warm-white);
}

/* ── PRODUCT PAGE FIXES ── */
.product-page { padding-top: var(--nav-h); }

.breadcrumb {
  padding: 16px var(--gutter);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  border-bottom: 1px solid var(--sand);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--charcoal); }
.breadcrumb-sep { color: var(--sand); }

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: calc(100vh - var(--nav-h) - 40px);
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: var(--nav-h);
}
.product-gallery__main {
  width: 100%;
  overflow: hidden;
  background: var(--cream);
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  cursor: zoom-in;
}
.product-gallery__main img:hover { transform: scale(1.04); }
.product-gallery__thumbs {
  display: flex;
  gap: 2px;
  padding-top: 2px;
}
.product-gallery__thumbs .thumb {
  flex: 1;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.product-gallery__thumbs .thumb.active,
.product-gallery__thumbs .thumb:hover { opacity: 1; }
.product-gallery__thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info {
  padding: clamp(32px, 5vw, 72px);
  background: var(--warm-white);
}
.product-info__breadcrumb {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 20px;
  display: none; /* shown only on desktop inside the panel */
}
@media (min-width: 901px) {
  .product-info__breadcrumb { display: block; }
  .breadcrumb { display: none; } /* hide top breadcrumb on desktop, use side panel one */
}
.product-info__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
}
.product-info__price {
  font-size: 20px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.product-info__price s { color: var(--taupe); font-size: 14px; }
.product-info__divider {
  width: 100%;
  height: 1px;
  background: var(--sand);
  margin: 24px 0;
}
.variant-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.size-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 20px;
}
.size-btn {
  padding: 11px 4px;
  text-align: center;
  background: transparent;
  border: 1px solid var(--sand);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.25s;
}
.size-btn:hover { border-color: var(--charcoal); }
.size-btn.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--warm-white);
}
.size-btn.unavailable {
  color: var(--taupe);
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.45;
}
.add-to-cart-btn {
  width: 100%;
  padding: 17px;
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 10px;
}
.add-to-cart-btn:hover:not(:disabled) { background: var(--deep); border-color: var(--deep); }
.add-to-cart-btn:disabled {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--taupe);
  cursor: not-allowed;
}
.accordion-item { border-bottom: 1px solid var(--sand); }
.accordion-trigger {
  width: 100%;
  padding: 17px 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s;
  text-align: left;
}
.accordion-trigger:hover { color: var(--gold); }
.accordion-trigger .icon {
  font-size: 20px;
  font-weight: 200;
  color: var(--taupe);
  line-height: 1;
  transition: transform 0.35s;
  flex-shrink: 0;
}
.accordion-trigger.open .icon { transform: rotate(45deg); }
.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease-out);
  position: relative;
  z-index: 1;
}
.accordion-body.open { max-height: 500px; }
.accordion-body p {
  padding-bottom: 20px;
  font-size: 12px;
  line-height: 1.9;
  color: var(--taupe);
}

/* ── RESPONSIVE FIXES ── */
@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
    display: block;
  }
  .product-gallery {
    position: relative;
    top: 0;
  }
  .product-gallery__main {
  aspect-ratio: unset;
  max-height: none;
}
  .product-info {
    padding: 28px 20px 48px;
  }
  .catalog-products {
    grid-template-columns: repeat(2, 1fr);
    padding: 2px 8px;
  }
}
@media (max-width: 600px) {
  .catalog-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    padding: 1px 4px;
  }
  .size-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ── RELATED PRODUCTS ── */
#related-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 var(--gutter);
}

#related-products .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
/* ── MOBILE GALLERY FIX ── */
@media (max-width: 900px) {
  .product-gallery,
  .product-gallery__main {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    width: 100% !important;
  }
  .product-gallery__main img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: unset !important;
    object-position: unset !important;
    display: block !important;
  }
}
/* ── MOBILE OVERFLOW FIX ── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ── MOBILE PRODUCT CAROUSEL ── */
@media (max-width: 768px) {
  .products-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important;
    padding: 0 20px 20px !important;
    scrollbar-width: none !important;
  }
  .products-grid::-webkit-scrollbar {
    display: none !important;
  }
  .products-grid .product-card {
    flex: 0 0 70vw !important;
    scroll-snap-align: start !important;
    min-width: 70vw !important;
  }
}
/* ── QUICK ADD FIX ── */
@media (max-width: 768px) {
  .product-card {
    position: relative !important;
    overflow: hidden !important;
  }
  .product-card .quick-add,
  .product-card .quick-add-btn,
  .product-card [class*="quick"] {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    margin: 0 !important;
  }
}
/* ── REVIEWS FIX ── */
.judgeme_widget,
#judgeme_product_reviews,
.jdgm-widget,
.jdgm-rev-widg {
  max-width: 100% !important;
  overflow-x: hidden !important;
  padding: 0 16px !important;
  box-sizing: border-box !important;
}

.jdgm-rev__body,
.jdgm-rev__author,
.jdgm-histogram,
.jdgm-prev-badge {
  max-width: 100% !important;
  overflow-x: hidden !important;
}