/* ══════════════════════════════════════════════════
   POSH SEASON — Website Styles
   ══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Ephesis&display=swap');

/* ── Variables ── */
:root {
  --white:      #FFFFFF;
  --cream:      #F5EDE8;
  --blush:      #E8D5CB;
  --black:      #111111;
  --charcoal:   #333333;
  --gray:       #888888;
  --light:      #E5E3DF;
  --gold:       #C4A86A;
  --green:      #25D366;
  --nav-h:      80px;
  --max-w:      1280px;
  --pad-x:      80px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
}
h1 { font-size: clamp(3.2rem, 6vw, 6rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }
em { font-style: italic; }
p  { font-size: 0.94rem; line-height: 1.85; color: var(--gray); }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255,255,255,0.55); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { color: var(--black); }

/* ══════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--dark:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: #b8975d;
  border-color: #b8975d;
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ══════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 var(--pad-x);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.35s, border-color 0.35s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-color: var(--light);
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 54px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav__links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.25s ease;
}
.nav__links a:hover { color: var(--black); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active::after { width: 100%; }

.nav__instagram {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gray);
  transition: color 0.2s;
  flex-shrink: 0;
}
.nav__instagram:hover { color: var(--black); }

/* Cart button */
.nav__cart {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav__cart:hover { opacity: 0.65; }
.nav__cart svg {
  width: 22px;
  height: 22px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--black);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Drawer */
.nav__drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--light);
  display: flex;
  flex-direction: column;
  padding: 24px var(--pad-x) 28px;
  gap: 20px;
  z-index: 499;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__drawer.open { transform: translateY(0); }
.drawer__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.2s;
}
.drawer__link:hover { color: var(--charcoal); }
.drawer__instagram { color: var(--gray); margin-top: 4px; }

/* ══════════════════════════════════════════════════
   LANGUAGE SWITCHER
   ══════════════════════════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  margin-right: 10px;
  flex-shrink: 0;
}
.lang-btn {
  background: var(--black);
  border: 1px solid var(--black);
  cursor: pointer;
  padding: 5px 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.lang-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

/* Arabic font override */
body.lang-ar,
body.lang-ar h1,
body.lang-ar h2,
body.lang-ar h3,
body.lang-ar p,
body.lang-ar a,
body.lang-ar button,
body.lang-ar input,
body.lang-ar textarea,
body.lang-ar label,
body.lang-ar span {
  font-family: 'Tajawal', sans-serif;
}
body.lang-ar .nav__links a,
body.lang-ar .nav__links span,
body.lang-ar .drawer__link,
body.lang-ar .eyebrow,
body.lang-ar .page-hero__title,
body.lang-ar .btn,
body.lang-ar .wlc-eyebrow,
body.lang-ar .wlc-btn,
body.lang-ar .footer__heading,
body.lang-ar .cart-drawer__title,
body.lang-ar .cart-checkout-btn,
body.lang-ar .contact-form-title,
body.lang-ar .product-cat,
body.lang-ar .cf-submit,
body.lang-ar .product-page__add-btn,
body.lang-ar .product-page__desc,
body.lang-ar .size-toggle-btn,
body.lang-ar .size-chart-link,
body.lang-ar .size-table th,
body.lang-ar .co-summary__title,
body.lang-ar .co-form-panel__title,
body.lang-ar .co-total__label,
body.lang-ar .co-success h2,
body.lang-ar .checkout-submit,
body.lang-ar .form-field label {
  letter-spacing: 0;
}
body.lang-ar .wlc-eyebrow {
  font-size: 0.85rem;
}

/* Keep Our Story content in LTR (content is in English) */
body.lang-ar .brand-story {
  direction: ltr;
}

/* Fix select arrow position in RTL */
body.lang-ar .cf-field select,
body.lang-ar .co-select {
  background-position: left 16px center;
  padding-left: 44px;
  padding-right: 18px;
}

