/* ============================================================
   WEARER OF WISDOM — GLOBAL STYLESHEET v1.0
   Design System: Dark Luxury Fashion
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Background scale */
  --bg-base:       #0a0a0a;
  --bg-elevated:   #111111;
  --bg-surface:    #1a1a1a;
  --bg-header:     #000000;
  --bg-footer:     #000000;
  --bg-overlay:    rgba(0, 0, 0, 0.72);
  --bg-glass:      rgba(0, 0, 0, 0.72);

  /* Gold system */
  --gold-bright:   #C9A84C;
  --gold-warm:     #B8972E;
  --gold-muted:    #6D643B;
  --gold-pale:     rgba(201, 168, 76, 0.12);
  --gold-border:   rgba(201, 168, 76, 0.25);
  --gold-border-strong: rgba(201, 168, 76, 0.55);

  /* Text */
  --text-primary:  #e8e3d6;
  --text-secondary:#c4b99a;
  --text-muted:    #8a7f6a;
  --text-inverted: #0a0a0a;

  /* Functional colors */
  --green-deep:    #3e5622;
  --green-mid:     #4e6e2a;
  --green-light:   #5a7a32;
  --red-alert:     #8B2020;

  /* Typography */
  --font-display:  'Barlow Condensed', sans-serif;
  --font-heading:  'Cinzel', serif;
  --font-label:    'Bebas Neue', sans-serif;
  --font-body:     'Inter Tight', sans-serif;

  /* Spacing (8px base) */
  --s1:  8px;
  --s2:  16px;
  --s3:  24px;
  --s4:  32px;
  --s5:  40px;
  --s6:  48px;
  --s8:  64px;
  --s10: 80px;
  --s12: 96px;
  --s16: 128px;

  /* Border radius */
  --r-sm:   4px;
  --r-base: 8px;
  --r-lg:   16px;
  --r-full: 9999px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 300ms ease;
  --t-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Z-index layers */
  --z-base:    1;
  --z-raised:  10;
  --z-dropdown:100;
  --z-sticky:  200;
  --z-overlay: 300;
  --z-modal:   400;
  --z-toast:   500;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

ul, ol { list-style: none; }

input, textarea {
  font-family: var(--font-body);
  outline: none;
}

/* ============================================================
   3. TYPOGRAPHY UTILITIES
   ============================================================ */
.font-display  { font-family: var(--font-display); }
.font-heading  { font-family: var(--font-heading); }
.font-label    { font-family: var(--font-label); letter-spacing: 0.08em; }
.font-body     { font-family: var(--font-body); }

.text-gold     { color: var(--gold-bright); }
.text-gold-muted { color: var(--gold-muted); }
.text-muted    { color: var(--text-muted); }
.text-secondary{ color: var(--text-secondary); }
.text-center   { text-align: center; }
.uppercase     { text-transform: uppercase; }

/* ============================================================
   4. ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background-color: var(--bg-header);
  border-bottom: 1px solid var(--gold-border);
  height: 36px;
  overflow: hidden;
  position: relative;
  z-index: var(--z-sticky);
}

.announcement-bar::before,
.announcement-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.announcement-bar::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}
.announcement-bar::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 42s linear infinite;
  will-change: transform;
}

.ticker-item {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  padding: 0 var(--s4);
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
}

.ticker-item strong,
.ticker-item a {
  color: var(--gold-bright);
}

.ticker-item a:hover {
  text-decoration: underline;
}

.ticker-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--gold-muted);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-content { animation-play-state: paused; }
}

/* ============================================================
   5. SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background-color: var(--bg-header);
  border-bottom: 1px solid var(--gold-border);
  transition: background var(--t-base), backdrop-filter var(--t-base), box-shadow var(--t-base);
}

.site-header.scrolled {
  background-color: var(--bg-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--gold-border), 0 8px 32px rgba(0,0,0,0.6);
}

.site-header.hidden {
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--s4);
  height: 64px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Left cluster */
.header-left {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

/* Center: logo + nav */
.header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* Right cluster */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--s2);
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  position: relative;
  height: 40px;
}

.logo-white,
.logo-gold {
  height: 38px;
  width: auto;
  transition: opacity var(--t-base), transform var(--t-base);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-white {
  opacity: 1;
}

.logo-gold {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
}

.site-header.scrolled .logo-white {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
}

.site-header.scrolled .logo-gold {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--s1);
}

.main-nav a {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  padding: 4px var(--s1);
  transition: color var(--t-fast);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: width var(--t-base), left var(--t-base);
}

