/* ============================================
   AFROTEX — Premium African Fabric Website
   Redesigned 2026 — Luxury Editorial Style
   ============================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Color Palette */
  --color-dark: #111111;
  --color-dark-2: #222222;
  --color-brown: #555555;
  --color-warm-brown: #777777;
  --color-gold: #C9922A;
  --color-gold-light: #DAA520;
  --color-golden: #948677;
  --color-cream: #F2EFE8;
  --color-cream-light: #FCFCFC;
  --color-white: #FFFFFF;
  --color-accent: #E0E0E0;
  --color-whatsapp: #25D366;
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  
  /* Spacing */
  --section-padding: clamp(60px, 8vw, 120px);
  --container-width: 1320px;
  --container-padding: 24px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-medium: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-cream-light);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

ul { list-style: none; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner { text-align: center; }

.preloader-logo-img {
  width: clamp(140px, 15vw, 180px);
  height: auto;
  margin-bottom: 24px;
  animation: preloaderReveal 0.6s 0.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: 32px;
  animation: prelogo 1s ease forwards;
}

@keyframes prelogo {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  background: var(--color-gold);
  border-radius: 2px;
  animation: prefill 1.8s ease forwards;
}

@keyframes prefill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--color-dark);
  color: var(--color-golden);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.announcement-scroll {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}

.announcement-scroll span { padding-right: 20px; }

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

/* ===== PERFECT NOOR-STYLE NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  min-height: 120px;
  display: flex;
  align-items: center;
  transition: min-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              backdrop-filter 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.3s ease;
}



/* Scrolled state for both pages */
.navbar.scrolled {
  background: rgba(255, 251, 243, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(26, 17, 8, 0.08);
  min-height: 68px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container-logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: opacity var(--transition-fast);
}

.logo-link:hover { opacity: 0.7; }

.header-logo-img {
  height: clamp(80px, 12vw, 110px);
  width: auto;
  display: block;
  transition: height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.45s ease;
}

body.homepage .header-logo-img {
  filter: invert(1) brightness(1.5);
}

.navbar.scrolled .header-logo-img {
  height: clamp(38px, 4.5vw, 48px);
  filter: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--color-dark);
  line-height: 1;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.nav-products-link {
  position: absolute;
  right: var(--container-padding);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brown);
  padding: 8px 16px;
  border: 1px solid rgba(90, 58, 30, 0.2);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-products-link:hover {
  background: var(--color-dark);
  color: var(--color-cream);
  border-color: var(--color-dark);
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== HERO — FULL BLEED WITH THUMBNAILS (QuickBasket Style) ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: var(--color-dark);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero-slide.exiting {
  opacity: 0;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.08);
  animation: none;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .hero-bg {
  transform: scale(1);
}

/* Dark gradient overlay - heavy on left for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(10,7,3,0.88) 0%, rgba(10,7,3,0.55) 50%, rgba(10,7,3,0.1) 100%),
    linear-gradient(to top, rgba(10,7,3,0.7) 0%, rgba(10,7,3,0) 40%);
  pointer-events: none;
}

/* ===== LEFT TEXT CONTENT ===== */
.hero-content {
  position: absolute;
  bottom: 160px;
  left: clamp(32px, 6vw, 100px);
  max-width: 520px;
  z-index: 10;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-line-accent {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-gold);
  flex-shrink: 0;
  transform-origin: left;
}

.hero-label-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-golden);
}

/* Content animation classes (added/removed by JS) */
.hero-content.animating .hero-label {
  animation: heroLabelIn 0.6s 0.1s both;
}
.hero-content.animating .hero-title {
  animation: heroTitleIn 0.7s 0.25s both;
}
.hero-content.animating .hero-desc {
  animation: heroDescIn 0.6s 0.45s both;
}
.hero-content.animating .hero-cta {
  animation: heroCtaIn 0.5s 0.65s both;
}

@keyframes heroLabelIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(50px) skewY(2deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0); }
}
@keyframes heroDescIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroCtaIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.05;
}

.hero-title em {
  font-style: italic;
  color: var(--color-golden);
  display: block;
}

.hero-desc {
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 380px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-scroll-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  animation: bounceDown 2s 2s ease infinite;
}

