/* ============================================
   ELEGE STOREFRONT — style.css
   élegé lingerie · Lagos, Nigeria
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Ysabeau:ital,wght@0,300..700;1,300..700&family=Ysabeau+SC:wght@300..700&display=swap');

/* ---- Tokens ---- */
:root {
  --navy:        #1E2460;
  --periwinkle:  #7B8FC7;
  --sky:         #DAEEF9;
  --offwhite:    #EEF0F8;
  --white:       #FFFFFF;
  --text-primary:    #1E2460;
  --text-secondary:  #5a6a9a;
  --text-muted:      #9aa3c2;
  --border:      #dde3f0;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-pill: 100px;

  --shadow-sm:   0 1px 4px rgba(30,36,96,0.07);
  --shadow-md:   0 4px 20px rgba(30,36,96,0.10);
  --shadow-lg:   0 12px 40px rgba(30,36,96,0.13);

  --nav-height:  68px;
  --max-width:   1200px;
  --gutter:      clamp(1.25rem, 5vw, 3rem);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Ysabeau', -apple-system, sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--offwhite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
a, button, [role="button"] { -webkit-tap-highlight-color: transparent; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   NAV
   ============================================ */

.nav {
  height: var(--nav-height);
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

/* Fixed header wrapper — announcement + nav together */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transform: translateY(0);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  padding-top: env(safe-area-inset-top, 0px);
}

#site-header.nav-hidden {
  transform: translateY(-100%);
}

#site-header.nav-scrolled {
  box-shadow: 0 2px 16px rgba(30,36,96,0.08);
}

/* Push page content down since header is fixed — set dynamically by header.js */

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
  z-index: 1;
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Ysabeau SC', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color 0.15s;
  position: relative;
}

.nav-links a:hover { color: var(--navy); }

.nav-links a.active { color: var(--navy); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  z-index: 1;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: background 0.15s;
  position: relative;
}

.nav-icon-btn:hover { background: var(--sky); }

.nav-cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.nav-cart-count.visible { display: flex; }

/* mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s;
}

/* mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s, visibility 0.28s;
}

.nav-drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Dim backdrop */
.nav-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 50, 0.72);
  cursor: pointer;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}

/* Panel slides in from left */
.nav-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(300px, 82vw);
  height: 100dvh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.32, 0, 0.15, 1);
  overflow-y: auto;
  overflow-x: hidden;
}

.nav-drawer.open .nav-drawer-panel {
  transform: translateX(0);
}

/* Header row inside panel — logo + close */
.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.nav-drawer-logo {
  height: 22px;
  opacity: 0.92;
}

.nav-drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.nav-drawer-close:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
}

/* Main nav links */
.nav-drawer-links {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 1rem 0;
  flex: 1;
}

.nav-drawer-links li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-drawer-links li:last-child {
  border-bottom: none;
}

.nav-drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-family: 'Ysabeau SC', serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
}

.nav-drawer-links a::after {
  content: '→';
  font-size: 13px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.15s, transform 0.15s;
  color: var(--periwinkle);
}

.nav-drawer-links a:hover {
  color: var(--white);
  padding-left: 1.75rem;
}

.nav-drawer-links a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Footer strip inside drawer */
.nav-drawer-footer {
  padding: 1.25rem 1.5rem;
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.nav-drawer-footer-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.6rem;
}

.nav-drawer-footer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  font-weight: 300;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: all 0.18s;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: #161c4e;
  border-color: #161c4e;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30,36,96,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--offwhite);
  color: var(--navy);
}

.btn-sky {
  background: var(--sky);
  color: var(--navy);
  border-color: var(--sky);
}

.btn-sky:hover {
  background: #c5e4f5;
  border-color: #c5e4f5;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 14.5px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12.5px;
}

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */

.img-placeholder {
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(218,238,249,0.8) 0%,
    rgba(123,143,199,0.15) 100%);
}

.img-placeholder-icon {
  font-size: 32px;
  opacity: 0.25;
  color: var(--navy);
  position: relative;
  z-index: 1;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: calc(100dvh - var(--nav-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}

.hero-content {
  padding: var(--gutter);
  padding-left: var(--gutter);
  max-width: 560px;
  margin-left: auto;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--periwinkle);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: 'Ysabeau SC', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 400px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  height: calc(100dvh - var(--nav-height));
  position: relative;
}

.hero-image .img-placeholder {
  height: 100%;
  width: 100%;
}

/* ============================================
   SECTION COMMONS
   ============================================ */

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--periwinkle);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Ysabeau SC', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 0.75rem;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.65;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement {
  background: var(--navy);
  color: var(--sky);
  text-align: center;
  padding: 10px var(--gutter);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  font-weight: 400;
}

