/* ============================================================
   THEME CSS — Luxury Editorial Shopify Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --color-bg:          #0e0e0e;
  --color-surface:     #161616;
  --color-surface-2:   #1e1e1e;
  --color-border:      rgba(255,255,255,0.08);
  --color-text:        #f0ece4;
  --color-text-muted:  #888;
  --color-accent:      #c9a96e;
  --color-accent-dim:  rgba(201,169,110,0.15);
  --color-white:       #ffffff;
  --color-error:       #e05c5c;
  --color-success:     #5cba8a;

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

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.6);

  --header-height: 72px;
  --max-width: 1280px;
  --gutter: clamp(16px, 4vw, 48px);
}

/* ── Light Mode Override Variables ──────────────────────────── */
body.light-mode, html.light-mode body {
  --color-bg:          #f4f3ed; /* Cream/warm white background */
  --color-surface:     #ffffff; /* White surfaces */
  --color-surface-2:   #eae8e0; /* Lighter warm grey */
  --color-border:      rgba(32, 46, 68, 0.08); /* Darker border */
  --color-text:        #202e44; /* Dark charcoal text */
  --color-text-muted:  rgba(32, 46, 68, 0.65);
  --color-accent:      #88734c; /* Darker luxury gold */
  --color-accent-dim:  rgba(136, 115, 76, 0.12);
  --color-white:       #0e0e0e; /* Invert white text variables */
}

/* Prevent text inversion in hero banner for readability over WebGL vortex, ONLY in dark mode */
body:not(.light-mode) .hero,
body:not(.light-mode) .hero * {
  --color-white:       #ffffff;
  --color-text:        #f0ece4;
  --color-text-muted:  rgba(240, 236, 228, 0.75);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: var(--font-body); cursor: pointer; }

/* ── Page Width ─────────────────────────────────────────────── */
.page-width {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

/* ── Reveal Animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ════════════════════════════════════════════════════════════ */
.announcement-bar {
  text-align: center;
  padding: 10px var(--gutter);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: #0e0e0e;
}
.announcement-bar a { color: inherit; border-bottom: 1px solid currentColor; }

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  background: rgba(14,14,14,0.72);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}
.site-header__logo a {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
.site-header__logo img { max-height: 36px; width: auto; }
.site-header__nav {
  display: block;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li {
  position: relative;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--color-text); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

/* Dropdown Menu Support on Desktop */
.sub-menu-wrap {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1001;
  box-shadow: var(--shadow-lg);
}
body.light-mode .sub-menu-wrap {
  background: rgba(244, 243, 237, 0.98);
}
.nav-menu > li:hover .sub-menu-wrap {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sub-menu li {
  width: 100%;
}
.sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--color-text-muted) !important;
  border-bottom: none !important;
}
.sub-menu a::after {
  display: none !important;
}
.sub-menu a:hover {
  color: var(--color-text) !important;
  background: rgba(255, 255, 255, 0.05);
}
body.light-mode .sub-menu a:hover {
  background: rgba(0, 0, 0, 0.03);
}

/* Custom CSS Chevron for Dropdown Indicator */
.dropdown-arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 4px;
  transition: transform var(--transition);
}
.site-header__nav > li:hover .dropdown-arrow {
  transform: rotate(-135deg) translateY(2px);
}


.site-header__icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
}
.site-header__icon:hover { color: var(--color-text); }
.site-header__icon svg { width: 20px; height: 20px; stroke-width: 1.5; }