/* Preserve footer brand fonts — POSH SEASON + tagline stay in English style */
body.lang-ar .footer__logo {
  font-family: 'Cormorant Garamond', serif;
}
body.lang-ar .footer__brand p {
  font-family: 'Jost', sans-serif;
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--pad-x) 80px var(--pad-x);
  gap: 28px;
}

.hero__title { color: var(--black); }

.hero__sub {
  max-width: 360px;
  color: var(--gray);
  font-size: 0.94rem;
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Hero visual panel */
.hero__visual {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 0.4s;
}


/* ══════════════════════════════════════════════════
   COLLECTION
   ══════════════════════════════════════════════════ */
.collection {
  padding: 110px var(--pad-x);
  background: var(--white);
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

/* Product card */
.product-card { position: relative; }

.product-card__img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Real photo */
.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.65s ease, opacity 0.3s;
}
.product-card:hover .product-img {
  transform: scale(1.04);
}

/* Placeholder */
.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}
.product-placeholder span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-align: center;
  padding: 16px;
}
.product-placeholder--soon { background: var(--blush); }
.coming-soon-tag {
  font-size: 0.65rem !important;
  letter-spacing: 0.16em !important;
  color: var(--charcoal) !important;
  border: 1px solid rgba(0,0,0,0.2);
  padding: 8px 16px;
}

/* Hover overlay — subtle dark tint on hover (no button, just visual cue) */
.product-card__hover {
  display: none;
}

/* Dim image slightly on hover to signal clickability */
.product-card:not(.product-card--soon):hover .product-img {
  filter: brightness(0.92);
}

.product-card__info {
  padding: 18px 0 0;
}
.product-card__info h3 {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 4px;
  font-weight: 500;
}
.product-cat {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.product-price {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--black);
  font-weight: 400;
}
.product-card__add-btn {
  margin-top: 14px;
  width: 100%;
  padding: 12px;
  background: var(--black);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.product-card__add-btn:hover { background: var(--charcoal); }

/* Collection footer */
.collection__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.collection__cta p {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--gray);
}

/* ══════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════ */
.process {
  padding: 110px var(--pad-x);
  background: var(--cream);
}

.process__steps {
  display: flex;
  align-items: flex-start;
  max-width: 960px;
  margin: 0 auto 48px;
}

.process__step {
  flex: 1;
  padding: 0 48px;
  text-align: center;
}

.process__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 20px;
}

.process__step h3 {
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 14px;
}
.process__step p { font-size: 0.88rem; }

.process__divider {
  width: 1px;
  height: 100px;
  background: var(--blush);
  align-self: center;
  flex-shrink: 0;
}

.process__note {
  text-align: center;
}
.process__note span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gray);
  border-top: 1px solid var(--blush);
  display: inline-block;
  padding-top: 20px;
}

/* ══════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
}

.about__text {
  padding: 100px var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.about__text h2 { color: var(--black); max-width: 440px; }
.about__text p  { max-width: 420px; }

.about__brand-mark {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 80px 60px;
}

.about__brand-mark img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
}

.about__stats {
  display: flex;
  gap: 40px;
}
.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--black);
  white-space: nowrap;
}
.stat__label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════
   SIZE GUIDE
   ══════════════════════════════════════════════════ */
.size-guide {
  padding: 110px var(--pad-x);
  background: var(--white);
}

.size-guide__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 72px;
  align-items: start;
}

.size-guide__table-wrap { overflow-x: auto; }

.size-unit-toggle {
  display: inline-flex;
  border: 1px solid var(--light);
  margin-bottom: 16px;
  overflow: hidden;
}
.unit-btn {
  padding: 5px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  transition: background 0.15s, color 0.15s;
}
.unit-btn.active { background: var(--black); color: var(--white); }

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.size-table th {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 12px 18px;
  text-align: center;
  border-bottom: 1.5px solid var(--black);
  white-space: nowrap;
}
.size-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--light);
  color: var(--black);
  font-size: 0.88rem;
  transition: background 0.15s;
}
.size-table tbody tr:hover td { background: var(--cream); }
.size-table tbody td:first-child { font-weight: 500; }

