@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;0,900;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Rajdhani:wght@500;600;700&display=swap');

/* ==========================================================================
   CAR STREET KANPUR — ROYAL LUXURY SIGNATURE THEME
   Inspired by Rolls-Royce, BMW & Ultra-Luxury Automotive Dealerships
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ROYAL COLOR SYSTEM & DESIGN TOKENS
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   1. SPORT PERFORMANCE LUXURY — CRIMSON CARMINE & JET CARBON
   Inspired by Porsche, AMG & High-Performance Automotive Studios
   -------------------------------------------------------------------------- */
:root {
  /* Backgrounds — Crisp Studio Platinum & Pristine Ceramic White */
  --bg-deepest:     #F8FAFC;   /* Main page ultra-clean studio platinum */
  --bg-dark:        #F1F5F9;   /* Section alternate soft titanium grey */
  --bg-card:        #FFFFFF;   /* Card surface - pristine ceramic white */
  --bg-glass:       rgba(255, 255, 255, 0.90); /* Luminous Glassmorphism */
  --bg-overlay:     rgba(15, 23, 42, 0.88);  /* Hero overlay */

  /* Signature Automotive Crimson Palette (Carmine Red / Rosso Corsa) */
  --crimson-bright: #F43F5E;   /* Radiant high-energy rose red */
  --crimson-vivid:  #E11D48;   /* Signature Porsche Carmine Red */
  --crimson-deep:   #BE123C;   /* Deep crimson ruby */
  --crimson-dark:   #9F1239;   /* Deep burgundy shadow */
  --crimson-gradient: linear-gradient(135deg, #F43F5E 0%, #E11D48 50%, #BE123C 100%);
  --crimson-sheen:    linear-gradient(135deg, #FDA4AF 0%, #F43F5E 50%, #E11D48 100%);

  /* Jet Carbon & Titanium Contrast */
  --carbon-dark:    #0F172A;   /* Deepest Jet Carbon Slate */
  --carbon-surface: #1E293B;   /* Titanium Slate */
  --carbon-pill:    linear-gradient(135deg, #0F172A 0%, #1E293B 100%);

  /* Palette compatibility mappings */
  --gold-bright:    #E11D48;   /* Primary accent - Vivid Carmine Red */
  --gold-royal:     #BE123C;   /* Deep ruby accent */
  --gold-muted:     #9F1239;   /* Deep red tint */
  --gold-gradient:  linear-gradient(135deg, #F43F5E 0%, #E11D48 50%, #BE123C 100%);
  --gold-sheen:     linear-gradient(135deg, #FDA4AF 0%, #F43F5E 50%, #E11D48 100%);

  /* Text Colors — High Contrast Jet Carbon Slate & Crisp Graphite */
  --text-hero:      #0F172A;   /* Hero H1 */
  --text-heading:   #0F172A;   /* Crisp Jet Carbon for all H2, H3 */
  --text-body:      #334155;   /* Modern readable executive graphite */
  --text-muted:     #64748B;   /* Labels, small details, specs */
  --text-gold:      #E11D48;   /* Highlighted vibrant red text */

  /* Aliases for cross-page compatibility */
  --bg:             var(--bg-deepest);
  --bg-deep:        #EDF2F7;
  --bg-card-solid:  #FFFFFF;
  --bg-card-hover:  #FFFFFF;
  --accent:         var(--crimson-vivid);
  --accent-bright:  var(--crimson-bright);
  --accent-dark:    var(--crimson-deep);
  --accent-glow:    rgba(225, 29, 72, 0.35);
  --accent-soft:    rgba(225, 29, 72, 0.08);
  --warm:           var(--crimson-vivid);
  --warm-glow:      rgba(225, 29, 72, 0.35);
  --violet:         #0F172A;
  --violet-glow:    rgba(15, 23, 42, 0.2);
  --green:          #16A34A;
  --whatsapp:       #22C55E;
  --whatsapp-glow:  rgba(34, 197, 94, 0.3);
  --danger:         #E11D48;
  --text:           var(--text-heading);
  --text-soft:      #1E293B;

  /* Luxury Automotive Borders */
  --border-gold:    rgba(225, 29, 72, 0.25);
  --border-glass:   rgba(15, 23, 42, 0.09);
  --glass-border:   1px solid rgba(225, 29, 72, 0.25);

  /* Elevation Shadows */
  --shadow-gold:    0 8px 30px rgba(225, 29, 72, 0.25);
  --shadow-deep:    0 20px 50px rgba(15, 23, 42, 0.09);
  --shadow-card:    0 6px 24px rgba(15, 23, 42, 0.06);

  /* Typography */
  --font-display:   'Playfair Display', serif;
  --font-accent:    'Cinzel', serif;
  --font-body:      'Plus Jakarta Sans', sans-serif;
  --font:           'Plus Jakarta Sans', sans-serif;
  --font-sport:     'Rajdhani', sans-serif;

  /* Spacing & Radii */
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-pill:    50px;
  --radius:         12px;
  --transition:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-blur:     blur(16px);
  --header-height:  80px;

  /* Luxury Gradients */
  --grad-accent:    var(--crimson-gradient);
  --grad-warm:      linear-gradient(135deg, #F43F5E 0%, #E11D48 50%, #0F172A 100%);
  --grad-hero:      linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 40%, #F8FAFC 100%);
  --grad-card:      linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
  --grad-cta:       linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
}

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

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

body {
  background-color: var(--bg-deepest);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(ellipse at 20% 20%, rgba(225, 29, 72, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 60%, rgba(15, 23, 42, 0.03) 0%, transparent 60%);
}

/* Luxury noise texture overlay on body */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; background: transparent; color: inherit; }

/* Custom Luxury Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deepest); }
::-webkit-scrollbar-thumb { background: var(--crimson-gradient); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--crimson-bright); }
::selection { background: rgba(225, 29, 72, 0.18); color: #1F1610; }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, .h1, .h2, .h3 {
  font-family: var(--font-display);
  color: var(--text-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1, .h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 900; }
h2, .h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; }
h3, .h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-family: var(--font-body); color: var(--text-body); font-size: 1.05rem; }

/* Gold gradient text effect for special headings */
.text-gold-gradient, .gradient-text, .gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section label — small caps above H2 */
.section-label, .section-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--crimson-vivid);
  margin-bottom: 12px;
}

/* H2 underline — Crimson bar */
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  color: var(--text-heading);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--crimson-gradient);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(225, 29, 72, 0.4);
}

.text-center .section-title::after,
.section-title-wrap .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-title-wrap { text-align: center; margin-bottom: 3.5rem; }

/* --------------------------------------------------------------------------
   4. LAYOUT & GRIDS
   -------------------------------------------------------------------------- */
.container {
  max-width: 1480px;
  width: 95%;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
  position: relative;
  z-index: 1;
}

section, .section, .section-py {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

/* Alternating section backgrounds for depth */
section:nth-child(even), .section:nth-of-type(even) {
  background-color: var(--bg-dark);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

/* --------------------------------------------------------------------------
   5. HEADER — Luxury Fixed Navbar
   -------------------------------------------------------------------------- */
header, #header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: rgba(245, 237, 228, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(160, 110, 70, 0.22);
  box-shadow: 0 4px 20px rgba(90, 60, 40, 0.06);
}

header.scrolled, #header.header-scrolled, header.header-scrolled {
  padding: 10px 0;
  background: rgba(240, 230, 218, 0.98);
  border-bottom: 1px solid rgba(160, 110, 70, 0.3);
  box-shadow: 0 8px 30px rgba(90, 60, 40, 0.1), 0 0 15px rgba(225, 29, 72, 0.1);
}

header .container, .header-container {
  max-width: 1600px;
  width: 96%;
  margin: 0 auto;
  padding: 0 clamp(16px, 3.5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-link { 
  display: inline-flex; 
  align-items: center;
  gap: 12px;
  line-height: 1.1; 
  transition: transform 0.3s ease;
}
.logo-link:hover {
  transform: translateY(-1px);
}

.logo-crest-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.15) 0%, #FFFFFF 100%);
  border: 1px solid rgba(160, 110, 70, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--crimson-vivid);
  box-shadow: 0 2px 10px rgba(90, 60, 40, 0.1);
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo, .logo-text, .logo-name, .logo-main {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  color: #1F1610;
  letter-spacing: 1.5px;
}

.logo-sub, .logo-tagline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--crimson-vivid);
  display: block;
  margin-top: 2px;
}

/* Nav Menu */
.nav-menu { display: flex; align-items: center; gap: 0.6rem; }

nav a, .nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2D241E;
  padding: 8px 18px;
  border-radius: 50px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}