.cart-count {
  position: absolute;
  top: -7px; right: -9px;
  background: var(--color-accent);
  color: #0e0e0e;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile menu toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  padding: 10px; /* Increased padding to create a 44px tap target (22px SVG + 20px padding) */
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.mobile-nav-toggle svg { width: 22px; height: 22px; stroke-width: 1.5; }
.mobile-nav-toggle .icon-close { display: none; }
.mobile-nav-toggle[aria-expanded="true"] .icon-hamburger { display: none; }
.mobile-nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: rgba(22, 22, 22, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--color-border);
  padding: 24px var(--gutter) 32px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-lg);
}
body.light-mode .mobile-nav {
  background: rgba(244, 243, 237, 0.85);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__links a {
  display: block;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-nav__links a:last-child { border-bottom: none; }
.mobile-nav__links a:hover { color: var(--color-text); padding-left: 8px; }
.mobile-nav__links a.active { color: var(--color-accent); padding-left: 8px; }

/* Content offset for fixed header */
body { padding-top: var(--header-height); }

/* ════════════════════════════════════════════════════════════
   HERO BANNER
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img, .hero__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero.loaded .hero__media img { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,14,14,0.8) 0%,
    rgba(14,14,14,0.4) 50%,
    rgba(14,14,14,0.2) 100%
  );
  z-index: 1;
}
body.light-mode .hero__overlay {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.72) 0%,
    rgba(255,255,255,0.30) 50%,
    rgba(255,255,255,0.15) 100%
  ) !important;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px var(--gutter);
  text-align: left;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.2s ease forwards;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--color-accent);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--color-white);
  max-width: 720px;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.4s ease forwards;
  text-align: left;
}
.hero__title.liquid-glass {
  display: inline-block;
  width: fit-content;
  max-width: 720px;
  border-radius: var(--radius-lg);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}
.hero__title.liquid-glass .lg-blur {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero__title.liquid-glass .lg-overlay {
  background: rgba(14, 14, 14, 0.45);
}
.hero__title.liquid-glass .lg-shine {
  box-shadow:
    inset 2px 2px 2px 0 rgba(255, 255, 255, 0.55),
    inset -1px -1px 2px 1px rgba(255, 255, 255, 0.25);
  z-index: 2;
}
.hero__title.liquid-glass .lg-content {
  padding: clamp(12px, 2vw, 24px) clamp(24px, 4vw, 48px);
}
body.light-mode .hero__title.liquid-glass {
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(201, 169, 110, 0.35);
}
body.light-mode .hero__title.liquid-glass .lg-overlay {
  background: rgba(255, 255, 255, 0.45);
}
body.light-mode .hero__title.liquid-glass .lg-shine {
  box-shadow:
    inset 2px 2px 2px 0 rgba(255, 255, 255, 0.75),
    inset -1px -1px 2px 1px rgba(255, 255, 255, 0.35);
}

/* ── Sky Switch Theme Toggle Styles ─────────────────────────── */
.sky-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-switch {
  --toggle-size: 11px; /* Scaled down to fit nicely in header next to navigation icons */
  --container-width: 5.625em;
  --container-height: 2.5em;
  --container-radius: 6.25em;
  --container-light-bg: #3D7EAE;
  --container-night-bg: #1D1F2C;
  --circle-container-diameter: 3.375em;
  --sun-moon-diameter: 2.125em;
  --sun-bg: #ECCA2F;
  --moon-bg: #C4C9D1;
  --spot-color: #959DB1;
  --circle-container-offset: calc((var(--circle-container-diameter) - var(--container-height)) / 2 * -1);
  --stars-color: #fff;
  --clouds-color: #F3FDFF;
  --back-clouds-color: #AACADF;
  --transition: .5s cubic-bezier(0, -0.02, 0.4, 1.25);
  --circle-transition: .3s cubic-bezier(0, -0.02, 0.35, 1.17);
  display: inline-block;
  position: relative;
}

.theme-switch, .theme-switch *, .theme-switch *::before, .theme-switch *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: var(--toggle-size);
}

.theme-switch__container {
  width: var(--container-width);
  height: var(--container-height);
  background-color: var(--container-light-bg);
  border-radius: var(--container-radius);
  overflow: hidden;
  cursor: pointer;
  -webkit-box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
  box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.theme-switch__container::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  -webkit-box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
  border-radius: var(--container-radius);
}

.theme-switch__checkbox {
  display: none;
}

.theme-switch__circle-container {
  width: var(--circle-container-diameter);
  height: var(--circle-container-diameter);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: var(--circle-container-offset);
  top: var(--circle-container-offset);
  border-radius: var(--container-radius);
  -webkit-box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: var(--circle-transition);
  -o-transition: var(--circle-transition);
  transition: var(--circle-transition);
  pointer-events: none;
}

.theme-switch__sun-moon-container {
  pointer-events: auto;
  position: relative;
  z-index: 2;
  width: var(--sun-moon-diameter);
  height: var(--sun-moon-diameter);
  margin: auto;
  border-radius: var(--container-radius);
  background-color: var(--sun-bg);
  -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
  box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
  -webkit-filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
  overflow: hidden;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.theme-switch__moon {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  background-color: var(--moon-bg);
  border-radius: inherit;
  -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
  box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.theme-switch__spot {
  position: absolute;
  top: 0.75em;
  left: 0.312em;
  width: 0.75em;
  height: 0.75em;
  border-radius: var(--container-radius);
  background-color: var(--spot-color);
  -webkit-box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
}

.theme-switch__spot:nth-of-type(2) {
  width: 0.375em;
  height: 0.375em;
  top: 0.937em;
  left: 1.375em;
}

.theme-switch__spot:nth-last-of-type(3) {
  width: 0.25em;
  height: 0.25em;
  top: 0.312em;
  left: 0.812em;
}

.theme-switch__clouds {
  width: 1.25em;
  height: 1.25em;
  background-color: var(--clouds-color);
  border-radius: var(--container-radius);
  position: absolute;
  bottom: -0.625em;
  left: 0.312em;
  -webkit-box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--clouds-color);
  box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--back-clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--clouds-color);
  -webkit-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  -o-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
}

.theme-switch__stars-container {
  position: absolute;
  color: var(--stars-color);
  top: -100%;
  left: 0.312em;
  width: 2.75em;
  height: auto;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

/* Checked state actions */
.theme-switch__checkbox:checked + .theme-switch__container {
  background-color: var(--container-night-bg);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container {
  left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter));
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container:hover {
  left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter) - 0.187em);
}

