/* ============================================================
   VELVETA BY NIJA — Main Stylesheet
   Clean editorial luxury: cream · navy · gold
   ============================================================ */

/* ── 1. Design Tokens ─────────────────────────────────────── */
:root {
  /* Palette */
  --clr-bg:           #FAFAF8;
  --clr-bg-alt:       #F3F0EA;
  --clr-dark:         #0D1421;
  --clr-dark-soft:    #1A2333;
  --clr-gold:         #BF9B30;
  --clr-gold-hover:   #D4AE42;
  --clr-gold-pale:    #F7EDD4;
  --clr-gold-dark:    #9A7A1E;
  --clr-text:         #1A1A1A;
  --clr-text-muted:   #6B6657;
  --clr-text-light:   #9E9B92;
  --clr-border:       #E5E0D8;
  --clr-border-dark:  #C8C2B6;
  --clr-white:        #FFFFFF;
  --clr-error:        #C0392B;
  --clr-success:      #27AE60;

  /* Typography */
  --ff-display: 'Cormorant Garant', 'Georgia', serif;
  --ff-body:    'Jost', 'system-ui', sans-serif;

  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;

  /* Font sizes (fluid) */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  2rem;
  --fs-3xl:  clamp(2rem, 4vw, 2.75rem);
  --fs-4xl:  clamp(2.5rem, 6vw, 4rem);
  --fs-5xl:  clamp(3.5rem, 8vw, 6rem);
  --fs-hero: clamp(3rem, 9vw, 7.5rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --container-max:  1400px;
  --container-pad:  clamp(1.25rem, 4vw, 3rem);
  --section-pad:    clamp(4rem, 8vw, 7rem);

  /* Header */
  --header-h:       72px;
  --topbar-h:       40px;

  /* Borders */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(13,20,33,0.06);
  --shadow-sm: 0 2px 8px rgba(13,20,33,0.08);
  --shadow-md: 0 6px 20px rgba(13,20,33,0.10);
  --shadow-lg: 0 16px 48px rgba(13,20,33,0.14);

  /* Motion */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-io:   cubic-bezier(0.87, 0, 0.13, 1);
  --t-fast:    0.18s;
  --t-base:    0.32s;
  --t-slow:    0.55s;
}

/* ── 2. Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.65;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Override any WordPress default body margins */
  margin: 0 !important;
  padding: 0 !important;
  /* Prevent horizontal overflow on mobile (body must also be set — #page alone
     is insufficient in mobile Safari due to a long-standing WebKit scroll bug) */
  overflow-x: hidden;
}

/* WordPress admin bar offset */
body.admin-bar .site-header { top: 32px; }
body.admin-bar .header-transparent { top: calc(32px + var(--topbar-h)); }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
  body.admin-bar .header-transparent { top: calc(46px + var(--topbar-h)); }
}

/* Full-width page wrapper */
#page, .site {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: var(--fw-medium);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ── 3. Layout Utilities ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--narrow {
  max-width: 860px;
}

.section {
  padding-block: var(--section-pad);
}

/* ── 4. Typography ────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-3);
}

.section-eyebrow--light { color: var(--clr-gold-pale); }

.section-title {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-light);
  color: var(--clr-dark);
  letter-spacing: -0.02em;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-12);
  gap: var(--sp-6);
}

.section-header--centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text);
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease-out),
              gap var(--t-fast) var(--ease-out);
}

.section-link:hover {
  color: var(--clr-gold);
  gap: var(--sp-3);
}

/* ── 5. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.875rem 2.25rem;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--clr-dark);
  color: var(--clr-white);
  border: 1.5px solid var(--clr-dark);
}
.btn-primary:hover {
  background-color: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--clr-dark);
  border: 1.5px solid var(--clr-dark);
}
.btn-outline:hover {
  background-color: var(--clr-dark);
  color: var(--clr-white);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background-color: var(--clr-white);
  color: var(--clr-dark);
  border-color: var(--clr-white);
}

.btn-hero {
  background-color: var(--clr-white);
  color: var(--clr-dark);
  border: 1.5px solid var(--clr-white);
  padding: 1rem 2.5rem;
  font-size: var(--fs-sm);
}
.btn-hero:hover {
  background-color: transparent;
  color: var(--clr-white);
}

.btn-hero-ghost {
  background-color: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.45);
  padding: 1rem 2.5rem;
  font-size: var(--fs-sm);
}
.btn-hero-ghost:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--clr-white);
}

.btn-gold {
  background-color: var(--clr-gold);
  color: var(--clr-white);
  border: 1.5px solid var(--clr-gold);
}
.btn-gold:hover {
  background-color: var(--clr-gold-hover);
  border-color: var(--clr-gold-hover);
}

/* ── 6. Topbar ────────────────────────────────────────────── */
.topbar {
  background-color: var(--clr-dark);
  color: var(--clr-white);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  width: 100%;
}