.size-guide__note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--gray);
  max-width: 480px;
}

.size-guide__image img {
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* ══════════════════════════════════════════════════
   CTA / CONTACT
   ══════════════════════════════════════════════════ */
.cta-section {
  background: var(--black);
  padding: 130px var(--pad-x);
  text-align: center;
}

.cta-section__inner {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-section__title {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.cta-section__sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  line-height: 1.85;
  max-width: 480px;
}

.cta-section__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
  background: var(--cream);
  padding: 72px var(--pad-x) 36px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--blush);
  margin-bottom: 32px;
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 10px;
}
.footer__brand p { font-size: 0.82rem; }

.footer__heading {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
}

.footer__nav,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a,
.footer__contact a {
  font-size: 0.82rem;
  color: var(--gray);
  transition: color 0.2s;
}
.footer__nav a:hover,
.footer__contact a:hover { color: var(--black); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p {
  font-size: 0.74rem;
  color: var(--gray);
}

/* ══════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
   ══════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(17, 17, 17, 0.25);
  z-index: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
  background: var(--charcoal);
  box-shadow: 0 6px 28px rgba(17, 17, 17, 0.35);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ══════════════════════════════════════════════════
   FADE-IN ANIMATION
   ══════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤1100px)
   ══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --pad-x: 48px; }

  .nav__links { gap: 28px; }

  .collection__grid { grid-template-columns: repeat(2, 1fr); }

  .size-guide__inner {
    grid-template-columns: 1fr;
  }
  .size-guide__image {
    display: flex;
    justify-content: center;
  }
  .size-guide__image img { width: 280px; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤768px)
   ══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --pad-x: 24px;
    --nav-h: 64px;
  }

  /* Nav */
  .nav__links { display: none; }
  .nav__instagram { display: none; }
  .nav__toggle { display: flex; }
  .nav__logo img { height: 36px; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__visual {
    height: 65vw;
    min-height: 280px;
    order: -1;
  }
  .hero__logo-mark { width: 140px; height: 140px; }
  .hero__content {
    padding: 48px var(--pad-x);
    gap: 20px;
  }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  /* Full-screen hero */
  .hero-full { height: 78vh; min-height: 400px; }
  .hero-full__content { padding-bottom: 44px; }
  .hero-full__content .btn { padding: 14px 32px; font-size: 0.68rem; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }

  /* Collection */
  .collection { padding: 64px var(--pad-x); }
  .collection__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Collection preview (homepage) */
  .collection-preview { padding: 60px var(--pad-x); }
  .collection-preview__grid { gap: 16px; }

  /* Process */
  .process { padding: 64px var(--pad-x); }
  .process__steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .process__divider {
    width: 48px;
    height: 1px;
  }
  .process__step { padding: 0; }
  .process__num { font-size: 3.5rem; }

  /* About */
  .about { grid-template-columns: 1fr; }
  .about__text { padding: 56px var(--pad-x); }
  .about__text h2 { max-width: 100%; }
  .about__brand-mark { padding: 48px var(--pad-x); }
  .about__stats { gap: 24px; }

  /* Size guide */
  .size-guide { padding: 64px var(--pad-x); }

  /* CTA */
  .cta-section { padding: 80px var(--pad-x); }
  .cta-section__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }
  .cta-section__actions .btn { justify-content: center; }

  /* Footer */
  .footer { padding: 56px var(--pad-x) 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* WhatsApp / Instagram float */
  .wa-float { bottom: 20px; right: 16px; width: 48px; height: 48px; }
  .wa-float svg { width: 22px; height: 22px; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Small mobile (≤480px)
   ══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --pad-x: 20px; }

  /* Single-column product grid */
  .collection__grid { grid-template-columns: 1fr; }
  .collection-preview__grid { grid-template-columns: 1fr; }

  /* Stats */
  .about__stats { flex-direction: column; gap: 20px; align-items: center; }

  /* Hero button full-width */
  .hero-full__content .btn { width: 80vw; text-align: center; }

  /* CTA stacked buttons full-width */
  .cta-section__actions { max-width: 100%; }

  /* Collection footer button */
  .collection-preview__footer .btn { width: 100%; text-align: center; justify-content: center; }

  /* Product cards — tighter text */
  .product-card__info h3 { font-size: 0.92rem; }
  .product-price { font-size: 0.84rem; }

  /* Cart drawer full-width */
  .cart-drawer { width: 100vw; }
}

/* ══════════════════════════════════════════════════
   MULTI-PAGE — NAV ACTIVE LINK & SOLID STATE
   ══════════════════════════════════════════════════ */
.nav__links a.active  { color: var(--black); }
.drawer__link.active  { color: var(--black); }

/* Used on inner pages so nav is always visible */
.nav--solid {
  background: rgba(255,255,255,0.97);
  border-color: var(--light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ══════════════════════════════════════════════════
   INNER PAGE HERO BANNER
   ══════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 36px) var(--pad-x) 36px;
  background: var(--cream);
  text-align: center;
}
.page-hero .eyebrow { display: block; margin-bottom: 14px; }
.page-hero__title {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0;
}
.page-hero__sub {
  font-size: 0.92rem;
  color: var(--gray);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ══════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════ */
.contact-page {
  padding: 80px var(--pad-x) 120px;
  background: var(--white);
}
.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 72px;
}
.contact-card {
  background: var(--cream);
  padding: 52px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.contact-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,0.07); transform: translateY(-2px); }