nav a:hover, .nav-link:hover {
  color: var(--crimson-vivid);
  background: rgba(160, 110, 70, 0.12);
  border-color: rgba(160, 110, 70, 0.25);
  box-shadow: 0 2px 10px rgba(90, 60, 40, 0.1);
  transform: translateY(-1px);
}

nav a.active, .nav-link.active {
  color: #FFFFFF !important;
  background: var(--crimson-gradient);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(225, 29, 72, 0.35);
  transform: translateY(-1px);
}

/* Header Call Action Button — Glossy Porsche Crimson VIP Pill */
.header-phone, .btn-header-call, .header-cta-desktop {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  color: #FFFFFF !important;
  background: var(--crimson-gradient);
  border: none;
  padding: 9px 22px;
  border-radius: 50px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(225, 29, 72, 0.4);
  position: relative;
  overflow: hidden;
}

.header-cta-desktop::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  animation: headerSweep 3.5s infinite;
}

@keyframes headerSweep {
  0% { left: -100%; }
  30%, 100% { left: 200%; }
}

.header-phone:hover, .btn-header-call:hover, .header-cta-desktop:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(225, 29, 72, 0.6);
  filter: brightness(1.1);
  color: #FFFFFF !important;
}

/* Hamburger */
.hamburger, .hamburger-btn {
  display: none; background: transparent; border: none;
  cursor: pointer; padding: 0.5rem; z-index: 1001;
}