.topbar-text {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold-pale);
}

.topbar-actions { display: flex; gap: var(--sp-6); }

.topbar-link {
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}
.topbar-link:hover { color: var(--clr-white); }

/* ── 7. Header ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background-color: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  transition: background-color var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}

.site-header.header-transparent {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  background-color: transparent;
  border-bottom-color: transparent;
}

body.topbar-hidden .site-header.header-transparent {
  top: 0;
}

.site-header.header-transparent.header-scrolled,
.site-header.header-scrolled {
  background-color: var(--clr-bg);
  border-bottom-color: var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.site-header.header-transparent:not(.header-scrolled) .header-action,
.site-header.header-transparent:not(.header-scrolled) .nav-list a,
.site-header.header-transparent:not(.header-scrolled) .logo-text {
  color: var(--clr-white);
}

.site-header.header-transparent:not(.header-scrolled) .site-logo img {
  filter: brightness(0) invert(1);
}

.header-inner { height: var(--header-h); }

.header-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: var(--sp-6);
}

/* Logo */
.site-branding { display: flex; justify-content: center; }

.site-logo { display: flex; align-items: center; }

.site-logo img,
.site-logo .custom-logo-link img,
img.custom-logo {
  max-height: 72px !important;
  width: auto !important;
  height: auto !important;
  border-radius: 50%;
  display: block;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
  /* Subtle shadow so it lifts off any background */
  box-shadow: 0 2px 16px rgba(0,0,0,0.25), 0 0 0 2px rgba(191,155,48,0.2);
}

.site-logo img:hover,
img.custom-logo:hover {
  transform: scale(1.04);
}

.custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}

/* On transparent header — add a subtle gold ring to make the logo pop */
.site-header.header-transparent:not(.header-scrolled) img.custom-logo {
  box-shadow:
    0 2px 20px rgba(0,0,0,0.35),
    0 0 0 2px rgba(191,155,48,0.5),
    0 0 0 5px rgba(191,155,48,0.12);
}

.logo-text {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-dark);
  transition: color var(--t-base);
}

.logo-text em {
  font-style: italic;
  font-weight: var(--fw-light);
  font-size: 0.7em;
  letter-spacing: 0.1em;
  display: block;
  text-align: center;
  margin-top: -0.3em;
  text-transform: lowercase;
}

/* Desktop Nav */
.header-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-list a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-fast);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--clr-gold);
  transition: width var(--t-base) var(--ease-out);
}

.nav-list a:hover { color: var(--clr-gold); }
.nav-list a:hover::after,
.nav-list .current-menu-item > a::after { width: 100%; }
.nav-list .current-menu-item > a { color: var(--clr-gold); }

/* Submenu */
.nav-list .menu-item-has-children { position: relative; }

.nav-list .sub-menu {
  position: absolute;
  top: calc(100% + var(--sp-4));
  left: 0;
  min-width: 200px;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out),
              visibility var(--t-base);
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.nav-list .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-list .sub-menu a {
  display: block;
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-sm);
  letter-spacing: 0.03em;
  text-transform: none;
  border-bottom: 1px solid var(--clr-border);
}

.nav-list .sub-menu a::after { display: none; }

/* Header Actions */
.header-start {
  display: flex;
  align-items: center;
}

/* Hamburger hidden on desktop — nav is shown instead */
.header-start .mobile-menu-toggle { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-2);
}

.header-action.btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background-color var(--t-fast);
  position: relative;
}