.hero-scroll-cta:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  animation: none;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

.hero-arrow-circle { line-height: 1; }

.btn-hero-shop {
  display: inline-flex;
  align-items: center;
  padding: 15px 36px;
  background: var(--color-gold);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all var(--transition-fast);
  box-shadow: 0 6px 24px rgba(201,146,42,0.35);
}

.btn-hero-shop:hover {
  background: white;
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,255,255,0.2);
}

/* ===== THUMBNAIL STRIP (right side) ===== */
.hero-thumbs {
  position: absolute;
  right: clamp(20px, 3vw, 48px);
  bottom: 120px;
  display: flex;
  gap: 14px;
  z-index: 10;
  align-items: flex-end;
}

.hero-thumb {
  width: 108px;
  height: 148px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(0) scale(0.94);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.hero-thumb:hover {
  transform: translateY(-8px) scale(0.97);
  border-color: rgba(255,255,255,0.4);
}

.hero-thumb.active {
  border-color: var(--color-gold);
  transform: translateY(-14px) scale(1);
  box-shadow: 0 16px 40px rgba(201,146,42,0.3);
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.hero-thumb:hover img { transform: scale(1.06); }

.hero-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,7,3,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-thumb:hover .hero-thumb-overlay,
.hero-thumb.active .hero-thumb-overlay { opacity: 1; }

.hero-thumb-overlay span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* ===== BOTTOM NAVIGATION BAR ===== */
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 0 clamp(32px, 6vw, 100px);
  height: 80px;
  background: linear-gradient(to top, rgba(10,7,3,0.6) 0%, transparent 100%);
  gap: 24px;
}

.hero-bottom-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.hero-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(6px);
}

.hero-nav-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.08);
}

.hero-progress-track {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}

.hero-progress-fill {
  height: 100%;
  background: var(--color-gold);
  border-radius: 2px;
  width: 33.33%;
  transition: width 0.5s ease;
}

.hero-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hero-counter-current {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: white;
  line-height: 1;
  transition: all 0.4s ease;
}

.hero-counter-sep {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.2);
  display: block;
  transform: rotate(20deg);
}

.hero-counter-total {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 20px rgba(201, 146, 42, 0.3);
}

.btn-primary:hover {
  background: var(--color-cream);
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 17, 8, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 44px;
  border: 1.5px solid var(--color-brown);
  color: var(--color-brown);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.btn-outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-cream);
  border-color: var(--color-dark);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: var(--color-golden);
  color: var(--color-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.btn-gold:hover {
  background: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

/* Hero navigation */
.hero-nav {
  position: absolute;
  bottom: 40px;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

/* Adjust nav to be on the image side (right half) */
.hero-nav {
  right: 25%;
  left: auto;
  transform: none;
}

.hero-dot {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  transition: background var(--transition-fast), width var(--transition-fast);
}

.hero-dot.active {
  background: var(--color-golden);
  width: 48px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.hero-arrow:hover {
  background: var(--color-gold);
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow.prev { left: 50%; margin-left: 12px; }
.hero-arrow.next { right: 16px; }

/* ===== BRAND STRIP ===== */
.brand-strip {
  background: var(--color-cream);
  border-top: 1px solid rgba(90, 58, 30, 0.08);
  border-bottom: 1px solid rgba(90, 58, 30, 0.08);
  padding: 18px 0;
  overflow: hidden;
}

.brand-marquee {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brown);
}

.brand-marquee .dot { color: var(--color-gold); }

/* ===== SCROLL REVEAL ===== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up    { transform: translateY(50px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: none;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '——';
  color: rgba(201, 146, 42, 0.35);
  margin: 0 12px;
}

.light-tag { color: var(--color-golden); }
.light-tag::before,
.light-tag::after { color: rgba(240, 192, 96, 0.35); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--color-gold);
}

.light-title { color: var(--color-white); }
.light-title em { color: var(--color-golden); }

.section-desc {
  font-size: 1rem;
  color: rgba(26, 17, 8, 0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== WAX HOLLAND COLLECTION ===== */
.collection-section {
  padding: var(--section-padding) 0;
  background: var(--color-cream-light);
}

.collection-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-image-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26, 17, 8, 0.18);
  aspect-ratio: 4/5;
}

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

.feature-image-wrap:hover .feature-img { transform: scale(1.04); }

.feature-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--color-gold);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.collection-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.collection-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--color-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.collection-text {
  color: rgba(26, 17, 8, 0.65);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 0.96rem;
}

.collection-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(26, 17, 8, 0.75);
}