.main-nav a:hover {
  color: var(--gold-bright);
}

.main-nav a:hover::after {
  width: 100%;
  left: 0;
}

.main-nav a.nav-sale {
  color: var(--gold-bright);
}

/* Icon buttons */
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-base);
  color: var(--text-secondary);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}

.icon-btn:hover {
  color: var(--gold-bright);
  background: var(--gold-pale);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--gold-bright);
  color: var(--text-inverted);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-badge[data-count="0"] {
  display: none;
}

/* Mega nav dropdown */
.mega-nav-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0d0d0d;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  z-index: var(--z-dropdown);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav .nav-item:hover .mega-nav-wrapper,
.mega-nav-wrapper:hover {
  max-height: 420px;
}

.mega-nav-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--s5) var(--s4);
  gap: var(--s8);
}

.mega-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.mega-nav-category {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold-muted);
  text-transform: uppercase;
  margin-bottom: var(--s1);
  margin-top: var(--s3);
}

.mega-nav-category:first-child {
  margin-top: 0;
}

.mega-nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: block;
  padding: 3px 0;
}

.mega-nav-links a:hover {
  color: var(--text-primary);
  padding-left: 8px;
}

.mega-nav-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  align-items: start;
}

.editorial-card {
  position: relative;
  border-radius: var(--r-base);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-surface);
}

.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.editorial-card:hover img {
  transform: scale(1.04);
}

.editorial-card-label {
  position: absolute;
  bottom: var(--s2);
  left: var(--s2);
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* ============================================================
   6. MOBILE MENU
   ============================================================ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: var(--z-overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(340px, 85vw);
  background: var(--bg-header);
  border-right: 1px solid var(--gold-border-strong);
  z-index: var(--z-modal);
  transform: translateX(-100%);
  transition: transform var(--t-slow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s3) var(--s4);
  border-bottom: 1px solid var(--gold-border);
  flex-shrink: 0;
}

.mobile-menu-logo {
  height: 32px;
  width: auto;
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color var(--t-fast);
}

.mobile-menu-close:hover { color: var(--gold-bright); }

.mobile-nav {
  padding: var(--s4);
  flex: 1;
}

.mobile-nav-section {
  margin-bottom: var(--s5);
}

.mobile-nav-section-label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold-muted);
  margin-bottom: var(--s2);
}

.mobile-nav a {
  display: block;
  font-family: var(--font-label);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  padding: var(--s1) 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.mobile-nav a:hover {
  color: var(--gold-bright);
  padding-left: var(--s2);
}

.mobile-nav a.nav-sale { color: var(--gold-bright); }

.mobile-menu-footer {
  padding: var(--s4);
  border-top: 1px solid var(--gold-border);
  flex-shrink: 0;
}

.mobile-social-links {
  display: flex;
  gap: var(--s2);
  margin-bottom: var(--s3);
}

.mobile-social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--t-fast), border-color var(--t-fast);
}

.mobile-social-links a:hover {
  color: var(--gold-bright);
  border-color: var(--gold-border-strong);
}

.mobile-social-links svg {
  width: 16px;
  height: 16px;
}

.mobile-currency {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0a0806;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: ken-burns 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 40%, rgba(180, 130, 40, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 70%, rgba(100, 80, 20, 0.06) 0%, transparent 50%),
    linear-gradient(160deg, #0f0d07 0%, #0a0806 40%, #080600 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.55) 80%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--s8) var(--s4);
  max-width: 960px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--gold-muted);
  margin-bottom: var(--s3);
  opacity: 0;
  animation: fade-up 0.8s 0.3s ease both;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--s3);
  opacity: 0;
  animation: fade-up 0.9s 0.5s ease both;
}

.hero-headline span {
  color: var(--gold-bright);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: var(--s6);
  opacity: 0;
  animation: fade-up 1s 0.7s ease both;
}

.hero-cta-group {
  display: flex;
  gap: var(--s3);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s 0.9s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  font-family: var(--font-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold-bright);
  color: var(--text-inverted);
  padding: 14px 36px;
  font-size: 14px;
}

.btn-primary:hover {
  background: #d4b15a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--gold-border-strong);
  padding: 13px 32px;
  font-size: 14px;
}

.btn-secondary:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green-deep);
  color: var(--text-primary);
  padding: 14px 40px;
  font-size: 15px;
}

.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(62, 86, 34, 0.5);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--s5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s1);
  opacity: 0;
  animation: fade-in 1s 1.5s ease both;
}