.header-action.btn-icon:hover {
  color: var(--clr-gold);
  background-color: var(--clr-bg-alt);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  background-color: var(--clr-gold);
  color: var(--clr-white);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 4px;
  opacity: 0;
  transform: scale(0);
  transition: opacity var(--t-fast), transform var(--t-fast) var(--ease-out);
}

.cart-count.has-items {
  opacity: 1;
  transform: scale(1);
}

/* ── Country Toggle ────────────────────────────────────────────────────────── */

.country-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: var(--radius-full);
  border: 1px solid var(--clr-border-dark);
  background: transparent;
  margin-right: var(--sp-2);
}

.country-toggle-opt {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border: none;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--clr-text-light);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  line-height: 1;
  white-space: nowrap;
}

.country-toggle-opt img {
  border-radius: 2px;
  opacity: 0.35;
  transition: opacity var(--t-fast);
  display: block;
  flex-shrink: 0;
}

.country-toggle-opt.is-active {
  background: var(--clr-dark);
  color: var(--clr-white);
}

.country-toggle-opt.is-active img {
  opacity: 1;
}

.country-toggle-opt:not(.is-active):hover {
  color: var(--clr-text-muted);
}

.country-toggle-opt:not(.is-active):hover img {
  opacity: 0.6;
}

/* Transparent header (front page, before scroll) — invert colours to suit dark bg */
.site-header.header-transparent:not(.header-scrolled) .country-toggle {
  border-color: rgba(255, 255, 255, 0.25);
}

.site-header.header-transparent:not(.header-scrolled) .country-toggle-opt {
  color: rgba(255, 255, 255, 0.4);
}

.site-header.header-transparent:not(.header-scrolled) .country-toggle-opt.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: var(--clr-dark);
}

.site-header.header-transparent:not(.header-scrolled) .country-toggle-opt:not(.is-active):hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Mobile menu variant */
.country-toggle--mobile {
  margin-right: 0;
  margin-top: var(--sp-4);
  border-color: var(--clr-border);
  width: 100%;
  justify-content: center;
}

.country-toggle--mobile .country-toggle-opt {
  flex: 1;
  justify-content: center;
  padding: 8px 12px;
  font-size: 12px;
}

.mobile-menu-toggle { display: none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background-color: currentColor;
  transition: all var(--t-base) var(--ease-io);
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── 8. Search Overlay ────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background-color: rgba(13, 20, 33, 0.92);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}

.search-overlay:not([hidden]) { opacity: 1; }
.search-overlay[hidden] { display: flex; pointer-events: none; }

.search-overlay-inner {
  width: 100%;
  max-width: 640px;
  padding: var(--sp-8);
  position: relative;
  transform: translateY(16px);
  transition: transform var(--t-base) var(--ease-out);
}

.search-overlay:not([hidden]) .search-overlay-inner { transform: translateY(0); }

.search-close {
  position: absolute;
  top: -var(--sp-12);
  right: var(--sp-8);
  color: var(--clr-white);
  opacity: 0.7;
  transition: opacity var(--t-fast);
  top: 0;
}
.search-close:hover { opacity: 1; }

.search-overlay .search-form {
  margin-top: var(--sp-10);
}

.search-overlay .search-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  color: var(--clr-white);
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-light);
  padding: var(--sp-4) 0;
  outline: none;
  transition: border-color var(--t-fast);
}

.search-overlay .search-field::placeholder { color: rgba(255,255,255,0.35); }
.search-overlay .search-field:focus { border-bottom-color: var(--clr-gold); }

.search-overlay .search-submit {
  display: none;
}

.search-hint {
  margin-top: var(--sp-4);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* ── 9. Mobile Menu ───────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 90vw);
  height: 100dvh;
  background-color: var(--clr-white);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease-out);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu[aria-hidden="false"] { transform: translateX(0); }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(13,20,33,0.5);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease-out);
}

.mobile-menu-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) var(--sp-8);
  border-bottom: 1px solid var(--clr-border);
}

.mobile-menu-close {
  color: var(--clr-text);
  opacity: 0.6;
  transition: opacity var(--t-fast);
}
.mobile-menu-close:hover { opacity: 1; }

.mobile-nav-list {
  padding: var(--sp-6) var(--sp-8);
  flex: 1;
}

.mobile-nav-list li + li { border-top: 1px solid var(--clr-border); }