.contact-card__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.contact-card__icon svg { width: 28px; height: 28px; fill: var(--white); }
.contact-card h3 { font-size: 1.35rem; color: var(--black); }
.contact-card p  { font-size: 0.88rem; color: var(--gray); max-width: 240px; }
.contact-note {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  border-top: 1px solid var(--light);
  padding-top: 48px;
}
.contact-note p { font-size: 0.88rem; color: var(--gray); line-height: 1.9; }

/* ══════════════════════════════════════════════════
   RETURN & EXCHANGE POLICY PAGE
   ══════════════════════════════════════════════════ */
.policy-page {
  padding: 80px var(--pad-x) 120px;
  background: var(--white);
}
.policy-content {
  max-width: 720px;
  margin: 0 auto;
}
.policy-section {
  margin-bottom: 52px;
}
.policy-section h3 {
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--light);
}
.policy-section p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.95;
  margin-bottom: 12px;
}
.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.policy-list li {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  padding-left: 22px;
  position: relative;
}
.policy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--black);
  font-size: 0.85rem;
}
.policy-list--numbered { counter-reset: policy-counter; }
.policy-list--numbered li { counter-increment: policy-counter; }
.policy-list--numbered li::before {
  content: counter(policy-counter);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
}
.policy-highlight {
  background: var(--cream);
  padding: 28px 32px;
  margin-top: 48px;
}
.policy-highlight p { font-size: 0.88rem; }
.policy-highlight a { color: var(--black); text-decoration: underline; }

/* ══════════════════════════════════════════════════
   OUR STORY PAGE — EXPANDED ABOUT
   ══════════════════════════════════════════════════ */
.story-intro {
  padding: 80px var(--pad-x) 100px;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-intro__text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.story-intro__text h2 { color: var(--black); max-width: 420px; }
.story-intro__text p  { max-width: 440px; }
.story-intro__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  background: var(--cream);
  padding: 60px 48px;
}
.story-intro__visual img {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
}

/* ══════════════════════════════════════════════════
   HOME — MINI COLLECTION PREVIEW
   ══════════════════════════════════════════════════ */