.hamburger-icon {
  width: 28px; height: 20px;
  position: relative; display: flex; flex-direction: column; justify-content: space-between;
}

.hamburger-icon span {
  display: block; height: 2.5px; width: 100%;
  background: #1F1610; border-radius: 2px; transition: var(--transition);
}

.nav-open .hamburger-icon span:nth-child(1),
.hamburger-btn.active .hamburger-icon span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  background: var(--crimson-vivid);
}
.nav-open .hamburger-icon span:nth-child(2),
.hamburger-btn.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.nav-open .hamburger-icon span:nth-child(3),
.hamburger-btn.active .hamburger-icon span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  background: var(--crimson-vivid);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION — Exact Luxury Automotive Showroom Format
   -------------------------------------------------------------------------- */
#hero, .hero, .hero-section, .hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  background: url('images/hero-car.jpg') 85% center / cover no-repeat;
  padding: 130px 0 60px;
}

/* Smooth directional warm luxury overlay on the left for maximum text readability, while keeping the bespoke car crystal clear on the right */
#hero::before, .hero::before, .hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, 
      rgba(26, 18, 14, 0.88) 0%, 
      rgba(31, 22, 16, 0.78) 28%, 
      rgba(31, 22, 16, 0.35) 45%, 
      rgba(31, 22, 16, 0.05) 58%, 
      transparent 70%),
    linear-gradient(to top, var(--bg-deepest) 0%, rgba(248, 250, 252, 0.7) 20px, transparent 80px);
  pointer-events: none;
  z-index: 1;
}