.feat-icon { color: var(--color-gold); font-size: 10px; }

/* ===== HOME PRODUCTS GRID ===== */
.products-section {
  padding: var(--section-padding) 0;
  background: var(--color-cream);
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.home-product-card {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 17, 8, 0.06);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.home-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26, 17, 8, 0.14);
}

.home-product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.home-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.home-product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-dark);
  color: var(--color-golden);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}

.new-badge { background: var(--color-accent); color: white; }
.premium-badge { background: var(--color-gold); color: white; }

.home-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 17, 8, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.home-product-card:hover .home-product-overlay { opacity: 1; }

.whatsapp-order-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--color-whatsapp);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 50px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: none;
  cursor: pointer;
}

.whatsapp-order-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.home-product-info {
  padding: 20px 20px 24px;
}

.home-product-category {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.home-product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.home-whatsapp-btn {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  border: 1.5px solid var(--color-whatsapp);
  color: var(--color-whatsapp);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.home-whatsapp-btn:hover {
  background: var(--color-whatsapp);
  color: white;
}

.view-all-wrap {
  text-align: center;
}

/* ===== SUPER WAX SECTION ===== */
.super-wax-section {
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.super-wax-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.super-wax-image-col {
  position: relative;
  overflow: hidden;
}

.super-wax-img-stack {
  position: relative;
  height: 100%;
  min-height: 700px;
}

.swax-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.swax-accent-card {
  position: absolute;
  bottom: 48px;
  right: -24px;
  background: var(--color-gold);
  padding: 24px 32px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  z-index: 2;
}

.accent-card-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.accent-card-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.super-wax-content {
  padding: clamp(60px, 6vw, 100px) clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.super-wax-desc {
  font-size: 1.1rem;
  color: var(--color-dark);
  opacity: 0.8;
  letter-spacing: 0.04em;
  text-align: left;
}

/* ===== FOOTER — DATAWIZZ STYLE ===== */
.footer {
  background: #0d0b09;
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

/* Warm gold radial glow (replaces purple from reference) */
.footer-glow {
  position: absolute;
  bottom: 10%;
  right: 20%;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(201,146,42,0.12) 0%, rgba(139,94,60,0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* TOP: CTA Area */
.footer-cta-area {
  position: relative;
  z-index: 1;
  padding: 72px clamp(32px, 6vw, 100px) 40px;
  max-width: 700px;
}

.footer-cta-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.25;
  color: white;
}

.footer-cta-heading em {
  font-style: italic;
  color: var(--color-golden);
}

/* MIDDLE: Contact + Nav Bar */
.footer-mid-bar {
  position: relative;
  z-index: 1;
  padding: 32px clamp(32px, 6vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-mid-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-golden);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.footer-wa-link:hover { color: var(--color-whatsapp); }

.footer-mid-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-mid-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}

.footer-mid-nav a:hover { color: white; }

/* WORDMARK AREA */
.footer-wordmark-area {
  position: relative;
  z-index: 1;
  padding: 0 0 0;
  overflow: hidden;
  line-height: 0.85;
}

.footer-logo-massive-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.footer-wordmark {
  font-family: var(--font-heading);
  font-size: clamp(14vw, 18vw, 22vw);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: white;
  line-height: 0.85;
  user-select: none;
  padding-left: clamp(16px, 3vw, 48px);
}

/* BOTTOM BAR */
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px clamp(32px, 6vw, 100px);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
}

.footer-bottom-socials {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom-socials a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  transition: color var(--transition-fast);
}

.footer-bottom-socials a:hover { color: white; }



/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--color-dark);
  color: var(--color-golden);
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  box-shadow: 0 4px 20px rgba(26,17,8,0.3);
  border: 1px solid rgba(255,255,255,0.1);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-gold);
  color: white;
}

/* =========================================
   PRODUCTS PAGE STYLES
   ========================================= */

.products-page-header {
  background: var(--color-dark);
  padding: 80px var(--container-padding) 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products-page-header::before {
  content: 'COLLECTION';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(60px, 12vw, 120px);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
}

.products-page-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: white;
  margin-bottom: 12px;
  position: relative;
}

.products-page-title em {
  font-style: italic;
  color: var(--color-golden);
}

.products-page-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.products-back-nav {
  position: absolute;
  top: 32px;
  left: var(--container-padding);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

.products-back-nav:hover { color: var(--color-golden); }

/* Products Filter */
.products-filter-bar {
  background: var(--color-cream);
  padding: 28px var(--container-padding);
  border-bottom: 1px solid rgba(90, 58, 30, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.products-filter-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 4px;
}

.filter-tab {
  padding: 9px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brown);
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: transparent;
}

.filter-tab:hover {
  color: var(--color-dark);
  border-color: rgba(90,58,30,0.2);
}

.filter-tab.active {
  background: var(--color-dark);
  color: var(--color-golden);
  border-color: var(--color-dark);
}

.filter-count {
  font-size: 12px;
  color: rgba(26,17,8,0.45);
  letter-spacing: 0.06em;
}

/* Products Main Grid */
.products-page-main {
  padding: 60px 0 100px;
  background: var(--color-cream-light);
}

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Product Section Divider */
.products-section-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 40px 0 16px;
}

.products-section-divider h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--color-dark);
  white-space: nowrap;
}