.collection-preview {
  padding: 110px var(--pad-x);
  background: var(--white);
}
.collection-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto 56px;
}
.collection-preview__footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.collection-preview__footer p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Inner pages
   ══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .story-intro { gap: 48px; }
}
@media (max-width: 768px) {
  .page-hero { padding: calc(var(--nav-h) + 28px) var(--pad-x) 28px; }
  .contact-methods { grid-template-columns: 1fr; gap: 16px; }
  .contact-card { padding: 36px 24px; }
  .contact-page { padding: 48px var(--pad-x) 72px; }
  .policy-page  { padding: 48px var(--pad-x) 72px; }
  .story-intro  { grid-template-columns: 1fr; padding: 56px var(--pad-x) 72px; }
  .story-intro__text h2 { max-width: 100%; }
  .story-intro__visual  { padding: 40px var(--pad-x); }
  .collection-preview { padding: 60px var(--pad-x); }
  .collection-preview__grid { grid-template-columns: repeat(2,1fr); gap: 16px; max-width: 100%; }
}
@media (max-width: 480px) {
  .collection-preview__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   PRODUCT PAGE — checkout.html
   ══════════════════════════════════════════════════ */
.product-page {
  display: grid;
  grid-template-columns: 55fr 45fr;
  margin-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
}

.product-page__gallery {
  background: var(--white);
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
  display: flex;
  direction: ltr;
}

/* Single-image product (pearl mini) */
.gallery__main {
  flex: 1;
  height: 100%;
}

.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Thumbnail strip */
.gallery__thumbs {
  width: 106px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 10px;
  overflow-y: auto;
  background: var(--cream);
  scrollbar-width: none;
}
.gallery__thumbs::-webkit-scrollbar { display: none; }

.gallery__thumb {
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}
.gallery__thumb:hover { opacity: 0.8; }
.gallery__thumb.active { border-color: var(--black); opacity: 1; }

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Main image view */
.gallery__main-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.gallery__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__slide {
  min-width: 100%;
  height: 100%;
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.15s;
}
.gallery__arrow:hover { background: rgba(0, 0, 0, 0.7); }
.gallery__arrow--prev { left: 16px; }
.gallery__arrow--next { right: 16px; }


[dir="rtl"] .gallery__thumbs { order: 2; }
[dir="rtl"] .gallery__main-wrap { order: 1; }

.gallery__dot.active { background: var(--black); border-color: var(--black); }

.product-page__info {
  padding: 64px 52px 80px;
  display: flex;
  flex-direction: column;
}

.product-page__cat {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}

.product-page__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 12px;
}

.product-page__price {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
}

.product-page__divider {
  height: 1px;
  background: var(--light);
  margin: 24px 0;
}

.product-page__desc {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 32px;
}

.product-page__add-btn {
  width: 100%;
  padding: 18px;
  background: var(--black);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 24px;
}
.product-page__add-btn:hover { background: var(--charcoal); }

.product-page__add-err {
  font-size: 0.82rem;
  color: #DC2626;
  display: none;
  margin-top: 8px;
}
.product-page__add-err.show { display: block; }

/* ── Shared form fields ── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--light);
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--black); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--gray); font-size: 0.88rem; }
.form-field textarea { min-height: 88px; resize: vertical; line-height: 1.7; }

/* Size selector */
.size-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 14px;
}
.size-toggle-btn {
  flex: 1;
  padding: 11px;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--light);
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}
.size-toggle-btn.active { background: var(--black); border-color: var(--black); color: var(--white); }
.size-toggle-btn:first-child { border-right: none; }

.size-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.size-radio { display: none; }
.size-radio + label {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--light);
  font-size: 0.78rem; font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}
.size-radio + label:hover { border-color: var(--black); color: var(--black); }
.size-radio:checked + label { background: var(--black); border-color: var(--black); color: var(--white); }