/* Subtle angled warm architectural panel that tapers away before the car */
#hero::after, .hero::after, .hero-home::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 44%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 22, 16, 0.82) 0%, rgba(31, 22, 16, 0.50) 50%, rgba(31, 22, 16, 0.0) 100%);
  clip-path: polygon(0 0, 100% 0, 48% 100%, 0 100%);
  pointer-events: none;
  z-index: 1;
}

/* Position hero container to the left side */
.hero-home .container, #hero .container {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding-left: clamp(24px, 4.5vw, 60px);
  padding-right: clamp(24px, 4.5vw, 60px);
  position: relative;
  z-index: 2;
}

.hero-content, .hero-home .hero-content {
  position: relative;
  z-index: 2;
  max-width: 460px;
  margin: 0;
  text-align: left;
}

/* Hero pill badge with subtle crimson pulse */
.hero-tagline, .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(225, 29, 72, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(225, 29, 72, 0.35);
  border-radius: 50px;
  padding: 7px 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crimson-bright);
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(225, 29, 72, 0.25);
  animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(225, 29, 72, 0.2); border-color: rgba(225, 29, 72, 0.35); }
  50% { box-shadow: 0 0 28px rgba(225, 29, 72, 0.45); border-color: rgba(225, 29, 72, 0.7); }
}

/* Hero H1 */
.hero h1, .hero-title, .hero-home .hero-title {
  font-family: var(--font-body);
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.05;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

/* Second line accent: IN STYLE - Vibrant Crimson Carmine Gradient */
.hero h1 span, .hero-accent, .hero-home .hero-accent {
  background: var(--crimson-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-weight: 800;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 25px rgba(225, 29, 72, 0.5));
}

/* Hero subtitle paragraph */
.hero-subtitle, .hero p, .hero-home p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #e2e8f0;
  max-width: 450px;
  margin: 16px 0 26px;
  line-height: 1.65;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* CTA buttons group */
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}

/* Explore Products Button - Vibrant Crimson Carmine Gradient Pill with light sweep */
.btn-hero-explore {
  background: var(--crimson-gradient);
  color: #ffffff !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 28px rgba(225, 29, 72, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-hero-explore::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(30deg);
  transition: left 0.7s ease;
}

.btn-hero-explore:hover::before {
  left: 140%;
}

.btn-hero-explore:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 38px rgba(225, 29, 72, 0.65);
  filter: brightness(1.1);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-hero-explore:hover .btn-arrow {
  transform: translateX(5px);
}

/* WhatsApp Button - Vibrant Green Pill with sheen */
.btn-hero-whatsapp {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-hero-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(34, 197, 94, 0.65);
  filter: brightness(1.1);
}

/* Hero trust chips row */
.hero-trust-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.6px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 6px 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-chip:hover {
  border-color: var(--crimson-vivid);
  box-shadow: 0 4px 20px rgba(225, 29, 72, 0.3);
  transform: translateY(-2px);
}

.trust-chip .chip-icon {
  font-size: 0.92rem;
}

/* Stat counters */
.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  text-align: left;
}

.hero-stats .stat-box {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 2px solid var(--crimson-vivid);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(225, 29, 72, 0.15);
  min-width: 110px;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-stats .stat-box:hover {
  transform: translateY(-4px);
  border-color: var(--crimson-vivid);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(225, 29, 72, 0.3);
}

.hero-stats .stat-num {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--crimson-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(225, 29, 72, 0.4));
  display: block;
}