.hero-scroll-indicator span {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-muted), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes ken-burns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg img             { animation: none; }
  .hero-content > *        { animation: none; opacity: 1; }
  .hero-scroll-indicator   { animation: none; opacity: 1; }
}

/* ============================================================
   8. TRIPLE-S MARQUEE & STATS BAR
   ============================================================ */
.triple-s-marquee {
  background: var(--bg-header);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: var(--s3) 0;
  overflow: hidden;
}

.triple-s-marquee .ticker-content {
  animation-duration: 28s;
}

.triple-s-item {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 var(--s6);
  display: inline-flex;
  align-items: center;
  gap: var(--s5);
}

.triple-s-item strong {
  color: var(--gold-bright);
}

.triple-s-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-muted);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.stats-bar {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--gold-border);
  padding: var(--s3) var(--s4);
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: var(--font-label);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: 0.06em;
  color: var(--gold-bright);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   9. SECTION UTILITY
   ============================================================ */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
}

.section-header {
  text-align: center;
  margin-bottom: var(--s8);
}

.section-eyebrow {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold-muted);
  margin-bottom: var(--s2);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.1;
}

.section-title span {
  color: var(--gold-bright);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: var(--s3) auto 0;
  line-height: 1.7;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
[data-reveal][data-delay="5"] { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   10. NEW IN PRODUCT SECTION
   ============================================================ */
.new-in-section {
  padding: var(--s12) 0;
  background: var(--bg-base);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}

.product-card {
  background: var(--bg-elevated);
  border-radius: var(--r-base);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-surface);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-badge {
  position: absolute;
  top: var(--s2);
  left: var(--s2);
  background: var(--gold-bright);
  color: var(--text-inverted);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--r-sm);
}

.product-wishlist {
  position: absolute;
  top: var(--s2);
  right: var(--s2);
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color var(--t-fast), background var(--t-fast);
}

.product-wishlist:hover {
  color: var(--gold-bright);
  background: rgba(0,0,0,0.8);
}

.product-wishlist svg { width: 16px; height: 16px; }

.product-info {
  padding: var(--s3);
}

.product-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: var(--s1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-family: var(--font-label);
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.product-cta {
  display: block;
  width: 100%;
  padding: var(--s2);
  margin-top: var(--s2);
  background: transparent;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-sm);
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-align: center;
  transition: all var(--t-fast);
}

.product-cta:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--text-inverted);
}

.section-view-all {
  text-align: center;
  margin-top: var(--s8);
}

/* ============================================================
   11. COLLECTION CARDS
   ============================================================ */
.collections-section {
  padding: var(--s10) 0;
  background: var(--bg-base);
  border-top: 1px solid var(--gold-border);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}

.collection-card {
  position: relative;
  border-radius: var(--r-base);
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--bg-surface);
  cursor: pointer;
}

.collection-card:first-child {
  aspect-ratio: 2/3;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
  filter: brightness(0.72);
}

.collection-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.6);
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.collection-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s5) var(--s4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s2);
}

.collection-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-muted);
}

.collection-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1;
}

.collection-cta {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  margin-top: var(--s1);
  transition: gap var(--t-fast);
}

.collection-card:hover .collection-cta {
  gap: var(--s2);
}

.collection-cta svg {
  width: 14px;
  height: 14px;
}

/* ============================================================
   12. BRAND STATEMENT — "WITHOUT WASTE"
   ============================================================ */
.without-waste {
  padding: var(--s16) var(--s4);
  background: var(--bg-header);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
}

.without-waste-inner {
  max-width: 900px;
  margin: 0 auto;
}

.without-waste-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: var(--s5);
}

.without-waste-headline span {
  color: var(--gold-bright);
}

.without-waste-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 660px;
  margin: 0 auto var(--s6);
}

/* ============================================================
   13. GET WISER BANNER SECTION
   ============================================================ */
.get-wiser {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.get-wiser-bg {
  position: absolute;
  inset: 0;
}

.get-wiser-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.get-wiser-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}

.get-wiser-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--s10) var(--s4);
  max-width: 900px;
}

.get-wiser-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: var(--s4);
}

.get-wiser-headline span {
  color: var(--gold-bright);
}

.get-wiser-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto var(--s6);
  line-height: 1.7;
}

/* ============================================================
   14. CIRCULAR ECONOMY — TRIO OF SUSTAINABILITY FEATURES
   ============================================================ */
.sustainability-trio {
  background: var(--bg-base);
  padding: 0;
}

.trio-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trio-card {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-elevated);
}

.trio-card-bg {
  position: absolute;
  inset: 0;
}

.trio-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: transform 0.8s ease, filter 0.5s ease;
}