.theme-switch__circle-container:hover {
  left: calc(var(--circle-container-offset) + 0.187em);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__moon {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__clouds {
  bottom: -4.062em;
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__stars-container {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}
.hero__subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(240,236,228,0.75);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 44px;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.6s ease forwards;
  
  /* Blurry transparent background */
  padding: 18px 24px;
  background: rgba(14, 14, 14, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
body.light-mode .hero__subtitle {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(201, 169, 110, 0.35);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.8s ease forwards;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  animation: scrollPulse 2s ease infinite;
}
.hero__scroll-hint svg { width: 20px; height: 20px; }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}

/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-accent);
  color: #0e0e0e;
}
.btn--primary:hover {
  background: #d4b07a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}
.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
body.light-mode .btn--secondary {
  border-color: rgba(32, 46, 68, 0.35);
}
body.light-mode .btn--secondary:hover {
  background: rgba(32, 46, 68, 0.08);
  border-color: rgba(32, 46, 68, 0.6);
}
.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.btn--outline:hover {
  background: var(--color-accent-dim);
}
.btn--full { width: 100%; justify-content: center; }
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   MARQUEE / TICKER
   ════════════════════════════════════════════════════════════ */
.marquee-section-container {
  position: relative;
  width: 100%;
}
.marquee-wave-overlay {
  position: absolute;
  top: -68px; /* Overlaps hero section by 68px */
  left: 0;
  right: 0;
  height: 75px; /* Taller wave transition */
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
  background: transparent !important;
}
.marquee-wave-overlay svg {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent !important;
}
.marquee-wave-overlay svg path {
  background: transparent !important;
}
.marquee-wave-overlay svg path:nth-child(1) {
  fill: var(--color-accent) !important;
  fill-opacity: 0.25 !important;
}
.marquee-wave-overlay svg path:nth-child(2) {
  fill: var(--color-accent) !important;
  fill-opacity: 0.45 !important;
}
.marquee-wave-overlay svg path:nth-child(3) {
  fill: var(--color-accent) !important;
  fill-opacity: 0.75 !important;
}
.marquee-section {
  background: var(--color-accent);
  padding: 14px 0; /* Original straight padding */
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  gap: 0;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0e0e0e;
}
.marquee-item::after {
  content: '◆';
  font-size: 8px;
  opacity: 0.5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   USP / FEATURES BAR
   ════════════════════════════════════════════════════════════ */
.features-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 48px 0;
}
.features-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.feature-item {
  text-align: center;
}
.feature-item__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-accent);
}
.feature-item__icon svg { width: 22px; height: 22px; stroke-width: 1.5; }
.feature-item__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--color-text);
}
.feature-item__text {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   SECTION WRAPPER
   ════════════════════════════════════════════════════════════ */
.section {
  padding: clamp(60px, 8vw, 120px) 0;
}
.section--dark {
  background: var(--color-surface);
}
.section-header {
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section-header--centered { text-align: center; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--color-accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.section-title em { font-style: italic; color: var(--color-accent); }
.section-subtitle {
  margin-top: 16px;
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 520px;
  line-height: 1.7;
}
.section-header--centered .section-subtitle { margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════════════════════════
   PRODUCT GRID
   ════════════════════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ─── Product Card ──────────────────────────────────────────── */
.product-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.product-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}
.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-surface-2);
}
.product-card__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-card__image { transform: scale(1.06); }

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,14,14,0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-card__overlay { opacity: 1; }

.product-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--color-accent);
  color: #0e0e0e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}