.products-section-divider h2 em {
  font-style: italic;
  color: var(--color-gold);
}

.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(90, 58, 30, 0.15);
}

/* Product page card (same as home but slightly different) */
.product-page-card {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(26, 17, 8, 0.05);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.product-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(26, 17, 8, 0.12);
}

.product-page-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.product-page-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.product-page-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-dark);
  color: var(--color-golden);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.product-page-badge.superwax { background: var(--color-gold); color: white; }

.product-page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 17, 8, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.product-page-card:hover .product-page-overlay { opacity: 1; }

.product-page-info {
  padding: 18px 18px 20px;
}

.product-page-category {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 5px;
}

.product-page-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-page-whatsapp-btn {
  display: block;
  width: 100%;
  padding: 9px 14px;
  background: transparent;
  border: 1.5px solid var(--color-whatsapp);
  color: var(--color-whatsapp);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.product-page-whatsapp-btn:hover {
  background: var(--color-whatsapp);
  color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .home-products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-page-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-thumbs { gap: 10px; }
  .hero-thumb { width: 88px; height: 120px; }
}

@media (max-width: 900px) {
  /* Hero thumbnails — hide last one, shrink others */
  .hero-thumbs { bottom: 100px; }
  .hero-thumb:last-child { display: none; }
  .hero-thumb { width: 80px; height: 110px; }
  .hero-content { bottom: 130px; }

  .collection-layout,
  .about-grid,
  .super-wax-inner {
    grid-template-columns: 1fr;
  }
  .super-wax-section .super-wax-image-col { min-height: 400px; }
  .swax-accent-card { right: 16px; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-large { height: 400px; }
  .whatsapp-cta-inner { grid-template-columns: 1fr; }
  .wa-feature-card { display: none; }

  /* Footer */
  .footer-mid-bar { flex-direction: column; align-items: flex-start; }
  .footer-mid-nav { gap: 16px; }
  .footer-wordmark { font-size: clamp(18vw, 22vw, 26vw); }
}

@media (max-width: 768px) {
  .home-products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .products-page-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  /* Hero on mobile — hide thumbnails, simplify */
  .hero-thumbs { display: none; }
  .hero-content { left: 24px; right: 24px; max-width: 100%; bottom: 100px; }
  .hero-bottom-bar { padding: 0 24px; }
  .collection-layout { gap: 40px; }
  .about-grid { gap: 40px; }
  .filter-tabs { flex-wrap: wrap; }
  /* Footer */
  .footer-cta-area { padding: 48px 24px 28px; }
  .footer-mid-bar { padding: 24px; }
  .footer-bottom { padding: 18px 24px; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-socials { justify-content: center; }
}

@media (max-width: 480px) {
  .home-products-grid { grid-template-columns: 1fr; }
  .products-page-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .whatsapp-number-form { flex-direction: column; }
  .hero-title { font-size: 2.2rem; }
  .footer-wordmark { font-size: 24vw; }
}



/* ===== NEW PREMIUM LIGHT THEME COMPONENTS ===== */

/* --- PREMIUM CTA --- */
.premium-cta-section {
  padding: 100px 0;
  background: var(--color-cream-light); /* #FCFCFC */
  color: var(--color-dark);
  text-align: center;
}

.premium-cta-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.premium-cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.premium-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--color-dark);
}

.premium-cta-desc {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-dark);
  color: white;
  padding: 18px 40px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.btn-cta-whatsapp:hover {
  background: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.premium-cta-image {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  border-radius: 4px;
}

.premium-cta-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.premium-cta-image:hover img {
  transform: scale(1.03);
}

/* --- EDITORIAL FOOTER --- */
.editorial-footer {
  background: var(--color-cream); /* #F2EFE8 */
  color: var(--color-dark);
  padding: 80px 0 40px;
  border-top: 1px solid var(--color-accent);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.brand-col .footer-desc {
  opacity: 0.7;
  max-width: 300px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.5;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a, .footer-links li {
  color: var(--color-dark);
  font-size: 1rem;
  opacity: 0.85;
  transition: opacity 0.3s;
  text-decoration: none;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--color-accent);
  padding-top: 40px;
}

.footer-massive-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-logo-svg {
  width: 100%;
  max-width: 1100px;
  height: auto;
  opacity: 0.9;
}

.footer-copyright {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  color: var(--color-dark);
  text-decoration: none;
}

.footer-socials a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-copyright {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

/* ===================================================
   PREMIUM REDESIGN — Full Section Styles
   =================================================== */

/* --- PRELOADER LIGHT MODE --- */
#preloader.preloader-light {
  background: #ffffff !important;
}
.preloader-logo-dark {
  filter: none;
}
.preloader-bar-light {
  background: rgba(0,0,0,0.08) !important;
}
.preloader-fill-dark {
  background: var(--color-dark) !important;
}

/* --- SUPER WAX REDESIGN — DARK EDITORIAL SPLIT --- */
.super-wax-redesign {
  background: #111111;
  color: white;
  overflow: hidden;
}

.swr-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.swr-text-col {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.swr-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.swr-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.swr-heading {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: white;
  margin-bottom: 28px;
}
.swr-heading em {
  font-style: italic;
  color: var(--color-golden);
}

.swr-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  margin-bottom: 40px;
}

.swr-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.swr-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.swr-dot {
  color: var(--color-gold);
  font-size: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}

.swr-feat div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.swr-feat strong {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}
.swr-feat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.swr-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: var(--color-gold);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all var(--transition-fast);
  width: fit-content;
  text-decoration: none;
}
.swr-btn:hover {
  background: white;
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}

.swr-image-col {
  position: relative;
  overflow: hidden;
}

.swr-img-frame {
  width: 100%;
  height: 100%;
  position: relative;
}

.swr-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s ease;
}
.swr-img-frame:hover .swr-main-img {
  transform: scale(1.03);
}

.swr-badge-float {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--color-gold);
  color: white;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.swr-badge-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}