.hero-stats .stat-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #CBD5E1;
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   7. SUB-PAGE HERO (Products, About, Contact) — Light Brown Studio Banner
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: 160px 0 65px;
  background: #F5EDE4;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 750px 450px at 50% 20%, rgba(194, 110, 46, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 85% 80%, rgba(225, 29, 72, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #EADDCF 0%, #F5EDE4 50%, #FDFBF8 100%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(to top, var(--bg-deepest), transparent);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  font-weight: 900;
  color: #1F1610;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.page-hero p {
  color: #4A3B32;
  max-width: 680px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.82rem;
  color: #7C6758;
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--crimson-vivid); transition: var(--transition); }
.breadcrumb a:hover { color: #1F1610; }
.breadcrumb span { color: #A69282; }

/* --------------------------------------------------------------------------
   8. BUTTONS — Luxury CTAs
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  line-height: 1;
}

/* Primary — Crimson Carmine button */
.btn-primary, .btn-gold {
  background: var(--crimson-gradient);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(225, 29, 72, 0.35);
}
.btn-primary:hover, .btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(225, 29, 72, 0.5);
  filter: brightness(1.08);
  color: #FFFFFF;
}

/* Secondary — Ghost gold */
.btn-secondary, .btn-outline {
  background: transparent;
  color: var(--gold-royal);
  border: 1.5px solid var(--gold-royal);
}
.btn-secondary:hover, .btn-outline:hover {
  background: var(--gold-royal);
  color: var(--bg-deepest);
  transform: translateY(-3px);
}

/* WhatsApp green */
.btn-whatsapp, .btn-green {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover, .btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  color: #fff;
}

/* CTA red — used only on main CTA strip */
.btn-red, .btn-cta {
  background: linear-gradient(135deg, #C0392B, #E74C3C);
  color: white;
  box-shadow: 0 4px 20px rgba(192,57,43,0.35);
}
.btn-red:hover, .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(192,57,43,0.5);
  color: white;
}

/* --------------------------------------------------------------------------
   9. CARDS — Glassmorphism Luxury
   -------------------------------------------------------------------------- */
.card, .feature-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Subtle gold top glow on card hover */
.card::before, .feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.card:hover::before, .feature-card:hover::before { transform: scaleX(1); }

.card:hover, .feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  background: var(--bg-card-hover);
}

/* --------------------------------------------------------------------------
   10. CATEGORY CARDS (Shop By Category)
   -------------------------------------------------------------------------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  transition: var(--transition);
  cursor: pointer;
  display: block;
  height: 280px;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}
.category-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.95);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.90) 0%, rgba(15, 23, 42, 0.25) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}
.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.35) 60%, transparent 100%);
}

.category-card .icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
  transition: transform 0.4s ease;
}
.category-card:hover .icon { transform: scale(1.2) rotate(5deg); }

.category-card h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.category-card .explore-link, .category-overlay span {
  font-size: 0.8rem;
  color: var(--gold-bright);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
  font-weight: 700;
}

.category-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-8px);
}

/* Gold corner accent on category card */
.category-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at bottom right, rgba(225, 29, 72, 0.15), transparent 70%);
  border-radius: 0 0 var(--radius-md) 0;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   11. PRODUCT CARDS & BEST SELLERS
   -------------------------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #FFFFFF;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.product-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1), var(--shadow-gold);
  transform: translateY(-8px);
}

.product-card:hover::before {
  opacity: 1;
}

/* Image container */
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: #F1F5F9;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.96) saturate(1.05);
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.15);
}

/* Gold gradient overlay on image bottom */
.product-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, transparent 100%);
}

/* Category badge on image */
.product-badge, .brand-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(225, 29, 72, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(225, 29, 72, 0.25);
  color: var(--crimson-vivid);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 2;
}