.product-card__badge--sold-out {
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.product-card__wishlist {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(14,14,14,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition);
  cursor: pointer;
}
.product-card__wishlist:hover { color: var(--color-accent); border-color: var(--color-accent); }
.product-card__wishlist svg { width: 16px; height: 16px; stroke-width: 1.5; }

.product-card__body {
  padding: 20px;
}
.product-card__vendor {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 12px;
}
.product-card__title a { color: inherit; transition: color var(--transition); }
.product-card__title a:hover { color: var(--color-accent); }
.product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-card__price {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}
.product-card__price s {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-right: 6px;
  text-decoration: line-through;
}
.product-card__price--sale { color: var(--color-accent); }

/* ════════════════════════════════════════════════════════════
   PRODUCT PAGE
   ════════════════════════════════════════════════════════════ */
.product-template {
  padding: clamp(48px, 6vw, 96px) 0;
}
.product-template__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.product-gallery__main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  aspect-ratio: 1;
}
.product-gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-gallery__main:hover img { transform: scale(1.04); }
.product-gallery__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.product-gallery__thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
  background: var(--color-surface);
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover { border-color: var(--color-accent); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info__vendor {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.product-info__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 20px;
}
.product-info__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}
.product-info__price-current {
  font-size: 28px;
  font-weight: 500;
  color: var(--color-text);
}
.product-info__price-compare {
  font-size: 18px;
  color: var(--color-text-muted);
  text-decoration: line-through;
}
.product-info__price-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: var(--color-accent-dim);
  color: var(--color-accent);
  border-radius: var(--radius-full);
}
.product-info__availability {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}
.product-info__availability--in {
  background: rgba(92,186,138,0.1);
  color: var(--color-success);
}
.product-info__availability--out {
  background: rgba(224,92,92,0.1);
  color: var(--color-error);
}
.product-info__availability::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.product-option { margin-bottom: 24px; }
.product-option label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.product-option select {
  width: 100%;
  padding: 13px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color var(--transition);
}
.product-option select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.product-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
  margin-bottom: 24px;
}
.product-qty button {
  width: 44px; height: 44px;
  background: var(--color-surface);
  border: none;
  color: var(--color-text);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.product-qty button:hover { background: var(--color-surface-2); }
.product-qty input {
  width: 56px; height: 44px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  text-align: center;
}
.product-qty input:focus { outline: none; }

.product-add-form { display: flex; flex-direction: column; gap: 0; }
.product-add-btn {
  padding: 16px 32px;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.digital-download-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--color-accent-dim);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 20px 0;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.digital-download-note svg {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px; height: 18px;
}

.product-description {
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.product-description h2, .product-description h3 {
  font-family: var(--font-display);
  color: var(--color-text);
  margin: 20px 0 10px;
}
.product-description p { margin-bottom: 12px; }
.product-description ul, .product-description ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

/* ════════════════════════════════════════════════════════════
   RICH TEXT / ABOUT SECTION
   ════════════════════════════════════════════════════════════ */
.rich-text {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.rich-text p { font-size: 16px; color: var(--color-text-muted); line-height: 1.8; }

/* ════════════════════════════════════════════════════════════
   SPLIT SECTION (Image + Text)
   ════════════════════════════════════════════════════════════ */
.split-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.split-section__grid.reversed .split-section__media { order: 2; }
.split-section__grid.reversed .split-section__content { order: 1; }
.split-section__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.split-section__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-section__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ════════════════════════════════════════════════════════════
   VIEW ALL LINK
   ════════════════════════════════════════════════════════════ */
.view-all-wrap {
  text-align: center;
  margin-top: 56px;
}

/* ════════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ════════════════════════════════════════════════════════════ */
.newsletter-section {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 80px);
  text-align: center;
  margin: 0 var(--gutter);
}
.newsletter-section .section-title { margin-bottom: 12px; }
.newsletter-section p { color: var(--color-text-muted); margin-bottom: 36px; }
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition);
  min-width: 0;
}
.newsletter-form input[type="email"]::placeholder { color: var(--color-text-muted); }
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-accent);
}
.newsletter-form button {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  white-space: nowrap;
  letter-spacing: 0.1em;
  padding: 15px 28px;
}
.newsletter-success {
  color: var(--color-success);
  font-size: 14px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: clamp(60px, 7vw, 96px) 0 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--color-border);
}
.site-footer__brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 14px;
}
.site-footer__brand-name img { max-height: 32px; }
.site-footer__brand-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.site-footer__social {
  display: flex;
  gap: 12px;
}
.site-footer__social a {
  width: 38px; height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.site-footer__social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-dim);
}
.site-footer__social svg { width: 16px; height: 16px; }