.mobile-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) 0;
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  letter-spacing: 0.02em;
}

.mobile-nav-list a:hover { color: var(--clr-gold); }

.mobile-menu-footer {
  padding: var(--sp-6) var(--sp-8);
  border-top: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.mobile-menu-link {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--t-fast);
}
.mobile-menu-link:hover { color: var(--clr-gold); }

/* ── 10. Hero Section ─────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100svh;
  background-color: var(--clr-dark);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* ── Photo hero (when image is set) ──────────────────── */
.hero-has-image {
  align-items: center;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transition: transform 6s ease-out;
}

.hero-section:hover .hero-photo {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,20,33,0.82) 0%,
    rgba(13,20,33,0.60) 50%,
    rgba(13,20,33,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-inline: var(--container-pad);
  max-width: var(--container-max);
  margin-inline: auto;
}

.hero-text-wrap { max-width: 640px; }

/* ── Split hero (no image — elegant art layout) ───────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100svh;
}

.hero-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 10vw, 8rem) clamp(2rem, 6vw, 5rem) clamp(5rem, 10vw, 8rem) var(--container-pad);
  position: relative;
  z-index: 2;
}

.hero-split-art {
  position: relative;
  background-color: var(--clr-dark-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-split-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(191,155,48,0.04) 60px,
      rgba(191,155,48,0.04) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(191,155,48,0.04) 60px,
      rgba(191,155,48,0.04) 61px
    );
}

.hero-art-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

.hero-dress-svg {
  width: clamp(180px, 22vw, 300px);
  height: auto;
  filter: drop-shadow(0 0 24px rgba(191,155,48,0.15));
}

.hero-art-monogram {
  position: absolute;
  font-family: var(--ff-display);
  font-size: clamp(14rem, 25vw, 22rem);
  font-weight: var(--fw-light);
  color: rgba(191,155,48,0.06);
  letter-spacing: -0.05em;
  line-height: 1;
  user-select: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-art-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  border-top: 1px solid rgba(191,155,48,0.3);
  padding-top: var(--sp-4);
  width: 100%;
  text-align: center;
}

.hero-art-label span {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(191,155,48,0.6);
}

.hero-art-label span:first-child { color: rgba(191,155,48,0.9); }

/* ── Shared hero text styles ──────────────────────────── */
.hero-eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-5);
}

.hero-title {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: var(--fw-light);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--clr-gold), transparent);
  margin-bottom: var(--sp-5);
}

.hero-subtext {
  font-size: var(--fs-md);
  font-weight: var(--fw-light);
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-10);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.hero-scroll-cue {
  position: absolute;
  bottom: var(--sp-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.4);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
}

.scroll-dot {
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(6px); opacity: 0.4; }
}

/* ── Hero responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }

  .hero-split-text {
    padding: 7rem var(--container-pad) 3rem;
    order: 1;
  }

  .hero-split-art {
    order: 2;
    min-height: 260px;
    padding: var(--sp-8);
  }

  .hero-dress-svg { width: 120px; }
  .hero-art-monogram { font-size: 8rem; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .hero-split-art { display: none; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-text { padding: 6rem var(--container-pad) 4rem; min-height: 100svh; justify-content: flex-end; }
}

/* ── 11. Trust Strip ─────────────────────────────────────── */
.trust-strip {
  padding-block: var(--sp-10);
  border-top: 1px solid var(--clr-border);
  background-color: var(--clr-white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.trust-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  background-color: var(--clr-gold-pale);
  border-radius: var(--radius-sm);
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-text strong {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-dark);
  letter-spacing: 0.01em;
}

.trust-text span {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-5);
  }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ── 11b. Product Tabs ────────────────────────────────────── */
.product-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--sp-10);
  border-bottom: 1px solid var(--clr-border);
  flex-wrap: wrap;
}

.product-tab-btn {
  padding: var(--sp-3) var(--sp-8);
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}

.product-tab-btn:hover { color: var(--clr-dark); }

.product-tab-btn.is-active {
  color: var(--clr-dark);
  border-bottom-color: var(--clr-gold);
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.tab-panel-footer {
  text-align: center;
  margin-top: var(--sp-12);
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  border-radius: var(--radius-full);
  padding: var(--sp-3) var(--sp-10);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--fs-sm);
}