.product-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card h3, .product-name {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  line-height: 1.35;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--crimson-vivid);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.product-body .btn {
  width: 100%;
  margin-top: auto;
  font-size: 0.85rem;
  padding: 12px 18px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.product-body .btn:hover {
  background: var(--crimson-gradient);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
  transform: translateY(-2px);
}

/* Best Sellers horizontal scroll (on homepage) */
.bestseller-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  scrollbar-width: none;
}
.bestseller-scroll::-webkit-scrollbar { display: none; }
.bestseller-scroll .product-card {
  min-width: 280px;
  max-width: 300px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   12. BRANDS MARQUEE & FILTER BAR
   -------------------------------------------------------------------------- */
.brands-marquee-section {
  padding: 20px 0;
  overflow: hidden;
  background: #F0E5D8;
  border-top: 1px solid rgba(160, 110, 70, 0.18);
  border-bottom: 1px solid rgba(160, 110, 70, 0.18);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 16px;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.brand-pill-marquee {
  padding: 8px 22px;
  border: 1px solid rgba(160, 110, 70, 0.2);
  border-radius: 50px;
  color: #2D241E;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(70, 45, 30, 0.05);
  transition: var(--transition);
  flex-shrink: 0;
}
.brand-pill-marquee:hover {
  background: var(--crimson-vivid);
  border-color: var(--crimson-vivid);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(225, 29, 72, 0.4);
  transform: translateY(-2px) scale(1.05);
}

/* Filter Bar */
.filter-section {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 0 10px;
  border-bottom: 1px solid rgba(160, 110, 70, 0.18);
  box-shadow: 0 4px 25px rgba(90, 60, 40, 0.05);
}
.filter-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}
.filter-bar::-webkit-scrollbar { display: none; }

.pill {
  padding: 9px 20px;
  border-radius: 50px;
  border: 1px solid rgba(160, 110, 70, 0.18);
  background: #FFFFFF;
  color: #2D241E;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(70, 45, 30, 0.04);
}
.pill:hover {
  border-color: var(--crimson-vivid);
  color: var(--crimson-vivid);
  background: rgba(225, 29, 72, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.15);
}
.pill.active {
  background: var(--crimson-gradient);
  border-color: transparent;
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.38);
  transform: translateY(-2px);
}
.product-count {
  text-align: center;
  color: #7C6758;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 10px;
}
.product-count span {
  color: var(--crimson-vivid);
  font-weight: 800;
}

/* Price Notice */
.price-notice {
  background: rgba(245, 237, 228, 0.75);
  border: 1px solid rgba(160, 110, 70, 0.25);
  border-left: 4px solid var(--crimson-vivid);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
  box-shadow: 0 4px 15px rgba(70, 45, 30, 0.04);
}
.price-notice .notice-icon { font-size: 1.6rem; flex-shrink: 0; }
.price-notice p { color: #4A3B32; font-size: 0.95rem; line-height: 1.7; }
.price-notice strong { color: var(--crimson-vivid); font-weight: 700; }

/* --------------------------------------------------------------------------
   13. TESTIMONIALS & REVIEWS
   -------------------------------------------------------------------------- */
.review-card, .testimonial-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}
.review-card:hover, .testimonial-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

/* Big quote mark */
.review-card::before, .testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  pointer-events: none;
}

.review-text, .review-card blockquote, .testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  border: none;
  padding: 0;
  position: relative;
  z-index: 1;
}

.reviewer-name, .testimonial-author {
  font-weight: 700;
  color: var(--gold-royal);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stars, .review-stars {
  color: var(--gold-bright);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   14. WHY US / FEATURE CARDS
   -------------------------------------------------------------------------- */
.why-card, .feature-card {
  padding: 36px 28px;
  border-radius: var(--radius-md);
  background: rgba(201,168,76,0.03);
  border: 1px solid var(--border-glass);
  transition: var(--transition);
  text-align: center;
}
.why-card:hover, .feature-card:hover {
  background: rgba(201,168,76,0.07);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-8px);
}

.why-icon, .feature-icon, .feature-card .icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  display: block;
}

.why-card h3, .feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-heading);
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   15. CTA SECTION & VISIT US
   -------------------------------------------------------------------------- */