.swr-badge-txt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .swr-inner { grid-template-columns: 1fr; }
  .swr-image-col { min-height: 500px; }
  .swr-badge-float { left: 20px; bottom: 20px; }
}


/* --- EDITORIAL TRIO — FEATURED --- */
.trio-editorial-section {
  background: var(--color-cream-light);
  padding: var(--section-padding) 0;
  padding-bottom: 0;
}

.trio-header {
  text-align: center;
  padding: 0 var(--container-padding) 60px;
}

.trio-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.trio-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--color-dark);
  line-height: 1.1;
}
.trio-main-heading em {
  font-style: italic;
  color: var(--color-gold);
}

.trio-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 0;
  align-items: end;
}

.trio-card {
  position: relative;
  overflow: hidden;
}
.trio-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.trio-card-tall .trio-card-img-wrap {
  aspect-ratio: 3/4.8;
}

.trio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.trio-card:hover .trio-card-img {
  transform: scale(1.05);
}

.trio-card-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}
.trio-card:hover .trio-card-inner {
  transform: translateY(0);
  opacity: 1;
}

.trio-card-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.trio-cat-gold { color: var(--color-golden) !important; }

.trio-card-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  color: white;
  margin-bottom: 16px;
  line-height: 1.1;
}

.trio-card-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-golden);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}
.trio-card-link:hover { gap: 12px; }