@media (max-width: 768px) {
  .product-tab-btn { padding: var(--sp-3) var(--sp-5); }
}

/* ── 12a. Category Shelf (Featured Categories — horizontal row) ─ */

.cat-shelf-section {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
}

.cat-shelf {
  display: flex;
  gap: var(--sp-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--sp-2);
  /* centre the row when there are fewer than 6 items */
  justify-content: center;
  flex-wrap: wrap;
}
.cat-shelf::-webkit-scrollbar { display: none; }

.cat-shelf-item {
  flex: 0 0 140px;
  min-width: 100px;
  max-width: 160px;
  scroll-snap-align: start;
  text-align: center;
  text-decoration: none;
  color: var(--clr-text);
  transition: color var(--t-fast);
}
.cat-shelf-item:hover { color: var(--clr-gold); }

.cat-shelf-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--clr-bg-alt);
  margin-bottom: var(--sp-3);
}

.cat-shelf-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
  display: block;
}

.cat-shelf-item:hover .cat-shelf-thumb img {
  transform: scale(1.06);
}

.cat-shelf-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-bg-alt) 0%, var(--clr-gold-pale) 100%);
  color: var(--clr-gold);
}

.cat-shelf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,20,33,0.25) 0%, transparent 50%);
  transition: background var(--t-base);
  pointer-events: none;
}
.cat-shelf-item:hover .cat-shelf-overlay {
  background: linear-gradient(to top, rgba(13,20,33,0.35) 0%, transparent 60%);
}

/* "OFFER ZONE" circular badge */
.cat-shelf-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #F5C518;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-dark);
  line-height: 1.3;
  border: 2px solid rgba(255,255,255,0.6);
  z-index: 2;
  text-align: center;
}

.cat-shelf-name {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.01em;
  color: inherit;
  margin: 0;
  line-height: 1.3;
}

/* ── 12. Category Cards ───────────────────────────────────── */

/* Horizontal scroll row (homepage) */
.categories-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--sp-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--sp-2);
}
.categories-row::-webkit-scrollbar { display: none; }

.categories-row-footer {
  text-align: center;
  margin-top: var(--sp-8);
}

/* Legacy grid (if used elsewhere) */
.categories-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(2, 1fr);
}
.categories-grid--3 { grid-template-columns: repeat(3, 1fr); }
.categories-grid--4 { grid-template-columns: repeat(4, 1fr); }

.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3/4;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.category-card-image {
  position: absolute;
  inset: 0;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.category-card:hover .category-card-image img {
  transform: scale(1.06);
}

.category-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--clr-bg-alt) 0%, var(--clr-border) 100%);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,20,33,0.65) 0%, transparent 50%);
  transition: background var(--t-base);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(13,20,33,0.75) 0%, rgba(13,20,33,0.1) 60%);
}

.category-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-8);
  z-index: 2;
}

.category-card-title {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-light);
  color: var(--clr-white);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-1);
}

.category-card-count {
  display: block;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.category-card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold-pale);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out);
}

.category-card-cta::after {
  content: '→';
  transition: transform var(--t-base);
}

.category-card:hover .category-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.category-card:hover .category-card-cta::after {
  transform: translateX(4px);
}

/* ── 12. Product Cards ────────────────────────────────────── */
.products-grid {
  display: grid;
  gap: var(--sp-6) var(--sp-5);
  grid-template-columns: repeat(2, 1fr);
}

.products-grid--3 { grid-template-columns: repeat(3, 1fr); }
.products-grid--4 { grid-template-columns: repeat(4, 1fr); }

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background-color: var(--clr-bg-alt);
  margin-bottom: var(--sp-4);
}

.product-card-image-link { display: block; height: 100%; }

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

/* Badges */
.product-badge {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}

.badge-new  { background-color: var(--clr-dark);  color: var(--clr-white); }
.badge-sale { background-color: var(--clr-error);  color: var(--clr-white); top: 44px; }
.badge-best { background-color: var(--clr-gold);   color: var(--clr-white); }

/* Card Actions (hover reveal) */
.product-card-actions {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  z-index: 3;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 38px;
  height: 38px;
  background-color: var(--clr-white);
  color: var(--clr-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--t-fast), color var(--t-fast);
}
.product-action-btn:hover {
  background-color: var(--clr-dark);
  color: var(--clr-white);
}