.site-footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 20px;
}
.site-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__links a {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.site-footer__links a:hover { color: var(--color-accent); padding-left: 4px; }

.site-footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer__copyright {
  font-size: 12px;
  color: var(--color-text-muted);
}
.site-footer__payments {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-footer__payments svg { height: 24px; opacity: 0.5; filter: brightness(2); }

/* ════════════════════════════════════════════════════════════
   GRID / LAYOUT HELPERS (legacy compat)
   ════════════════════════════════════════════════════════════ */
.grid { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.grid__item { padding: 0 12px; width: 100%; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .product-template__grid { grid-template-columns: 1fr; }
  .split-section__grid { grid-template-columns: 1fr; }
  .split-section__grid.reversed .split-section__media,
  .split-section__grid.reversed .split-section__content { order: unset; }

  /* Apply 20% more transparency only for mobile and tablet */
  .sh-glass-overlay {
    background: rgba(14, 14, 14, 0.12);
  }
  .site-header.scrolled .sh-glass-overlay {
    background: rgba(14, 14, 14, 0.05);
  }
  body.light-mode .site-header.scrolled .sh-glass-overlay {
    background: rgba(255, 255, 255, 0.0);
  }
}

@media (max-width: 768px) {
  .site-header__nav { display: none !important; }
  .mobile-nav-toggle { display: flex !important; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] {
    border-right: 1px solid var(--color-border);
    border-bottom: none;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  }
  .newsletter-form button { border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
  .hero__title { font-size: clamp(36px, 10vw, 56px); }
  .site-footer__bottom { justify-content: center; text-align: center; }
  
  /* Mobile UI enhancements */
  .hero__subtitle {
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 28px;
  }
  
  /* Prevent auto-zooming on iOS Safari */
  .contact-input, 
  .contact-textarea, 
  .contact-field input, 
  .newsletter-form input[type="email"],
  .product-option select,
  .product-qty input {
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   PLACEHOLDER SVGs
   ════════════════════════════════════════════════════════════ */
.placeholder-svg {
  width: 100%;
  height: 100%;
  background: var(--color-surface-2);
  display: block;
}

/* ════════════════════════════════════════════════════════════
   ABOUT US PAGE — supplemental global styles
   (section-scoped CSS lives inside sections/about-us.liquid)
   ════════════════════════════════════════════════════════════ */

/* Light-background page override so the about-us section
   sits flush without the dark body bleeding in */
.template-page-about-us {
  background: var(--color-bg);
}

/* Ensure the header reads correctly on all pages and states when in light mode */
body.light-mode .site-header .site-header__logo a,
body.light-mode .site-header .nav-menu a,
body.light-mode .site-header .site-header__icon,
body.light-mode .site-header .mobile-nav-toggle {
  color: #202e44;
}
body.light-mode .site-header .nav-menu a::after {
  background: #88734C;
}

/* ════════════════════════════════════════════════════════════
   LIQUID GLASS EFFECT
   Applies a frosted-glass backdrop to key headings.
   Usage:  add class="liquid-glass" to any heading element,
           then place the four child spans inside it.
   ════════════════════════════════════════════════════════════ */
.liquid-glass {
  position: relative !important;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0,0,0,0.22), 0 0 28px rgba(0,0,0,0.14);
  display: block;
}

/* ── Three absolutely-positioned glass sublayers ── */
.lg-blur,
.lg-overlay,
.lg-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  display: block;
}

/* Layer 1 — backdrop blur + SVG distortion */
.lg-blur {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  filter: url(#glass-distortion);
  z-index: 0;
}

/* Layer 2 — translucent white film */
.lg-overlay {
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}
body.light-mode .liquid-glass .lg-overlay {
  background: rgba(255, 255, 255, 0.25);
}

/* Layer 3 — inner edge shine */
.lg-shine {
  box-shadow:
    inset 2px 2px 1px 0 rgba(255, 255, 255, 0.45),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.30);
  z-index: 2;
}

/* ── Content sits above all glass layers ── */
.lg-content {
  position: relative;
  z-index: 3;
  display: block;
  padding: 14px 28px;
}

/* Smaller padding for sub-headings (service item titles) */
.liquid-glass--sm .lg-content {
  padding: 7px 15px;
}

/* About-us page: slightly warmer glass to match the cream bg when in light mode */
body.light-mode .about-us .liquid-glass .lg-overlay {
  background: rgba(255, 255, 255, 0.22);
}
body.light-mode .about-us .liquid-glass .lg-shine {
  box-shadow:
    inset 2px 2px 1px 0 rgba(255, 255, 255, 0.65),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.45);
}

/* ════════════════════════════════════════════════════════════
   NAVBAR LIQUID GLASS
   Three absolutely-positioned sublayers inside .site-header
   that produce the liquid-glass refraction + edge highlights.
   ════════════════════════════════════════════════════════════ */

/* ── Override: always glass, not just when scrolled ── */
.site-header {
  background: transparent !important;
  overflow: hidden;
}

/* ── Sublayer base ── */
.sh-glass-blur,
.sh-glass-overlay,
.sh-glass-edge {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: block;
}

/* Layer 1 — backdrop blur + liquid warp distortion */
.sh-glass-blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  filter: url(#glass-blur);
  z-index: 0;
}

/* Layer 2 — dark translucent film (keeps luxury dark palette, default desktop aspect) */
.sh-glass-overlay {
  background: rgba(14, 14, 14, 0.12);
  z-index: 1;
  transition: background var(--transition);
}

/* Slightly more opaque when scrolled (default desktop aspect) */
.site-header.scrolled .sh-glass-overlay {
  background: rgba(14, 14, 14, 0.05);
}

/* Layer 3 — inner edge highlights (the glass "rim" effect) */
.sh-glass-edge {
  box-shadow:
    inset 0  1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    inset 3px 0 6px rgba(255, 255, 255, 0.04),
    inset -3px 0 6px rgba(255, 255, 255, 0.04);
  z-index: 2;
}

/* Bottom border becomes gold on scroll (replaces old scrolled border) */
.sh-glass-edge::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 169, 110, 0.0) 10%,
    rgba(201, 169, 110, 0.35) 40%,
    rgba(201, 169, 110, 0.35) 60%,
    rgba(201, 169, 110, 0.0) 90%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity var(--transition);
}
.site-header.scrolled .sh-glass-edge::after {
  opacity: 1;
}

/* Outer glow — very subtle upward shadow */
.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.18),
    0 0 28px rgba(0, 0, 0, 0.12),
    0 0 48px rgba(255, 255, 255, 0.04);
  z-index: 0;
}