.checkout-note {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.75;
}
.checkout-submit {
  width: 100%;
  padding: 16px;
  background: var(--black);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.checkout-submit:hover { background: var(--charcoal); }
.checkout-submit:disabled { opacity: 0.55; cursor: not-allowed; }

/* Success state */
.checkout-success {
  text-align: center;
  padding: 48px 32px;
  display: none;
}
.checkout-success.show { display: block; }
.checkout-success__icon {
  width: 72px; height: 72px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.checkout-success__icon svg {
  width: 30px; height: 30px;
  stroke: var(--gold); fill: none; stroke-width: 2.5;
}
.checkout-success h2 { color: var(--black); margin-bottom: 16px; }
.checkout-success p  { max-width: 400px; margin: 0 auto 32px; }

/* Error message */
.form-error {
  background: #FEF2F2;
  border-left: 3px solid #DC2626;
  color: #DC2626;
  padding: 12px 18px;
  font-size: 0.84rem;
  line-height: 1.6;
  display: none;
}
.form-error.show { display: block; }

/* ══════════════════════════════════════════════════
   WELCOME NOTICE POPUP
   ══════════════════════════════════════════════════ */
.wlc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.wlc-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.wlc-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: 92vw;
  max-width: 620px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--cream);
  z-index: 1200;
  padding: 48px 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}
.wlc-popup.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}

.wlc-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.wlc-close:hover { opacity: 1; }
.wlc-close svg {
  width: 20px; height: 20px;
  stroke: var(--black); stroke-width: 1.5; fill: none;
  stroke-linecap: round;
}

.wlc-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  text-align: center;
}

.wlc-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}

.wlc-line {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.85;
}
.wlc-line--strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--black);
  line-height: 1.5;
}
.wlc-line strong { color: var(--black); font-weight: 500; }

.wlc-divider {
  height: 1px;
  background: var(--blush);
  margin: 4px 0;
}

.wlc-btn {
  width: 100%;
  padding: 18px;
  background: var(--black);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.wlc-btn:hover { background: var(--charcoal); }

@media (max-width: 600px) {
  .wlc-popup { padding: 40px 24px 32px; }
}

/* ══════════════════════════════════════════════════
   SIZE CHART MODAL
   ══════════════════════════════════════════════════ */
.sc-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.sc-modal.open {
  opacity: 1;
  pointer-events: all;
}
.sc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.52);
  cursor: pointer;
}
.sc-modal__box {
  position: relative;
  background: var(--white);
  padding: 40px 44px 44px;
  width: 92vw;
  max-width: 740px;
  max-height: 88vh;
  overflow-y: auto;
  z-index: 1;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
}
.sc-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.sc-modal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--black);
}
.sc-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.sc-modal__close:hover { opacity: 1; }
.sc-modal__close svg {
  width: 22px; height: 22px;
  stroke: var(--black); stroke-width: 1.5; fill: none;
  stroke-linecap: round;
}
.sc-modal__sub {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 24px;
}
.sc-modal__table-wrap { overflow-x: auto; }
.sc-modal__footer {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.8;
}

/* Size chart link on product pages */
.size-chart-link {
  background: none;
  border: none;
  border-bottom: 1.5px solid var(--black);
  padding: 0 0 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  align-self: flex-start;
  margin-top: 10px;
  transition: color 0.2s, border-color 0.2s;
}
.size-chart-link:hover { color: var(--charcoal); border-color: var(--charcoal); }

@media (max-width: 600px) {
  .sc-modal__box { padding: 28px 20px 32px; }
}