/* YITH Wishlist button overrides */
.product-card-actions .yith-wcwl-add-to-wishlist {
  width: 38px;
  height: 38px;
  background-color: var(--clr-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.product-card-actions .add_to_wishlist {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: var(--clr-dark);
  background: none;
  border: none;
  transition: color var(--t-fast);
}

.product-card-actions .add_to_wishlist::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.product-card-actions .add_to_wishlist:hover { color: var(--clr-gold); }

/* Card Body */
.product-card-body { flex: 1; display: flex; flex-direction: column; gap: var(--sp-1); }

.product-card-category {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.product-card-title {
  font-family: var(--ff-display);
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.product-card-title a {
  color: var(--clr-text);
  transition: color var(--t-fast);
}
.product-card-title a:hover { color: var(--clr-gold); }

.product-card-price {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  margin-top: var(--sp-1);
}

/* Select Options Overlay */
.product-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 0 0.625rem 0.625rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out);
}

.product-card:hover .product-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.product-card-atc-btn {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  background-color: var(--clr-gold);
  color: var(--clr-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background-color var(--t-fast);
}

.product-card-atc-btn:hover {
  background-color: var(--clr-gold-hover);
  color: var(--clr-white);
}

/* Color Swatches + Size Chips row */
.product-card-meta-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
  flex-wrap: wrap;
}

.product-card-swatches {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.swatch {
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.swatch:hover {
  transform: scale(1.25);
  box-shadow: 0 0 0 2px var(--clr-white), 0 0 0 3.5px currentColor;
}

.swatch-more {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* Size chips */
.product-card-sizes {
  display: flex;
  align-items: center;
  gap: 5px;
}

.size-chip {
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
  padding: 2px 7px;
  line-height: 1.6;
  cursor: default;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.size-chip:hover {
  border-color: var(--clr-dark);
  color: var(--clr-dark);
}

/* ── Quick Add Popup ─────────────────────────────────────── */
.quick-add-popup {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 0.875rem 0.875rem;
  animation: qa-in 0.18s ease forwards;
}

@keyframes qa-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.qa-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 28px;
  height: 28px;
  background: var(--clr-dark);
  color: var(--clr-white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}

.qa-attr {
  margin-bottom: 0.625rem;
}

.qa-attr-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.375rem;
}

/* Swatches inside popup */
.qa-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.qa-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.qa-swatch:hover,
.qa-swatch.is-selected {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px var(--clr-white), 0 0 0 3.5px var(--clr-dark);
}

/* Size chips inside popup */
.qa-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.qa-size-chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--clr-text-muted);
  border: 1.5px solid var(--clr-border);
  padding: 3px 8px;
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1.5;
}
.qa-size-chip:hover,
.qa-size-chip.is-selected {
  border-color: var(--clr-dark);
  color: var(--clr-dark);
  background-color: var(--clr-dark);
  color: var(--clr-white);
}

/* Qty + Add to cart row */
.qa-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.625rem;
}

.qa-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--clr-border);
  height: 38px;
  flex-shrink: 0;
}

.qa-qty-btn {
  width: 28px;
  height: 100%;
  background: none;
  border: none;
  font-size: 1.125rem;
  color: var(--clr-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.qa-qty-btn:hover { background: var(--clr-bg-alt); }

.qa-qty-input {
  width: 30px;
  text-align: center;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  -moz-appearance: textfield;
}
.qa-qty-input::-webkit-inner-spin-button,
.qa-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.qa-add-btn {
  flex: 1;
  height: 38px;
  background: var(--clr-gold);
  color: var(--clr-white);
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.qa-add-btn:hover:not(:disabled) { background: var(--clr-gold-hover); }
.qa-add-btn:disabled {
  background: var(--clr-border);
  color: var(--clr-text-muted);
  cursor: not-allowed;
}

.qa-add-btn.is-loading::after {
  content: '…';
}

.qa-msg {
  font-size: 0.6875rem;
  color: var(--clr-error);
  margin-top: 0.25rem;
  display: none;
}
.qa-msg.is-visible { display: block; }

/* ── 13. Brand Story Section ──────────────────────────────── */
.brand-story-section {
  background-color: var(--clr-dark);
  padding-block: clamp(5rem, 10vw, 9rem);
}

.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-24);
  align-items: center;
}

.brand-story-title {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-light);
  color: var(--clr-white);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
  line-height: 1.05;
}

