/* ============================================================
   LUMIERE SKINCARE — Main CSS
   Design: Clean Luxury Minimalist, Mobile-First
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0D0D0D;
  --charcoal:   #1C1C1E;
  --stone:      #3A3530;
  --warm-gray:  #8A837B;
  --sand:       #C4B49A;
  --cream:      #F5F0E8;
  --cream-light:#FAF8F4;
  --white:      #FFFFFF;

  --gold:       #B8965A;
  --gold-light: #D4AF78;
  --gold-pale:  #F2E8D5;
  --gold-deep:  #8C6D3F;

  --red:        #C0392B;
  --green:      #2D6A4F;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius-sm:  2px;
  --radius-md:  4px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream-light);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-sans); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--charcoal);
  padding: 9px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar span {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  text-transform: uppercase;
}
.topbar span strong {
  color: var(--sand);
  font-weight: 500;
}

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 200;
}
nav .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  cursor: pointer;
  height: 72px;
  transition: color 0.2s;
}
.nav-item:hover { color: var(--gold); }
.nav-item svg {
  width: 10px; height: 10px;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform 0.25s;
}
.nav-item:hover svg { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 2px solid var(--gold);
  min-width: 180px;
  padding: 8px 0;
  z-index: 300;
  box-shadow: var(--shadow-md);
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--stone);
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: var(--cream); color: var(--gold); }

/* Brand */
.brand {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--charcoal);
  text-transform: uppercase;
  line-height: 1;
}
.brand span {
  display: block;
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.45em;
  font-weight: 300;
  color: var(--warm-gray);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--cream-light);
  padding: 0 14px;
  height: 36px;
  width: 200px;
  transition: border-color 0.2s, width 0.3s;
}
.search-wrap:focus-within {
  border-color: var(--gold);
  width: 240px;
  background: var(--white);
}
.search-wrap input {
  background: none;
  border: none;
  outline: none;
  font-size: 12px;
  font-family: var(--font-sans);
  color: var(--charcoal);
  width: 100%;
  letter-spacing: 0.03em;
}
.search-wrap input::placeholder { color: var(--warm-gray); }
.search-wrap svg {
  width: 14px; height: 14px;
  stroke: var(--warm-gray); fill: none; stroke-width: 2;
  flex-shrink: 0;
}

.icon-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
  color: var(--stone);
  border-radius: 50%;
}
.icon-btn:hover { background: var(--cream); }
.icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }

.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
}

/* Dropdown account */
.dropdown-right { left: auto; right: 0; }

/* Mobile nav toggle */
.nav-mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 4px; color: var(--stone);
}
.nav-mobile-toggle svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  overflow-y: auto;
  padding: 0 0 40px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.77,0,0.18,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 8px;
}
.mobile-menu-brand {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--charcoal);
}
.mobile-menu-close {
  background: none; border: none; cursor: pointer;
  color: var(--warm-gray); padding: 4px;
}
.mobile-menu-close svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
.mobile-menu a {
  display: block;
  padding: 14px 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: color 0.15s, background 0.15s;
}
.mobile-menu a:hover { color: var(--gold); background: var(--cream-light); }
.mobile-menu .mobile-sub { padding-left: 40px; font-size: 12px; font-weight: 400; color: var(--warm-gray); }
.mobile-menu-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.mobile-menu-overlay.open { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-slider { position: absolute; inset: 0; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0;
  transition: opacity 0s, transform 0.9s cubic-bezier(0.77,0,0.18,1);
  will-change: transform, opacity;
}
.hero-bg.active { opacity: 1; }
.hero-bg.entering-from-right { transform: translateX(100%); opacity: 1; z-index: 2; }
.hero-bg.entering-from-left  { transform: translateX(-100%); opacity: 1; z-index: 2; }
.hero-bg.entered             { transform: translateX(0); opacity: 1; z-index: 2; }
.hero-bg.leaving-to-left     { transform: translateX(-100%); opacity: 1; z-index: 1; transition: transform 0.9s cubic-bezier(0.77,0,0.18,1); }
.hero-bg.leaving-to-right    { transform: translateX(100%); opacity: 1; z-index: 1; transition: transform 0.9s cubic-bezier(0.77,0,0.18,1); }

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 600px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content { max-width: 520px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(184,150,90,0.12);
  border: 1px solid rgba(184,150,90,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--stone);
  font-weight: 400;
}
.perk svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid var(--charcoal);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.btn-primary svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Hero certs */
.hero-certs {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cert-badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(184,150,90,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.cert-badge svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; margin-bottom: 3px; }

/* Hero nav */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.05); }
.hero-arrow svg { width: 16px; height: 16px; stroke: var(--charcoal); fill: none; stroke-width: 2; }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 6px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 3px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.see-all {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  white-space: nowrap;
}
.see-all:hover { gap: 10px; }
.see-all svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(0,0,0,0.06); }