/* ================================================
    HOME PAGE — INLINE STYLES
================================================ */
/* ── HERO & EDITORIAL BANNER shared split ──────── */
.split-block {
  display: grid;
  grid-template-columns: 4fr 6fr;   /* 40 / 60 */
  overflow: hidden;
}

/* Hero is full-viewport-height */
.split-block--hero {
  height: 50vh;
  min-height: 380px;
  max-height: 620px;
}

/* ── LEFT PANEL (40%) ───────────────────────────── */
.split-left {
  position: relative;
  overflow: hidden;
  background: var(--sky);
}

.split-left img,
.split-left .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text overlay — sits at bottom of the 40% panel */
.split-left-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(20,26,76,0.78) 100%
  );
}

.split-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(218,238,249,0.85);
  margin-bottom: 0.4rem;
}

.split-title {
  font-family: 'Ysabeau SC', serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.split-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--sky);
}

/* Hero gets a CTA row below the title */
.split-cta-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* Banner gets scrollable category pill row */
.split-pill-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.9rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.split-pill-row::-webkit-scrollbar { display: none; }

.split-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.split-pill:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
}

/* ── RIGHT PANEL (60%) ──────────────────────────── */
.split-right {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.split-right-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.75;
}

.split-right .img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Frosted trust pills — hero only */
.split-trust {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

.split-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.7rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,0.82);
  font-size: 10.5px;
  white-space: nowrap;
}

.split-trust-pill .ti { font-size: 11px; color: var(--sky); }

/* ── MOBILE: show only 40% left panel, full-width ── */
@media (max-width: 640px) {
  .split-block {
    grid-template-columns: 1fr;
  }

  /* Right panel hidden */
  .split-right { display: none; }

  /* Left panel takes full width, fixed height */
  .split-left {
    width: 100%;
  }

  /* Hero: taller portrait */
  .split-block--hero .split-left {
    height: calc(100svh - var(--nav-height));
    max-height: 680px;
  }

/* Stronger gradient so overlay text pops */
  .split-left-overlay {
    background: linear-gradient(
      180deg,
      transparent 30%,
      rgba(20,26,76,0.88) 100%
    );
  }

  /* Hero title can be bigger when full-width */
  .split-block--hero .split-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .split-trust { display: none; }
}

/* ── REVIEWS & VALUES — white, horizontal scroll ── */
/* (uses global .home-scroll-row + .review-card + .value-card from style.css) */

/* ── EDITORIAL — single full-bleed image ───────── */
.editorial-single {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 320px;
  max-height: 560px;
  overflow: hidden;
  background: var(--navy);
}

.editorial-single-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.72;
}

.editorial-single .img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Dark gradient bottom-up so text reads */
.editorial-single::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 25%,
    rgba(20,26,76,0.72) 70%,
    rgba(20,26,76,0.92) 100%
  );
  pointer-events: none;
}

.editorial-single-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}


/* ============================================
   FEATURED PRODUCTS
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
}

.product-card-image .img-placeholder {
  width: 100%;
  height: 100%;
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: var(--sky);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 1;
}

.product-card-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 16px;
  z-index: 1;
  transition: background 0.15s;
}

.product-card-wishlist:hover { background: var(--white); }

.product-card-wishlist.wishlisted { color: #e74c3c; }

.product-card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.product-card-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 3px;
}

.product-card-category {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.product-card-colour {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.03em;
}

.product-card-price-original {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 4px;
  font-weight: 400;
}


/* ============================================
   MOOD STRIP
   ============================================ */
.mood-strip {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--navy);
  overflow: hidden;
}

/* subtle glow */
.mood-strip::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(186, 198, 255, 0.08);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}

.mood-strip-heading {
  margin-bottom: 2rem;
  max-width: 520px;
}

.mood-strip-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--periwinkle);
  margin-bottom: 1rem;
}

.mood-strip-title {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--sky);
  margin-bottom: 1rem;
}

.mood-strip-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(218,238,249,0.62);
  max-width: 420px;
}


/* ============================================
   HORIZONTAL SCROLL
   ============================================ */