/* ══════════════════════════════════════════════════
   CART DRAWER
   ══════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
  z-index: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 440px;
  max-width: 100vw;
  background: var(--white);
  z-index: 800;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--light);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}
.cart-drawer__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--black);
}
.cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cart-drawer__close:hover { opacity: 0.5; }
.cart-drawer__close svg {
  width: 22px; height: 22px;
  stroke: var(--black); stroke-width: 1.5; fill: none;
}

.cart-summary {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px 32px;
  flex-shrink: 0;
}
.cart-summary__img {
  width: 80px; height: 100px;
  object-fit: cover;
  object-position: top center;
  background: var(--cream);
  flex-shrink: 0;
  display: block;
}
.cart-summary__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-summary__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
}
.cart-summary__meta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
.cart-summary__price { font-size: 0.92rem; color: var(--black); }

.cart-divider {
  height: 1px;
  background: var(--light);
  margin: 0 32px;
  flex-shrink: 0;
}

.cart-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 32px 40px;
  flex: 1;
}
.cart-form__intro {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.75;
}
.cart-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Cart items inside drawer ── */
.cart-items-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 56px 32px;
  text-align: center;
}
.cart-empty p {
  font-size: 0.9rem;
  color: var(--gray);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 20px 32px;
  border-bottom: 1px solid var(--light);
}
.cart-item__img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  object-position: top center;
  background: var(--cream);
  display: block;
}
.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-item__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.25;
}
.cart-item__price {
  font-size: 0.88rem;
  color: var(--black);
}
.cart-item__sizes {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cart-size-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--light);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.15s;
}
.cart-size-btn:hover { border-color: var(--black); color: var(--black); }
.cart-size-btn.active { background: var(--black); border-color: var(--black); color: var(--white); }

.cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.cart-item__remove:hover { opacity: 1; }
.cart-item__remove svg {
  width: 18px; height: 18px;
  stroke: var(--black); stroke-width: 1.5; fill: none;
  stroke-linecap: round;
}

.cart-footer {
  flex-shrink: 0;
  padding: 20px 32px 28px;
  border-top: 1px solid var(--light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-count {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--black);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.cart-checkout-btn:hover { background: var(--charcoal); }

/* ── Cart back button ── */
.cart-back-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cart-back-btn:hover { opacity: 0.5; }
.cart-back-btn svg {
  width: 20px; height: 20px;
  stroke: var(--black); stroke-width: 1.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

@media (max-width: 860px) {
  .product-page { grid-template-columns: 1fr; }
  .product-page__gallery {
    position: relative; top: 0;
    height: auto;
    flex-direction: column-reverse;
  }
  .gallery__main-wrap { height: 80vw; max-height: 480px; flex: none; width: 100%; }
  .gallery__thumbs {
    flex-direction: row;
    width: 100%;
    height: 72px;
    padding: 8px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 6px;
  }
  .gallery__thumb { width: 50px; height: 100%; aspect-ratio: unset; }
  .product-page__info { padding: 36px 24px 64px; }
}
@media (max-width: 768px) {
  .cart-form-row { grid-template-columns: 1fr; }
  .product-page__name { font-size: 2rem; }
  .size-grid { gap: 10px; }
}
@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
  .gallery__main-wrap { height: 90vw; }
  .product-page__info { padding: 28px 20px 56px; }
}

/* ══════════════════════════════════════════════════
   HERO — FULL SCREEN (homepage)
   ══════════════════════════════════════════════════ */
.hero-full {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--cream);
}

.hero-full__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.4s;
}

.hero-full__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0)    28%,
    rgba(0,0,0,0)    55%,
    rgba(0,0,0,0.48) 100%
  );
}

.hero-full__content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
  text-align: center;
}

/* hero-full mobile handled in main responsive block above */

/* Nav is always frosted white — no transparent override needed */

/* ══════════════════════════════════════════════════
   CURRENCY SWITCHER
   ══════════════════════════════════════════════════ */
.cs-switcher {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 6px;
}

.cs-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 2px;
  padding: 5px 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  color: var(--black);
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.cs-btn:hover {
  border-color: var(--black);
  color: var(--black);
}
.cs-btn svg { flex-shrink: 0; transition: transform 0.2s; }
.cs-btn.open svg { transform: rotate(180deg); }

/* Currency switcher always uses dark styling on frosted nav */