.trio-card-featured-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-gold);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  z-index: 5;
}

.trio-view-all {
  text-align: center;
  padding: 60px var(--container-padding);
}

@media (max-width: 768px) {
  .trio-row { grid-template-columns: 1fr; }
  .trio-card-img-wrap { aspect-ratio: 4/3; }
  .trio-card-inner { transform: translateY(0); opacity: 1; }
}


/* --- ABOUT — CINEMATIC FULL-BLEED --- */
.about-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-cin-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.about-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(20%);
}
.about-cin-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,7,3,0.92) 0%, rgba(10,7,3,0.7) 55%, rgba(10,7,3,0.2) 100%),
    linear-gradient(to top, rgba(10,7,3,0.6) 0%, transparent 50%);
}

.about-cin-content {
  position: relative;
  z-index: 5;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.about-cin-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-golden);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-cin-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--color-gold);
  display: block;
}

.about-cin-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: white;
  margin-bottom: 32px;
}
.about-cin-heading em {
  font-style: italic;
  color: var(--color-golden);
}

.about-cin-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  max-width: 500px;
}

.about-cin-signature {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.about-cin-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
}

.about-stat {
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.3s ease;
}
.about-stat:hover {
  background: rgba(255,255,255,0.03);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--color-golden);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
  .about-cin-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* --- CTA DARK BAND --- */
.cta-dark-band {
  background: #0d0b09;
  position: relative;
  overflow: hidden;
}

.cta-dark-band::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,146,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 130px) clamp(24px, 6vw, 100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-band-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-band-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--color-gold);
  display: block;
}

.cta-band-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: white;
}
.cta-band-heading em {
  color: var(--color-golden);
  font-style: italic;
}

.cta-band-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

.cta-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 18px 36px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 10px 30px rgba(37,211,102,0.25);
  margin-bottom: 28px;
}
.cta-wa-btn:hover {
  background: #1fc857;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.4);
}

.cta-benefits-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.cta-benefits-row span { 
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 900px) {
  .cta-band-inner { grid-template-columns: 1fr; gap: 40px; }
}


/* --- EDITORIAL FOOTER --- */
.editorial-footer {
  background: var(--color-cream);
  color: var(--color-dark);
}

.footer-top-strip {
  background: var(--color-dark);
  color: white;
  padding: 14px clamp(24px, 6vw, 100px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-strip-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #25D366;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-wa-link:hover { opacity: 0.8; }

.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 0 60px;
}

.footer-brand-logo {
  width: clamp(100px, 12vw, 160px);
  height: auto;
  margin-bottom: 20px;
  display: block;
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(17,17,17,0.65);
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  color: var(--color-dark);
  transition: all var(--transition-fast);
}
.footer-socials a:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: white;
}

.footer-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.45);
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links li, .footer-links a {
  font-size: 0.95rem;
  color: var(--color-dark);
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid var(--color-accent);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 32px;
}

.footer-massive-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.footer-logo-svg {
  width: 100%;
  max-width: 1100px;
  height: auto;
  opacity: 0.85;
}

.footer-copyright-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.4);
  padding: 0 clamp(24px, 6vw, 100px);
}

.footer-tag-line { opacity: 0.6; }

@media (max-width: 900px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-top-strip { flex-direction: column; gap: 8px; text-align: center; }
  .footer-copyright-row { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 600px) {
  .footer-main-grid { grid-template-columns: 1fr; gap: 24px; }
}


/* ========================================
   FINAL NAVBAR OVERRIDES — clean up
   ======================================== */

/* The hero section needs top padding to account for fixed navbar */
.hero {
  padding-top: 0 !important;
}

/* Products page: navbar always shows beige background immediately */
body:not(.homepage) .navbar {
  background: rgba(255, 251, 243, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  min-height: 74px;
}
body:not(.homepage) #header-logo {
  height: 48px !important;
  filter: none !important;
}


/* End of stylesheet */