.mood-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mood-scroll::-webkit-scrollbar {
  display: none;
}
.mood-scroll {
  padding-right: 2rem;
}


/* ============================================
   CARD
   ============================================ */
.mood-card {
  position: relative;
  flex: 0 0 280px;
  aspect-ratio: 3 / 4;
  border-radius: 32px;
  overflow: hidden;
  text-decoration: none;
  scroll-snap-align: start;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.02) 0%,
      rgba(255,255,255,0.06) 100%
    );
  border: 1px solid rgba(218,238,249,0.1);
  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease;
}

/* layered atmospheric glow */
.mood-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top,
      rgba(202, 211, 255, 0.12),
      transparent 60%
    );
  pointer-events: none;
}

/* featured variation */
.mood-card.featured {
  background:
    linear-gradient(
      180deg,
      rgba(218,238,249,0.08) 0%,
      rgba(218,238,249,0.03) 100%
    );
}

.mood-card:hover {
  transform: translateY(-6px);
  border-color: rgba(218,238,249,0.22);
}

/* ============================================
   BACKGROUND LAYER
   ============================================ */
.mood-card-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(12,16,45,0.1) 0%,
      rgba(12,16,45,0.75) 100%
    );
  transform: scale(1);
  transition: transform 0.7s ease;
}

.mood-card:hover .mood-card-bg {
  transform: scale(1.04);
}

/* ============================================
   CONTENT
   ============================================ */
.mood-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  z-index: 2;
}

.mood-card-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(218,238,249,0.58);
  margin-bottom: 0.8rem;
}

.mood-card-title {
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.mood-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(218,238,249,0.72);
  max-width: 220px;
}
/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 768px) {
  .mood-strip {
    padding: 4rem 0;
  }
  .mood-strip-heading {
    margin-bottom: 1.5rem;
  }
  .mood-card {
    flex: 0 0 74%;
  }
  .mood-card-title {
    font-size: 1.8rem;
  }

}

/* ============================================
   BRAND VALUES / WHY ELEGE
   ============================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.value-mark {
  font-family: 'Ysabeau SC', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--sky);
  margin-bottom: 1rem;
  line-height: 1;
}

.value-mark img {
  height: 20px;
}

.value-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.value-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

/* ============================================
   TOAST / NOTIFICATION
   ============================================ */

.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 500;
  z-index: 999;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.22s;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  max-width: 320px;
}

.toast.show { opacity: 1; transform: translateY(0); }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy);
  color: rgba(218,238,249,0.6);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand-name {
  font-family: 'Ysabeau SC', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--sky);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.footer-brand-logo img {
  width: 12rem;
  margin-bottom: 10px;
}