.trio-card:hover .trio-card-bg img {
  transform: scale(1.05);
  filter: brightness(0.45);
}

.trio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.trio-card-content {
  position: relative;
  z-index: 1;
  padding: var(--s5) var(--s4);
}

.trio-number {
  font-family: var(--font-label);
  font-size: 42px;
  color: var(--gold-border-strong);
  line-height: 1;
  margin-bottom: var(--s2);
}

.trio-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--s2);
  line-height: 1.1;
}

.trio-title span { color: var(--gold-bright); }

.trio-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 280px;
}

/* ============================================================
   15. "MORE TREES + STORE CREDIT" SPLIT SECTION
   ============================================================ */
.trees-credit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-header);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.split-panel {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.split-panel-bg {
  position: absolute;
  inset: 0;
}

.split-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.split-panel:hover .split-panel-bg img {
  transform: scale(1.04);
}

.split-panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.split-panel-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--s8) var(--s6);
}

/* ============================================================
   16. CIRCULAR ECONOMY STEPS
   ============================================================ */
.circular-steps {
  background: var(--bg-elevated);
  padding: var(--s12) var(--s4);
  border-bottom: 1px solid var(--gold-border);
}

.circular-steps-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
  margin-top: var(--s8);
}

.step-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
}

.step-icon-wrap {
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  flex-shrink: 0;
}

.step-icon-wrap img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.step-icon-wrap svg {
  width: 32px;
  height: 32px;
  color: var(--gold-bright);
}

.step-number {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold-muted);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.step-body {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   17. CERTIFICATIONS STRIP
   ============================================================ */
.certifications {
  background: var(--bg-header);
  border-bottom: 1px solid var(--gold-border);
  padding: var(--s6) var(--s4);
  overflow: hidden;
}

.certifications-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--s8);
  justify-content: center;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s1);
  opacity: 0.65;
  filter: grayscale(0.6);
  transition: opacity var(--t-base), filter var(--t-base);
}

.cert-item:hover {
  opacity: 1;
  filter: grayscale(0);
}

.cert-badge {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-base);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
}

.cert-badge svg {
  width: 36px;
  height: 36px;
  color: var(--gold-bright);
}

.cert-name {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   18. GREEN SUPPLY CHAIN BANNER
   ============================================================ */
.supply-chain-banner {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.supply-chain-banner-bg {
  position: absolute;
  inset: 0;
}

.supply-chain-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.supply-chain-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.supply-chain-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--s10) var(--s4);
  max-width: 700px;
}

.supply-chain-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--s3);
  line-height: 1.15;
}

.supply-chain-title span { color: var(--gold-bright); }

.supply-chain-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   19. KNOWLEDGE IS POWER — FOUNDER QUOTE
   ============================================================ */
.knowledge-quote {
  background: var(--bg-base);
  padding: var(--s16) var(--s4);
  text-align: center;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.knowledge-quote-inner {
  max-width: 960px;
  margin: 0 auto;
}

.quote-eyebrow {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold-muted);
  margin-bottom: var(--s4);
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: var(--s5);
}

.quote-text em {
  color: var(--gold-bright);
  font-style: normal;
}

.quote-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto var(--s6);
  line-height: 1.75;
}

/* ============================================================
   20. LIFESTYLE / COLLECTIONS FEATURE
   ============================================================ */
.lifestyle-feature {
  background: var(--bg-elevated);
  padding: var(--s12) var(--s4);
  border-bottom: 1px solid var(--gold-border);
}

.lifestyle-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: center;
}

.lifestyle-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-surface);
}

.lifestyle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.lifestyle-feature:hover .lifestyle-image img {
  transform: scale(1.03);
}

.lifestyle-text {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.lifestyle-tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.1;
}

.lifestyle-tagline span { color: var(--gold-bright); }

.lifestyle-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.lifestyle-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   21. BRAND CLOSING BANNER (ABOVE FOOTER)
   ============================================================ */
.brand-closing {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #080604;
}

.brand-closing-bg {
  position: absolute;
  inset: 0;
}

.brand-closing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.65);
}

.brand-closing-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(180, 130, 40, 0.1) 0%, transparent 60%),
    linear-gradient(160deg, #0f0d07 0%, #080604 100%);
}

.brand-closing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%);
}

.brand-closing-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--s10) var(--s4);
  max-width: 800px;
}

.brand-closing-eyebrow {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--gold-muted);
  margin-bottom: var(--s3);
}

.brand-closing-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: var(--s2);
}

.brand-closing-headline span { color: var(--gold-bright); }