.cs-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--light);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 170px;
  z-index: 600;
}
.cs-dropdown.open { display: block; }

.cs-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 11px 18px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--light);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.cs-option:last-child { border-bottom: none; }
.cs-option:hover,
.cs-option.active { background: var(--cream); }

.cs-option__code {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--black);
  min-width: 36px;
}
.cs-option__name {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  color: var(--gray);
}

@media (max-width: 768px) {
  /* Currency becomes a floating pill at the bottom-left, always visible while scrolling */
  .cs-switcher {
    display: flex;
    position: fixed;
    bottom: 20px;
    left: 16px;
    margin: 0;
    z-index: 600;
  }
  .cs-btn {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 999px;
    padding: 11px 16px;
    font-size: 0.82rem;
    gap: 7px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.16);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  /* Dropdown opens upward from the floating pill */
  .cs-dropdown {
    top: auto;
    bottom: calc(100% + 8px);
    left: 0;
    right: auto;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  }
}

.cs-btn__flag { font-size: 1rem; line-height: 1; }
.cs-option__flag { font-size: 1.05rem; line-height: 1; }

/* ══════════════════════════════════════════════════
   EYEBROW VARIANTS
   ══════════════════════════════════════════════════ */
.eyebrow--dark { color: var(--black); }

/* ══════════════════════════════════════════════════
   COLLECTIONS NAV DROPDOWN
   ══════════════════════════════════════════════════ */
.has-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--light);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  min-width: 200px;
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  margin-top: -6px;
  /* hide: fade out after a short delay so mouse can travel the gap */
  transition: opacity 0.2s ease 0.15s, margin-top 0.2s ease 0.15s;
}

/* Invisible bridge that fills the gap between the link and the dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: -20px;
  right: -20px;
  height: 20px;
  background: transparent;
}

/* small arrow pointing up */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-left: 1px solid var(--light);
  border-top: 1px solid var(--light);
  rotate: 45deg;
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  margin-top: 0;
  /* show immediately, no delay */
  transition: opacity 0.18s ease 0s, margin-top 0.18s ease 0s;
}

.nav-dropdown__all {
  display: block;
  padding: 14px 22px 13px;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--light);
  transition: background 0.15s;
}
.nav-dropdown__all:hover { background: var(--cream); }

.nav-dropdown__group {
  padding: 14px 22px 13px;
  border-bottom: 1px solid var(--light);
}
.nav-dropdown__group:last-child { border-bottom: none; }

.nav-dropdown__chapter {
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 9px;
  display: block;
}

/* Chapter 1 is a clickable link */
.nav-dropdown__chapter-link {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 9px;
  transition: color 0.18s;
}
.nav-dropdown__chapter-link:hover { color: var(--gray); }

/* Empty chapter groups (no products yet) — slightly muted */
.nav-dropdown__group--empty { opacity: 0.45; }

.nav-dropdown__item {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  color: var(--black);
  padding: 4px 0;
  transition: color 0.18s;
  letter-spacing: 0.02em;
}
.nav-dropdown__item:hover { color: var(--gray); }

.nav-dropdown__soon {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.73rem;
  color: var(--gray);
  font-style: italic;
  padding: 2px 0;
}

/* ── Cart quantity controls */
.cart-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--light);
}
.cart-qty__btn {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}
.cart-qty__btn:hover { background: var(--cream); }
.cart-qty__num {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--black);
  min-width: 28px;
  text-align: center;
  line-height: 28px;
  border-left: 1px solid var(--light);
  border-right: 1px solid var(--light);
}

/* Mobile drawer sub-links */
.drawer__sublink {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  padding-left: 18px;
  transition: color 0.2s;
}
.drawer__sublink::before { content: '– '; }
.drawer__sublink:hover { color: var(--black); }
.drawer__sublink--soon { color: var(--light); cursor: default; pointer-events: none; }
.drawer__sublink--soon:hover { color: var(--light); }