.footer-brand-tagline {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(218,238,249,0.5);
  font-weight: 300;
  max-width: 240px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(218,238,249,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(218,238,249,0.5);
  font-size: 16px;
  transition: all 0.15s;
}

.footer-social-link:hover {
  border-color: rgba(218,238,249,0.35);
  color: var(--sky);
}

.footer-col-title {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.1rem;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col-links a {
  font-size: 13.5px;
  color: rgba(218,238,249,0.6);
  font-weight: 300;
  transition: color 0.15s;
}

.footer-col-links a:hover { color: var(--sky); }

.footer-bottom {
  border-top: 1px solid rgba(218,238,249,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom-text {
  font-size: 12px;
  color: rgba(218,238,249,0.35);
}

/* =========================
   LEGAL PAGES STYLING
   Terms, Privacy, Returns, Shipping, Cookies
========================= */

.legal-page {
    width: 100%;
    min-height: 100dvh;
    padding: 140px 24px 100px;
    background: var(--offwhite);
    color: #1f1f1f;
}

.legal-container {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

/* =========================
   HERO SECTION
========================= */

.legal-hero {
    margin-bottom: 70px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 40px;
}

.legal-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #111111;
}

.legal-hero p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #5c5c5c;
    max-width: 700px;
}

/* =========================
   CONTENT SECTIONS
========================= */

.legal-section {
    margin-bottom: 60px;
}

.legal-section h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #141414;
    letter-spacing: -0.5px;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.95;
    color: #4e4e4e;
    margin-bottom: 18px;
}

/* =========================
   LISTS
========================= */

.legal-section ul,
.legal-section ol {
    padding-left: 22px;
    margin: 20px 0;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.9;
    color: #4e4e4e;
    margin-bottom: 12px;
}

/* =========================
   LINKS
========================= */

.legal-section a {
    color: #111111;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.legal-section a:hover {
    opacity: 0.7;
}

/* =========================
   STRONG TEXT
========================= */

.legal-section strong {
    color: #111111;
    font-weight: 600;
}

/* =========================
   SMALL NOTES
========================= */

.legal-note {
    margin-top: 30px;
    padding: 20px 24px;
    background: rgba(0,0,0,0.03);
    border-left: 2px solid #111111;
}

.legal-note p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* =========================
   TABLES (Optional)
========================= */

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
}

.legal-table th,
.legal-table td {
    text-align: left;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-table th {
    background: rgba(0,0,0,0.03);
    font-weight: 600;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .legal-page {
        padding: 120px 20px 80px;
    }

    .legal-hero {
        margin-bottom: 50px;
        padding-bottom: 30px;
    }

    .legal-hero h1 {
        letter-spacing: -1px;
    }

    .legal-section {
        margin-bottom: 45px;
    }

    .legal-section h2 {
        font-size: 1.2rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 0.97rem;
        line-height: 1.85;
    }

}

/* ============================================
   BADGES & TAGS
   ============================================ */

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.badge-navy { background: var(--navy); color: var(--sky); }
.badge-sky  { background: var(--sky); color: var(--navy); }
.badge-outline { border: 1px solid var(--border); color: var(--text-secondary); }

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--text-muted); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .experience-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .experience-section::before { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  /* nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: block; }

 /* hero */
.hero {
  grid-template-columns: 1fr;
  min-height: auto;
}

.hero-content {
  padding: 2.5rem var(--gutter) 3rem;
  max-width: 100%;
  margin: 0;
  order: 2;
}

.hero-image {
  height: 60vh;
  min-height: 420px;
  order: 1;
}

  /* products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* values */
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; }
  .btn-sm { padding: 11px 16px; min-height: 44px; }
}

/* ============================================
   NAV UPDATES — kebab, mobile center logo
   ============================================ */

/* nav-left group (kebab + search) — hidden on desktop, shown on mobile */
.nav-left {
  display: none;
  align-items: center;
  gap: 0;
}

/* kebab — hidden on desktop */
.nav-kebab {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}

/* hide nav-left search btn on desktop */
.nav > .mobile-search-btn,
.nav-inner > .mobile-search-btn {
  display: none;
}

.nav-kebab span {
  display: block;
  width: 4px;
  height: 4px;
  background: var(--navy);
  border-radius: 50%;
  transition: opacity 0.15s;
}

.nav-kebab:hover span { opacity: 0.6; }

/* ============================================
   PRODUCT GRID — horizontal scroll on mobile
   ============================================ */

/* Override the section background for products */
@media (max-width: 768px) {

  /* nav mobile layout — [kebab+search] | logo | [wishlist+cart+account] */
  .nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0;
  }

  /* show the left group on mobile */
  .nav-left {
    display: flex;
  }

  /* show kebab on mobile */
  .nav-kebab {
    display: flex;
  }

  .nav-logo {
    display: flex;
    justify-content: center;
  }

  .nav-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0;
  }

  /* hide the desktop search button inside nav-actions on mobile */
  .nav-actions .mobile-search-btn {
    display: none;
  }

}

/* ============================================
   FOOTER UPDATES
   ============================================ */

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

/* Newsletter */
.footer-newsletter-text {
  font-size: 13px;
  color: rgba(218,238,249,0.5);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-newsletter-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(218,238,249,0.15);
  background: rgba(218,238,249,0.07);
  color: var(--sky);
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}

.footer-newsletter-input::placeholder {
  color: rgba(218,238,249,0.3);
}

.footer-newsletter-input:focus {
  border-color: rgba(218,238,249,0.35);
}

.footer-newsletter-btn {
  align-self: flex-start;
  justify-content: left;
  width: 100%;
}

/* Accordion trigger — looks like the title on desktop, clickable on mobile */
.footer-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  cursor: default;
  padding: 0;
  text-align: left;
}