.brand-story-body {
  font-size: var(--fs-md);
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-10);
}

.brand-story-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.brand-stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-6);
  border: 1px solid rgba(191,155,48,0.25);
}

.brand-stat-number {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-light);
  color: var(--clr-gold);
  line-height: 1;
}

.brand-stat-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── 14. Size Guide Banner ────────────────────────────────── */
.size-guide-banner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-10) var(--sp-12);
  border: 1px solid var(--clr-border);
  background-color: var(--clr-bg-alt);
}

.size-guide-banner-icon {
  color: var(--clr-gold);
  flex-shrink: 0;
}

.size-guide-banner-text { flex: 1; }

.size-guide-banner-title {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-1);
}

.size-guide-banner-body {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

/* ── 15. Instagram Section ────────────────────────────────── */
.instagram-section { overflow: hidden; }

.instagram-title-link {
  color: inherit;
  transition: color var(--t-fast);
}
.instagram-title-link:hover { color: var(--clr-gold); }

.instagram-feed-wrap {
  margin-top: var(--sp-10);
}

.instagram-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: var(--sp-10);
}

.instagram-placeholder-item { aspect-ratio: 1; }

.instagram-placeholder-img {
  width: 100%;
  height: 100%;
  background-color: var(--clr-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-border);
}

.instagram-placeholder-note {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-top: var(--sp-6);
  padding: var(--sp-4) var(--sp-8);
  border: 1px dashed var(--clr-border);
}

/* ── 16. Footer ───────────────────────────────────────────── */
.site-footer {
  background-color: var(--clr-dark);
  color: var(--clr-white);
}

.footer-top {
  padding-block: var(--sp-24) var(--sp-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-16);
}

.footer-logo {
  display: block;
  margin-bottom: var(--sp-5);
}

.footer-logo img,
.footer-logo .custom-logo-link img {
  max-height: 72px !important;
  width: auto !important;
  height: auto !important;
  border-radius: 50%;
  border: 1px solid rgba(191,155,48,0.3);
}

.footer-logo-text {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-white);
}
.footer-logo-text em {
  font-style: italic;
  font-weight: var(--fw-light);
  font-size: 0.7em;
  display: block;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  margin-top: -0.3em;
}

.footer-tagline {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.social-link:hover {
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-10);
}

.footer-widget-title {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-6);
}

.footer-nav-list li + li { margin-top: var(--sp-3); }

.footer-nav-list a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
}
.footer-nav-list a:hover { color: var(--clr-white); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
}

.footer-contact-list a:hover { color: var(--clr-gold); }

/* Newsletter */
.footer-newsletter { margin-top: var(--sp-6); }

.newsletter-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-3);
}

.newsletter-field {
  display: flex;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color var(--t-fast);
}

.newsletter-field:focus-within { border-color: var(--clr-gold); }

.newsletter-field input {
  flex: 1;
  padding: var(--sp-3) var(--sp-4);
  background: transparent;
  border: none;
  color: var(--clr-white);
  font-size: var(--fs-sm);
  outline: none;
}

.newsletter-field input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter-field button {
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  border-left: 1px solid rgba(255,255,255,0.2);
  transition: color var(--t-fast), background-color var(--t-fast);
}
.newsletter-field button:hover {
  color: var(--clr-white);
  background-color: var(--clr-gold);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--sp-6);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.copyright {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
}
.copyright a { transition: color var(--t-fast); }
.copyright a:hover { color: var(--clr-gold); }

.footer-legal-nav {
  display: flex;
  gap: var(--sp-6);
}
.footer-legal-nav a {
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  transition: color var(--t-fast);
}
.footer-legal-nav a:hover { color: var(--clr-white); }

.payment-badges {
  display: flex;
  gap: var(--sp-2);
}

.payment-badge {
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xs);
}

/* ── 17. Page / Post Templates ────────────────────────────── */
.page-main, .single-main { padding-block: var(--sp-20); }

.page-header { margin-bottom: var(--sp-10); }