.product-card {
  background: var(--white);
  transition: box-shadow 0.25s;
  overflow: hidden;
}
.product-card:hover { box-shadow: var(--shadow-md); z-index: 1; position: relative; }

.card-image {
  background: var(--cream-light);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.product-card:hover .card-image img { transform: scale(1.06); }

.card-image-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.card-image-placeholder span { font-size: 12px; color: var(--warm-gray); text-align: center; padding: 16px; line-height: 1.5; }

.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.badge-gold  { background: var(--gold); color: var(--white); }
.badge-dark  { background: var(--charcoal); color: var(--white); }
.badge-red   { background: #C0392B; color: var(--white); }
.badge-green { background: var(--green); color: var(--white); }

/* Wishlist overlay */
.card-wishlist {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}
.product-card:hover .card-wishlist { opacity: 1; }
.card-wishlist svg { width: 14px; height: 14px; stroke: var(--warm-gray); fill: none; stroke-width: 2; }
.card-wishlist:hover svg { stroke: #C0392B; }

.card-body { padding: 20px 16px; }
.card-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 3px;
  line-height: 1.3;
  text-decoration: none;
  display: block;
  transition: color 0.15s;
}
.card-name:hover { color: var(--gold); }
.card-sub { font-size: 11px; color: var(--warm-gray); margin-bottom: 12px; line-height: 1.4; letter-spacing: 0.02em; }

.card-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.price-now { font-family: var(--font-serif); font-size: 17px; font-weight: 500; color: var(--charcoal); }
.price-old { font-size: 12px; color: var(--warm-gray); text-decoration: line-through; }

.card-stars { display: flex; align-items: center; gap: 4px; margin-bottom: 3px; }
.stars { color: var(--gold); font-size: 11px; letter-spacing: 1px; }
.rating-count { font-size: 11px; color: var(--warm-gray); }
.card-sold { font-size: 11px; color: var(--warm-gray); margin-bottom: 12px; }

.card-certs { display: flex; gap: 10px; margin-bottom: 14px; }
.cert-tag { display: flex; align-items: center; gap: 4px; font-size: 10px; color: var(--warm-gray); letter-spacing: 0.04em; }
.cert-tag svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.btn-cart {
  width: 100%;
  background: var(--charcoal);
  color: var(--white);
  border: 2px solid var(--charcoal);
  padding: 11px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
}
.btn-cart:hover { background: var(--gold); border-color: var(--gold); }
.btn-cart svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ============================================================
   WHY US
   ============================================================ */
.why-section {
  background: var(--charcoal);
  padding: 80px 0;
}
.why-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
}
.why-sub {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  text-align: center;
  margin-bottom: 52px;
  font-weight: 300;
}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.why-item {
  background: var(--charcoal);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.2s;
}
.why-item:hover { background: #242421; }
.why-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(184,150,90,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: border-color 0.2s;
}
.why-item:hover .why-icon { border-color: var(--gold); }
.why-icon svg { width: 20px; height: 20px; stroke: var(--sand); fill: none; stroke-width: 1.5; }
.why-item h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.why-item p { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.7; font-weight: 300; }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 56px 0;
}
.promo-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.promo-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.promo-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.2;
}
.promo-text p { font-size: 14px; color: var(--warm-gray); }
.promo-cta { display: flex; gap: 14px; align-items: center; flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
  background: none;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { padding: 80px 0; background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(0,0,0,0.06); margin-top: 40px; }
.testi-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.2s;
}
.testi-card:hover { background: var(--cream-light); }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.testi-text {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 400;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-deep);
  flex-shrink: 0;
  border: 1px solid rgba(184,150,90,0.2);
}
.author-name { font-size: 13px; font-weight: 500; color: var(--charcoal); }
.author-tag { font-size: 11px; color: var(--warm-gray); letter-spacing: 0.03em; }