.cta-section, .visit-section, .map-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.cta-strip {
  background: linear-gradient(135deg, #F5EDE4 0%, #EADDCF 100%);
  border: 1px solid rgba(160, 110, 70, 0.25);
  border-radius: var(--radius-lg);
  padding: 60px clamp(24px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(70, 45, 30, 0.08);
  width: 100%;
}

/* Crimson glow behind CTA */
.cta-strip::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 350px;
  background: radial-gradient(ellipse, rgba(194, 110, 46, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: #1F1610;
}

.cta-strip p {
  color: #4A3B32;
  max-width: 650px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  line-height: 1.65;
}

.map-container iframe, .map-wrapper iframe {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
}

/* --------------------------------------------------------------------------
   16. FORMS & INPUTS
   -------------------------------------------------------------------------- */
.form-group { margin-bottom: 22px; display: flex; flex-direction: column; }

label, .form-label {
  display: block; margin-bottom: 8px;
  font-weight: 600; font-size: 0.85rem;
  color: var(--gold-royal);
  text-transform: uppercase; letter-spacing: 2px;
}

input, select, textarea, .form-input, .form-select, .form-textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold-bright);
  outline: none;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15), var(--shadow-gold);
  background: #FFFFFF;
}

input::placeholder, textarea::placeholder {
  color: var(--text-muted);
}

.error-msg {
  color: var(--danger); font-size: 0.8rem;
  margin-top: 5px; display: none; font-weight: 600;
}
.error-msg.show, .error-msg.visible { display: block; }

/* --------------------------------------------------------------------------
   17. FAQ & ACCORDION
   -------------------------------------------------------------------------- */
.accordion-item {
  background: #FFFFFF;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-card);
}

.accordion-item:hover, .accordion-item.open {
  border-color: var(--border-gold);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08), var(--shadow-gold);
}

.accordion-header {
  width: 100%;
  background: transparent !important;
  border: none;
  outline: none;
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 700;
  color: var(--text-heading) !important;
  font-size: 1.15rem;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  transition: color 0.3s ease, background 0.3s ease;
}

.accordion-header span:first-child {
  color: var(--text-heading) !important;
  line-height: 1.4;
  flex: 1;
  padding-right: 16px;
}

.accordion-header:hover, .accordion-item.open .accordion-header {
  color: var(--gold-royal) !important;
}

.accordion-header:hover span:first-child, .accordion-item.open .accordion-header span:first-child {
  color: var(--gold-royal) !important;
}

.accordion-icon {
  color: var(--gold-bright);
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  color: var(--gold-bright);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-body p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
}

.accordion-item.open .accordion-body {
  max-height: 300px;
  padding: 0 26px 22px;
}

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
footer, .site-footer {
  background: linear-gradient(180deg, #F5EDE4 0%, #E6D8C8 100%);
  border-top: 3px solid rgba(160, 110, 70, 0.35);
  padding: 80px 0 28px;
  position: relative;
  z-index: 1;
  box-shadow: 0 -6px 30px rgba(70, 45, 30, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.2fr;
  gap: clamp(2rem, 3.5vw, 3.5rem);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: #1F1610;
  letter-spacing: 1.5px;
}

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crimson-vivid);
  margin-top: 4px;
}