.footer-accordion-icon {
  display: none;
  font-size: 16px;
  color: rgba(218,238,249,0.4);
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

/* Desktop: accordion body always visible */
.footer-accordion-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

/* Mobile accordion */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .footer-col {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(218,238,249,0.08);
  }

  /* newsletter and brand span full width */
  .footer-col:first-child,
  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  /* accordion cols sit side by side */
  .footer-accordion {
    grid-column: auto;
  }

  .footer-accordion-trigger {
    cursor: pointer;
  }

  .footer-accordion-icon {
    display: block;
  }

  /* closed by default on mobile */
  .footer-accordion .footer-accordion-body {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.28s ease;
  }

  .footer-accordion.open .footer-accordion-body {
    margin-top: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(30,36,96,0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s, visibility 0.22s;
  cursor: pointer;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-overlay-inner {
  width: 100%;
  max-width: 560px;
  padding: 0 1.25rem;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 16px 52px 16px 20px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--navy);
  background: var(--white);
  font-family: inherit;
  font-size: 16px;
  color: var(--navy);
  outline: none;
  box-shadow: var(--shadow-lg);
}

.search-input::placeholder { color: var(--text-muted); }

.search-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(218,238,249,0.3);
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}

.search-close:hover { background: rgba(255,255,255,0.25); }

/* Search suggestions dropdown */
.search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 1.25rem;
  right: 1.25rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-height: 360px;
  overflow-y: auto;
  z-index: 10;
  display: none;
}
.search-suggestions.open { display: block; }

.search-suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  cursor: pointer;
  transition: background 0.12s;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.search-suggestion-item:last-child { border-bottom: none; }
.search-suggestion-item:hover,
.search-suggestion-item.active { background: var(--surface); }

.search-suggestion-name {
  font-size: 14px;
  color: var(--navy);
  font-family: inherit;
  flex: 1;
}
.search-suggestion-name mark {
  background: none;
  color: var(--sky);
  font-weight: 600;
}
.search-suggestion-price {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.search-suggestion-category {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.search-suggestion-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.search-no-results {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================
   MINI CART OVERLAY
   ============================================ */

.mini-cart {
  position: fixed;
  inset: 0;
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s;
}

.mini-cart.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mini-cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 50, 0.72);
  cursor: pointer;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}

.mini-cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(400px, 92vw);
  height: 100dvh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow: hidden;
}

.mini-cart.open .mini-cart-panel {
  transform: translateX(0);
}

.mini-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mini-cart-title {
  font-family: 'Ysabeau SC', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.mini-cart-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: none;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}

.mini-cart-close:hover { background: var(--offwhite); }

.mini-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
}

.mini-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
}

.mini-cart-empty i { font-size: 40px; opacity: 0.3; }
.mini-cart-empty p { font-size: 14px; line-height: 1.6; }

.mini-cart-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mini-cart-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.mini-cart-item-img {
  width: 72px;
  height: 90px;
  border-radius: var(--radius-md);
  background: var(--sky);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--periwinkle);
  font-size: 22px;
}

.mini-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mini-cart-item-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}

.mini-cart-item-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.mini-cart-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 4px;
}

.mini-cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.mini-cart-qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: none;
  color: var(--navy);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.12s;
}

.mini-cart-qty-btn:hover { background: var(--offwhite); }

.mini-cart-qty-val {
  font-size: 13px;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
  color: var(--navy);
}

.mini-cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 15px;
  cursor: pointer;
  padding: 2px;
  transition: color 0.12s;
  align-self: flex-start;
}

.mini-cart-item-remove:hover { color: var(--navy); }

.mini-cart-footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mini-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.mini-cart-subtotal-label {
  color: var(--text-secondary);
}

.mini-cart-subtotal-value {
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
}

.mini-cart-shipping-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================
   SHOP — SUBCATEGORY BANNER
   ============================================ */

.shop-subcategory-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--sky);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-size: 13px;
  font-weight: 500;
}

.shop-subcategory-banner button {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--periwinkle);
  border-radius: var(--radius-pill);
  color: var(--navy);
  font-size: 12px;
  font-family: inherit;
  padding: 4px 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.shop-subcategory-banner button:hover {
  background: rgba(30,36,96,0.08);
}
/* ============================================
   NAV — DESKTOP OVERRIDES
   ============================================ */

/* Hide the mobile-only left group (kebab + search) on desktop */
@media (min-width: 769px) {
  .nav-left {
    display: none;
  }
}

/* ============================================
   CHECKOUT — PAYMENT OPTIONS
   ============================================ */