/* ============================================================
   FOOTER — Redesign
   ============================================================ */
footer {
  background: var(--charcoal);
  padding: 0;
}

/* Top strip */
.footer-top {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}
.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand-block {}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 8px;
  letter-spacing: 0.45em;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,150,90,0.08);
}
.social-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* Main grid */
.footer-main {
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-col-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a:hover::before {
  content: '';
  width: 4px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* Certifications strip */
.footer-certs {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}
.cert-item-footer {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 12px;
}
.cert-item-footer svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* Bottom */
.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.footer-bottom a {
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-bottom a:hover { color: var(--sand); }
.footer-bottom-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-bottom-links a { font-size: 11px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: scale(1); }
}

.anim-fade-up  { opacity: 0; animation: fadeUp  0.9s cubic-bezier(0.22,1,0.36,1) forwards; }
.anim-fade-in  { opacity: 0; animation: fadeIn  1s ease forwards; }
.anim-scale-in { opacity: 0; animation: scaleIn 1.2s cubic-bezier(0.22,1,0.36,1) forwards; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }
.delay-6 { animation-delay: 0.85s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  nav .container { grid-template-columns: auto 1fr auto; }
  .nav-left { display: none; }
  .nav-mobile-toggle { display: flex; }
  .search-wrap { display: none; }
  .mobile-menu { display: block; transform: translateX(-100%); }
  .mobile-menu.open { transform: translateX(0); }
  .brand { font-size: 18px; text-align: left; margin: 0 auto; }

  /* Hero */
  .hero .container { min-height: 480px; padding-top: 40px; padding-bottom: 40px; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-certs { display: none; }
  .hero-arrow-prev { left: 10px; }
  .hero-arrow-next { right: 10px; }
  .hero-perks { gap: 12px; }
  .perk { font-size: 11px; }
  .btn-primary { padding: 13px 24px; font-size: 10px; }

  /* Sections */
  .section { padding: 56px 0; }
  .section-header { flex-direction: column; gap: 12px; align-items: flex-start; }

  /* Products */
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .card-image { aspect-ratio: 1/1; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item { padding: 28px 16px; }

  /* Promo */
  .promo-banner .container { flex-direction: column; text-align: center; gap: 24px; }
  .promo-cta { justify-content: center; }

  /* Testi */
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 28px 20px; }

  /* Footer */
  .footer-top-inner  { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom     { flex-direction: column; align-items: flex-start; gap: 10px; }
  .topbar .container { flex-direction: column; gap: 4px; }
  .topbar span       { font-size: 10px; }
}

@media (max-width: 480px) {
  .container         { padding: 0 16px; }
  .product-grid      { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .hero-title        { font-size: 28px; }
  .why-grid          { grid-template-columns: 1fr; }
  .section           { padding: 44px 0; }
  .footer-grid       { grid-template-columns: 1fr; gap: 24px; }
  .footer-certs      { gap: 8px; }
  .footer-top        { padding: 32px 0; }
  .footer-main       { padding: 32px 0; }
  .footer-bottom-links { gap: 12px; }
}