.brand-closing-tagline {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  letter-spacing: 0.12em;
  margin-bottom: var(--s6);
}

/* ============================================================
   22. NEWSLETTER SECTION
   ============================================================ */
.newsletter {
  background: var(--bg-header);
  padding: var(--s12) var(--s4);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--s2);
}

.newsletter-title span { color: var(--gold-bright); }

.newsletter-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--s6);
}

.newsletter-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  justify-content: center;
  margin-bottom: var(--s5);
}

.newsletter-benefit {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-full);
  padding: 4px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.newsletter-benefit svg {
  width: 12px;
  height: 12px;
  color: var(--gold-bright);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.newsletter-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.form-input {
  background: var(--bg-elevated);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-base);
  padding: 12px var(--s2);
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.form-input:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px var(--gold-pale);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.newsletter-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 14px;
  background: var(--gold-bright);
  color: var(--text-inverted);
  font-family: var(--font-label);
  font-size: 15px;
  letter-spacing: 0.12em;
  border-radius: var(--r-base);
  transition: all var(--t-base);
  cursor: pointer;
  border: none;
  width: 100%;
}

.newsletter-submit:hover {
  background: #d4b15a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.newsletter-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: var(--s2);
  font-family: var(--font-body);
  font-size: 14px;
  min-height: 20px;
  text-align: center;
  transition: opacity var(--t-base);
}

.form-message.success { color: var(--green-light); }
.form-message.error   { color: #e06060; }

.newsletter-privacy {
  margin-top: var(--s3);
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.newsletter-privacy a {
  color: var(--gold-muted);
  text-decoration: underline;
}

/* ============================================================
   23. FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-footer);
  padding: var(--s12) var(--s4) var(--s8);
  border-top: 1px solid var(--gold-border-strong);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s8);
  margin-bottom: var(--s10);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.footer-logo {
  height: 44px;
  width: auto;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-tagline strong {
  color: var(--gold-muted);
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}

.footer-social a:hover {
  color: var(--gold-bright);
  border-color: var(--gold-border-strong);
  background: var(--gold-pale);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col-title {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold-muted);
  margin-bottom: var(--s3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: block;
}

.footer-links a:hover {
  color: var(--text-secondary);
  padding-left: 6px;
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--gold-border);
  margin-bottom: var(--s5);
}

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

.footer-legal {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer-legal-links a:hover {
  color: var(--text-secondary);
}

.footer-trust {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.trustpilot-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}

.trustpilot-stars {
  color: #00b67a;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ============================================================
   24. TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: var(--s5);
  right: var(--s4);
  background: var(--bg-elevated);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-base);
  padding: var(--s3) var(--s4);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  z-index: var(--z-toast);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  transform: translateY(80px);
  opacity: 0;
  transition: transform var(--t-slow), opacity var(--t-slow);
  max-width: 320px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
   25. RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .header-inner {
    padding: 0 var(--s3);
    height: 58px;
  }

  .main-nav {
    gap: 2px;
  }

  .main-nav a {
    font-size: 12px;
    padding: 4px 6px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s6);
  }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s3);
  }

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

  .trio-row {
    grid-template-columns: 1fr;
  }

  .trio-card {
    min-height: 320px;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: var(--s5);
  }

  .lifestyle-image {
    max-height: 520px;
  }
}

/* ============================================================
   26. RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    height: 52px;
    padding: 0 var(--s2);
  }

  .header-center {
    align-items: center;
  }

  .main-nav {
    display: none;
  }

  .logo-link {
    height: 32px;
  }

  .logo-white,
  .logo-gold {
    height: 30px;
  }

  .hero-content {
    padding: var(--s8) var(--s3);
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--s3);
  }

  .collections-grid {
    grid-template-columns: 1fr;
    gap: var(--s3);
  }

  .collection-card {
    aspect-ratio: 4/3;
  }

  .trees-credit-split {
    grid-template-columns: 1fr;
  }

  .split-panel {
    min-height: 380px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s5);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s2);
  }

  .newsletter-form-row {
    grid-template-columns: 1fr;
  }

  .mega-nav-wrapper {
    display: none;
  }

  .circular-steps {
    padding: var(--s8) var(--s3);
  }

  .without-waste {
    padding: var(--s10) var(--s3);
  }

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

  .certifications-inner {
    gap: var(--s5);
  }
}

/* ============================================================
   27. PRINT / REDUCED TRANSPARENCY
   ============================================================ */
@media (forced-colors: active) {
  .site-header { border-bottom: 1px solid ButtonText; }
}