.page-title {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-light);
  letter-spacing: -0.03em;
  color: var(--clr-dark);
}

.entry-content {
  font-size: var(--fs-md);
  line-height: 1.85;
  color: var(--clr-text-muted);
}

.entry-content h2, .entry-content h3 {
  color: var(--clr-dark);
  margin-block: var(--sp-8) var(--sp-4);
}

.entry-content p + p { margin-top: var(--sp-4); }

.entry-content a { color: var(--clr-gold); text-decoration: underline; }

/* ── 18. 404 ──────────────────────────────────────────────── */
.error-404-main { padding-block: var(--sp-32); text-align: center; }

.error-eyebrow {
  font-family: var(--ff-display);
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: var(--fw-light);
  color: var(--clr-border);
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-4);
}

.error-title {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-medium);
  color: var(--clr-dark);
  margin-bottom: var(--sp-4);
}

.error-message {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-10);
}

.error-actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

/* ── 19. Forms ────────────────────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 0;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--clr-dark);
  box-shadow: 0 0 0 3px rgba(13,20,33,0.06);
}

label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-2);
  color: var(--clr-text);
}

/* Search form */
.search-form { display: flex; gap: 0; }

.search-form .search-field {
  flex: 1;
  border-right: none;
}

.search-form .search-submit {
  padding: 0.75rem 1.25rem;
  background-color: var(--clr-dark);
  color: var(--clr-white);
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  border: 1px solid var(--clr-dark);
  transition: background-color var(--t-fast);
}
.search-form .search-submit:hover { background-color: var(--clr-gold); border-color: var(--clr-gold); }

/* ── 20. Utilities ────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-gold  { color: var(--clr-gold) !important; }
.text-dark  { color: var(--clr-dark) !important; }
.text-muted { color: var(--clr-text-muted) !important; }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.1em; }

.no-results {
  text-align: center;
  padding-block: var(--sp-20);
}
.no-results-text {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-6);
}

/* ── 21. Responsive ───────────────────────────────────────── */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .brand-story-inner { grid-template-columns: 1fr; gap: var(--sp-12); }
  .brand-story-title { font-size: var(--fs-3xl); }
  .categories-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .categories-grid--4 .category-card:first-child { grid-column: span 1; aspect-ratio: 4/5; }
  .cat-shelf { justify-content: flex-start; flex-wrap: nowrap; }
  .products-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-widgets { grid-template-columns: repeat(3, 1fr); }
  .header-container { grid-template-columns: 1fr auto 1fr; }
  .header-nav { display: none; }
  .header-start .mobile-menu-toggle { display: flex; }
  .header-actions .country-toggle { display: none; }
  .header-actions .account-link,
  .header-actions .wishlist-link { display: none; }
  .site-branding { justify-content: center; }
  .logo-text { font-size: var(--fs-2xl); letter-spacing: 0.08em; }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --topbar-h: 36px;
  }

  .site-logo img,
  img.custom-logo { max-height: 52px !important; }

  .hero-section { min-height: 85vh; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 5rem); }
  .hero-content { text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }

  .section { padding-block: clamp(3rem, 8vw, 5rem); }
  .section-header { flex-direction: column; align-items: flex-start; }

  .cat-shelf { justify-content: flex-start; flex-wrap: nowrap; }
  .cat-shelf-item { flex: 0 0 120px; }

  .categories-grid,
  .categories-grid--3,
  .categories-grid--4 { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }

  .products-grid,
  .products-grid--3,
  .products-grid--4 { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4) var(--sp-3); }

  .brand-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-story-section { padding-block: var(--sp-16); }

  .size-guide-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-8);
  }

  .instagram-placeholder-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .footer-widgets { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-top { padding-block: var(--sp-16) var(--sp-10); }

  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .payment-badges { display: none; }

  .topbar-actions { display: none; }
  .topbar-inner { justify-content: center; }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .categories-grid,
  .categories-grid--3,
  .categories-grid--4 { grid-template-columns: 1fr; }

  .category-card { aspect-ratio: 3/2; }

  .footer-widgets { grid-template-columns: 1fr; }
}

/* ── 22. Print ────────────────────────────────────────────── */
@media print {
  .site-header, .topbar, .site-footer, .hero-scroll-cue { display: none; }
}