/* ── Ensure inner content floats above all glass layers ── */
.site-header .page-width {
  position: relative;
  z-index: 10;
}

/* ── Light-mode header glass styles (scrolled OR unscrolled, default desktop aspect) ── */
body.light-mode .site-header .sh-glass-overlay {
  background: rgba(255, 255, 255, 0.01); /* Transparent, removes any gray background effect at first */
}
body.light-mode .site-header.scrolled .sh-glass-overlay {
  background: rgba(255, 255, 255, 0.0); /* Scrolled background, default desktop aspect */
}
body.light-mode .site-header .sh-glass-edge,
body.light-mode .site-header.scrolled .sh-glass-edge {
  box-shadow:
    inset 0  1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(255, 255, 255, 0.20),
    inset 3px 0 6px rgba(255, 255, 255, 0.12),
    inset -3px 0 6px rgba(255, 255, 255, 0.12);
}

/* ════════════════════════════════════════════════════════════
   MOBILE HEADER OVERFLOW & DRAWER NAVIGATION
   ════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Hide Account icon in header bar on mobile to fit the menu toggle */
  .site-header__icon--account {
    display: none !important;
  }

  /* Reduce gap between header icons on mobile to fit search icon */
  .site-header__icons {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  /* Reduce logo font size and icon gaps on small screens to prevent overflow */
  .site-header__logo a {
    font-size: 22px;
  }
  .site-header__icons {
    gap: 8px;
  }
}