.payment-option {
  display: block;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.payment-option:hover {
  border-color: var(--periwinkle);
  background: var(--offwhite);
}

.payment-option.selected {
  border-color: var(--navy);
  background: rgba(30,36,96,0.03);
}

.payment-option-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-option-top input[type="radio"] {
  accent-color: var(--navy);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

.payment-option-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-option-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.payment-option-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* Bank transfer details — hidden until selected */
.payment-transfer-details {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.payment-transfer-details.show {
  display: block;
}

.transfer-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}

.transfer-label {
  color: var(--text-muted);
  font-size: 12px;
}

.transfer-value {
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.copy-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  padding: 3px 7px;
  cursor: pointer;
  transition: background 0.12s;
  display: flex;
  align-items: center;
}

.copy-btn:hover {
  background: var(--offwhite);
  color: var(--navy);
}

.transfer-note {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  background: var(--sky);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

/* ============================================
   CHECKOUT — WAYBILL NOTE
   ============================================ */

.waybill-note {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}
/* ============================================
   SIZE GUIDE — REDESIGNED TABLES
   ============================================ */

.size-guide-block {
  margin-bottom: 0.5rem;
}

.size-guide-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--periwinkle);
  margin-bottom: 0.75rem;
}

.size-table-wrap {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 480px;
}

.size-table thead tr {
  background: var(--navy);
}

.size-table thead th {
  color: var(--sky);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 16px;
  text-align: center;
  white-space: nowrap;
}

.size-table thead th:first-child {
  text-align: left;
  width: 42%;
}

.size-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
}

.size-table tbody tr:last-child {
  border-bottom: none;
}

.size-table tbody tr:nth-child(even) {
  background: var(--offwhite);
}

.size-table tbody tr:hover {
  background: var(--sky);
}

.size-table tbody td {
  padding: 14px 16px;
  color: var(--navy);
  text-align: center;
  font-weight: 500;
}

.size-measure-col {
  text-align: left !important;
  font-weight: 500 !important;
  color: var(--text-primary) !important;
  line-height: 1.4;
}

.size-note {
  display: block;
  font-size: 11.5px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.5;
}
/* ---- Enforce 3:4 on ALL product card images sitewide ---- */
.product-card-image {
  aspect-ratio: 3 / 4 !important;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* ============================================
   REVIEWS SECTION (home page)
   ============================================ */

.reviews-section {
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-stars {
  font-size: 14px;
  color: #c9a84c;
  letter-spacing: 0.05em;
}

.review-text {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.review-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.review-location {
  font-size: 12px;
  color: var(--text-muted);
}

.review-location::before {
  content: '·';
  margin-right: 8px;
  color: var(--border);
}



/* ============================================
   HERO TRUST STRIP
   ============================================ */

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 0;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-secondary);
  white-space: nowrap;
}

.hero-trust-item .ti {
  font-size: 14px;
  color: var(--periwinkle);
}

.hero-trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  .hero-trust { padding-top: 1.25rem; margin-top: 1.5rem; }
  .hero-trust-dot { display: none; }
  .hero-trust-item { flex: 0 0 100%; }
}

/* ============================================
   HOME PAGE — HORIZONTAL SCROLL ROWS
   Applies to products, reviews, and values
   on the home page only (.home-scroll-row)
   ============================================ */

.home-scroll-row {
  display: flex !important;
  flex-direction: row !important;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.home-scroll-row::-webkit-scrollbar { display: none; }

/* ---- Product cards in scroll row ---- */
.home-scroll-row.products-grid .product-card {
  flex: 0 0 260px;
  min-width: 0;
  scroll-snap-align: start;
}

/* ---- Review cards in scroll row ---- */
.home-scroll-row.reviews-grid .review-card {
  flex: 0 0 300px;
  min-width: 0;
  scroll-snap-align: start;
}

/* ---- Value cards in scroll row ---- */
.home-scroll-row.values-grid .value-card {
  flex: 0 0 280px;
  min-width: 0;
  scroll-snap-align: start;
}

/* Slightly narrower cards on tablet */
@media (max-width: 900px) {
  .home-scroll-row.products-grid .product-card { flex: 0 0 220px; }
  .home-scroll-row.reviews-grid  .review-card  { flex: 0 0 260px; }
  .home-scroll-row.values-grid   .value-card   { flex: 0 0 240px; }
}

/* Snap to edge on mobile — show ~1.5 cards at a time */
@media (max-width: 600px) {
  .home-scroll-row.products-grid .product-card { flex: 0 0 78vw;  }
  .home-scroll-row.reviews-grid  .review-card  { flex: 0 0 78vw;  }
  .home-scroll-row.values-grid   .value-card   { flex: 0 0 78vw;  }
}