.footer p {
  color: #4A3B32;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer h4, .footer-heading, .footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1F1610;
  margin-bottom: 22px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--crimson-vivid);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul li a {
  font-size: 0.92rem;
  color: #4A3B32;
  transition: var(--transition);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer ul li a:hover {
  color: var(--crimson-vivid);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: #4A3B32;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--crimson-vivid);
  flex-shrink: 0;
  margin-top: 4px;
}

.social-icons, .social-icons-box { display: flex; gap: 12px; margin-top: 22px; }
.social-icon, .social-link {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(160, 110, 70, 0.25);
  background: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  color: #1F1610; transition: var(--transition);
  box-shadow: 0 2px 8px rgba(70, 45, 30, 0.05);
}
.social-icon:hover, .social-link:hover {
  background: var(--crimson-vivid);
  border-color: var(--crimson-vivid);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
  transform: translateY(-3px) scale(1.08);
}
.social-icon svg, .social-link svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid rgba(160, 110, 70, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #6E5A4D;
  font-size: 0.88rem;
}

.footer-bottom .creator-link {
  color: var(--crimson-vivid);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.footer-bottom .creator-link:hover {
  color: #1F1610;
}

/* --------------------------------------------------------------------------
   19. FLOATING BUTTONS
   -------------------------------------------------------------------------- */
.whatsapp-float, #whatsapp-float, .floating-whatsapp {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 25px rgba(37,211,102,0.45);
  animation: floatBounce 3s ease-in-out infinite;
  color: #fff;
  transition: var(--transition);
}
.whatsapp-float:hover, .floating-whatsapp:hover { transform: scale(1.12); color: #fff; }
.whatsapp-float svg, .floating-whatsapp svg { width: 32px; height: 32px; fill: currentColor; }

.call-float, #call-float, .floating-call {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #C0392B, #E74C3C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 25px rgba(192,57,43,0.4);
  display: none; /* mobile only */
  color: #fff;
  transition: var(--transition);
}
.call-float:hover, .floating-call:hover { transform: scale(1.12); color: #fff; }
.call-float svg, .floating-call svg { width: 26px; height: 26px; fill: currentColor; }

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --------------------------------------------------------------------------
   20. SCROLL REVEAL & DIVIDERS
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible, .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.6s; }

.gold-divider, .glow-divider {
  width: 80px; height: 1px;
  background: var(--gold-gradient);
  margin: 24px auto;
  border: none;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}

/* --------------------------------------------------------------------------
   21. MOBILE & RESPONSIVE DESIGN
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual-card { max-width: 500px; margin: 0 auto; width: 100%; }
  .grid-3, .products-grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (max-width: 768px) {
  #hero::after, .hero::after, .hero-home::after { display: none; }
  #hero::before, .hero::before, .hero-home::before {
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.70) 100%);
  }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }
  .btn { padding: 13px 26px; font-size: 0.85rem; }
  .btn-group, .hero-cta-group { gap: 12px; }
  .stat-num, .counter-number { font-size: 2rem; }
  .hero-subtitle, .hero p { font-size: 1rem; }
  .container { padding: 0 16px; }
  .card, .product-card, .review-card, .why-card { padding: 20px 18px; }
  .grid-3, .grid-2, .grid-4, .products-grid, .category-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  section, .section, .section-py { padding: 60px 0; }

  .hero-home { padding: 110px 0 50px; }
  .hero-home .hero-content { text-align: left; }
  .hero-subtitle, .hero p, .hero-home p { margin-left: 0; margin-right: 0; }
  .hero-cta-group { justify-content: flex-start; }
  .hero-trust-chips { justify-content: flex-start; }
  .hero-stats { justify-content: flex-start; gap: 24px; }

  .header-cta-desktop, .header-phone { display: none; }
  .hamburger, .hamburger-btn { display: block; }

  .nav-menu {
    position: fixed;
    top: 75px; left: 0;
    width: 100%;
    background: rgba(245, 237, 228, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 1.5rem;
    border-bottom: 2px solid rgba(160, 110, 70, 0.28);
    transform: translateY(-150%);
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 20px 50px rgba(90, 60, 40, 0.15);
    z-index: 999;
  }
  .nav-open .nav-menu, .nav-menu.active { transform: translateY(0); }

  .call-float, #call-float, .floating-call { display: flex; }
  .category-card { height: 220px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; letter-spacing: -0.02em; }
  section, .section, .section-py { padding: 50px 0; }
  .btn-group, .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn, .hero-cta-group .btn { text-align: center; justify-content: center; width: 100%; }
  .whatsapp-float, #whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .call-float, #call-float { bottom: 18px; left: 18px; width: 52px; height: 52px; }
  .page-hero { padding: 120px 0 50px; }
}