/* Mobile nav search & account styling */
.mobile-nav__footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.light-mode .mobile-nav__footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-nav__search-form {
  position: relative;
  width: 100%;
}
.mobile-nav__search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 10px 40px 10px 14px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
body.light-mode .mobile-nav__search-input {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #202e44;
}
.mobile-nav__search-input:focus {
  border-color: var(--color-accent);
}
.mobile-nav__search-submit {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-text-muted);
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.light-mode .mobile-nav__search-submit {
  color: #202e44;
}
.mobile-nav__search-submit svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}
.mobile-nav__account-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 0 !important;
}
body.light-mode .mobile-nav__account-link {
  color: #202e44;
}
.mobile-nav__account-link svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

/* ════════════════════════════════════════════════════════════
   ADVANCED SEARCH FORM
   ════════════════════════════════════════════════════════════ */
.search-form-advanced {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.search-form-filters {
  display: flex;
  gap: 12px;
  width: 100%;
}

.custom-select {
  flex: 1;
  position: relative;
  user-select: none;
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: rgba(30, 30, 30, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body), sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
  box-sizing: border-box;
}

.custom-select-trigger svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-accent);
  transition: transform var(--transition);
}

.custom-select.open .custom-select-trigger {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

.custom-select.open .custom-select-trigger svg {
  transform: rotate(180deg);
}

.custom-select-trigger:hover {
  border-color: rgba(201, 169, 110, 0.35);
}

.custom-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(22, 22, 22, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 100;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-select.open .custom-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-option {
  padding: 12px 16px;
  font-family: var(--font-body), sans-serif;
  font-size: 13px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.custom-option:hover {
  background: rgba(201, 169, 110, 0.1);
  color: var(--color-accent);
}

.search-form-input-wrap {
  display: flex;
  gap: 12px;
  width: 100%;
}

.search-field {
  flex-grow: 1;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body), sans-serif;
  font-size: 14px;
  color: var(--color-text);
  outline: none;
  transition: all var(--transition);
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.search-field:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.search-field:hover:not(:focus) {
  border-color: rgba(201, 169, 110, 0.35);
}

.search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--color-accent);
  color: #0e0e0e;
  transition: all var(--transition);
  white-space: nowrap;
}

.search-submit:hover {
  background: #d4b07a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
}

/* Responsive adjustments */
@media (max-width: 380px) {
  .search-form-filters {
    flex-direction: column;
    gap: 8px;
  }
}

/* Light mode support */
body.light-mode .search-form-advanced {
  background: #ffffff;
  border-color: rgba(32, 46, 68, 0.1);
  box-shadow: 0 12px 32px rgba(32, 46, 68, 0.05);
}
body.light-mode .custom-select-trigger {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(32, 46, 68, 0.12);
  color: #202e44;
}
body.light-mode .custom-select-trigger svg {
  stroke: #202e44;
}
body.light-mode .custom-select.open .custom-select-trigger {
  border-color: #202e44;
  box-shadow: 0 0 0 3px rgba(32, 46, 68, 0.1);
}
body.light-mode .custom-options {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(32, 46, 68, 0.12);
  box-shadow: 0 16px 40px rgba(32, 46, 68, 0.08);
}
body.light-mode .custom-option {
  color: rgba(32, 46, 68, 0.7);
}
body.light-mode .custom-option:hover {
  background: rgba(32, 46, 68, 0.05);
  color: #202e44;
}
body.light-mode .search-field {
  background: #fbfbf9;
  border-color: rgba(32, 46, 68, 0.15);
  color: #202e44;
}
body.light-mode .search-field:focus {
  background: #ffffff;
  border-color: #202e44;
}
body.light-mode .search-submit {
  color: #ffffff;
}
