

:root {
  /* ─── Ultra-Premium Palette ──── */
  --color-primary: #050505;       /* Onyx Black */
  --color-primary-light: #111111;
  --color-secondary: #D4AF37;     /* True Metallic Gold */
  --color-secondary-hover: #b48e45;
  --color-accent: #E5C158;

  /* Global Theme - Light Mode */
  --color-bg: #FAFAFA;            /* Stark Snow */
  --color-surface: #FFFFFF;
  --color-surface-2: #F4F4F5;
  --color-surface-3: #E4E4E7;
  
  --color-text: #050505;          
  --color-text-muted: #52525B;    
  --color-text-faint: #71717A;    
  
  /* Very subtle borders */
  --color-border: rgba(0, 0, 0, 0.08);        
  --color-border-2: rgba(0, 0, 0, 0.12);

  --color-navbar-bg: rgba(250, 250, 250, 0.7);
  --color-navbar-text: #050505;
  --color-secondary-light: rgba(212, 175, 55, 0.1);

  /* System */
  --color-success: #10b981;
  --color-error: #ef4444;
  --color-warning: #f59e0b;

  /* Layout Constraints */
  --navbar-h: 68px;
  --max-width: 1400px; /* Wider for that cinematic premium feel */

  /* Typography Fluid Scales */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Deep, diffused premium shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.12);
  --shadow-premium: 0 30px 60px -12px rgba(5, 5, 5, 0.15);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
  --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.4);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Physics-based transitions */
  --t-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --t-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --t-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

:root.dark {
  --color-bg: #050505;
  --color-surface: #0A0A0A;
  --color-surface-2: #111111;
  --color-surface-3: #1A1A1A;
  
  --color-text: #FAFAFA;
  --color-text-muted: #A1A1AA;
  --color-text-faint: #71717A;
  
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-2: rgba(255, 255, 255, 0.12);
  
  --color-navbar-bg: rgba(5, 5, 5, 0.75);
  --color-navbar-text: #FAFAFA;
  --color-secondary-light: rgba(212, 175, 55, 0.15);
  
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.5);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.6);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.8);
  --shadow-premium: 0 40px 80px rgba(0,0,0,0.9);
}

/* --- Premium Splash Screen --- */
.premium-splash {
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
  animation: splashPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.splash-loader {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.splash-loader::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: var(--color-secondary);
  border-radius: 4px;
  animation: splashLoad 1.5s ease-in-out infinite;
}

@keyframes splashPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.95); }
}

@keyframes splashLoad {
  0% { left: -40%; }
  100% { left: 100%; }
}

@media (max-width: 968px) {
  :root {
    --navbar-h: 68px;
  }
}

/* When promotional banner is active, offset everything by --banner-h */
:root {
  --banner-h: 0px;
}
.has-promo-banner {
  --banner-h: 40px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

input, textarea, select {
  max-width: 100%;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.app-container {
  overflow-x: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 15px; /* Slightly larger base */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: 
    radial-gradient(at 0% 0%, rgba(212, 175, 55, 0.015) 0px, transparent 50%),
    radial-gradient(at 50% 0%, rgba(37, 99, 235, 0.01) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(212, 175, 55, 0.015) 0px, transparent 50%);
  background-attachment: fixed;
}

.dark body {
  background-image: 
    radial-gradient(at 0% 0%, rgba(212, 175, 55, 0.03) 0px, transparent 50%),
    radial-gradient(at 50% 0%, rgba(37, 99, 235, 0.02) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(212, 175, 55, 0.03) 0px, transparent 50%);
}

/* Fluid Typography Setup - Professional Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 2vw + 0.75rem, 2rem);  margin-bottom: 0.875rem; }
h3 { font-size: clamp(1.15rem, 1.5vw + 0.5rem, 1.5rem); margin-bottom: 0.75rem; letter-spacing: -0.01em; }
h4 { font-size: clamp(1rem, 1vw + 0.5rem, 1.2rem); margin-bottom: 0.5rem; letter-spacing: 0; }

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--t-normal);
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--t-normal);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem; /* Generous mobile padding */
}
@media (min-width: 1024px) {
  .container { padding: 0 3rem; }
}
@media (min-width: 1440px) {
  .container { padding: 0 4rem; }
}

/* Advanced Glassmorphism */
.glass-panel {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-xl);
}
.dark .glass-panel {
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid var(--color-border);
}

/* Fluid Spacing */
.section-padding {
  padding-top: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-padding-top {
  padding-top: clamp(2rem, 4vw, 3.5rem);
}
.section-padding-bottom {
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fadeIn 1s var(--ease-out) forwards;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Global Promo Ribbon */
.promo-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 1001; /* Renders above navbar */
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: white;
}
.dark .promo-ribbon {
  background: #111111;
  color: #FAFAFA;
}
.promo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 1rem;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.promo-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1 1 auto;
  text-align: center;
}
.promo-tag {
  background: var(--color-secondary);
  color: #050505;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Mobile: hide tag pill on very small screens to prevent overflow */
@media (max-width: 480px) {
  .promo-tag {
    display: none;
  }
  .promo-content {
    padding: 0 0.75rem;
  }
  .promo-ribbon {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
}

/* Utility Grid System */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-1 { flex: 1; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.grid { display: grid; gap: 1.5rem; }
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-cols-3, .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid { gap: 1rem; }
}
@media (max-width: 480px) {
  .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: 1fr; }
  .grid { gap: 1rem; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Helpers */
.text-center { text-align: center; }
.text-secondary { color: var(--color-secondary); }
.text-white { color: white !important; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.bg-surface { background-color: var(--color-surface); }
.bg-surface-2 { background-color: var(--color-surface-2); }
.bg-primary { background-color: var(--color-primary); }

/* Custom Scrollbar for Premium Feel */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border-2);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-muted);
}

/* Global Typography Responsive Override Scales */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  h1 { font-size: clamp(1.4rem, 4vw + 0.8rem, 2.2rem); }
  h2 { font-size: clamp(1.2rem, 3vw + 0.7rem, 1.7rem); }
  h3 { font-size: clamp(1.05rem, 2vw + 0.6rem, 1.35rem); }
  h4 { font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.15rem); }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }
  h1 { font-size: clamp(1.3rem, 5vw + 0.7rem, 1.85rem); }
  h2 { font-size: clamp(1.15rem, 4vw + 0.6rem, 1.45rem); }
  h3 { font-size: clamp(1.0rem, 3vw + 0.5rem, 1.2rem); }
  h4 { font-size: clamp(0.85rem, 2vw + 0.4rem, 1.05rem); }
}
/* ==========================================================================
   Minimalist Professional Navbar
   Full-width, clean, simple, consistent with site theme.
   ========================================================================== */

/* ── Base ─────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.25s ease, background 0.25s ease, top 0.25s ease;
}

/* When promo banner is active — push navbar below the 40px ribbon */
.has-promo-banner .navbar {
  top: 40px;
}

/* When scrolled and promo banner is active — slide navbar back to top smoothly */
.has-promo-banner .navbar.scrolled {
  top: 0;
}

/* Scrolled: add a subtle shadow only */
.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  background: var(--color-surface);
}

.dark .navbar {
  background: var(--color-surface);
  border-bottom-color: var(--color-border);
}

.dark .navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

/* ── Container ────────────────────────────────────────────────────────────── */
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  gap: 2rem;
}

/* ── Logo ─────────────────────────────────────────────────────────────────── */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  color: var(--color-secondary);
  width: 22px;
  height: 22px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  transform: translateY(2px);
}

/* ── Nav Links ────────────────────────────────────────────────────────────── */
.navbar-links {
  display: flex;
  gap: 0;
  align-items: center;
}

.navbar-links a {
  position: relative;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  padding: 0.4rem 1rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

/* Clean underline indicator on hover */
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
  border-radius: 1px;
}

.navbar-links a:hover {
  color: var(--color-text);
}

.navbar-links a:hover::after {
  transform: scaleX(1);
}

/* Active link */
.navbar-links a.active {
  color: var(--color-secondary);
  font-weight: 600;
}

.navbar-links a.active::after {
  transform: scaleX(1);
}

/* ── Action Icons ─────────────────────────────────────────────────────────── */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.theme-toggle-btn,
.cart-icon-wrapper,
.mobile-menu-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  transition: color 0.2s ease, background 0.2s ease;
  cursor: pointer;
  position: relative;
}

.theme-toggle-btn:hover,
.cart-icon-wrapper:hover {
  color: var(--color-text);
  background: var(--color-surface-2);
}

.dark .theme-toggle-btn:hover,
.dark .cart-icon-wrapper:hover {
  background: var(--color-surface-3);
}

/* Cart badge */
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-secondary);
  color: #050505;
  font-size: 0.6rem;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ── Mobile Drawer ────────────────────────────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-btn {
  display: none;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 968px) {
  .navbar-container {
    padding: 0 1.25rem;
  }

  /* Mobile drawer */
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100dvh;
    width: min(300px, 80vw);
    background: var(--color-surface);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.25rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    border-left: 1px solid var(--color-border);
    border-radius: 0;
    overflow-y: auto;
    gap: 0.25rem;
  }

  .navbar-links.mobile-open {
    right: 0;
  }

  .navbar-links a {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
  }

  .navbar-links a::after {
    display: none;
  }

  .navbar-links a:hover {
    background: var(--color-surface-2);
  }

  .navbar-links a.active {
    color: var(--color-secondary);
    background: var(--color-secondary-light);
  }

  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 0.95rem;
  }
}.footer {
  background: var(--color-surface);
  color: var(--color-text);
  padding-top: 6rem;
  border-top: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: all var(--t-normal);
}

.footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, var(--color-secondary-light) 0%, transparent 60%);
  pointer-events: none;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding-bottom: 5rem;
}
@media (min-width: 640px)  { .footer-container { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-container { grid-template-columns: 2fr 1.5fr 1.5fr; gap: 3rem; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-text);
  text-transform: uppercase;
  line-height: 1;
  transform: translateY(2px);
}
.footer-logo .logo-icon { 
  color: var(--color-secondary); 
  filter: drop-shadow(0 0 10px var(--color-secondary-light)); 
  width: 36px;
  height: 36px;
}

.footer-description {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 320px;
  margin-left: 48px; /* Align with CONTROLWATTS text (icon 36px + gap 12px) */
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  margin-left: 48px;
}
@media (max-width: 1023px) {
  .footer-section.brand-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-description {
    text-align: center;
    margin: 0 auto 2.5rem;
  }
  .social-links {
    justify-content: center;
    margin-left: 0;
  }
}
.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text-faint);
  transition: all var(--t-normal);
}
.social-links a:hover {
  background: var(--color-secondary);
  color: #050505;
  border-color: var(--color-secondary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--color-secondary-light);
}

.footer-section h3 {
  font-family: var(--font-heading);
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  opacity: 0.8;
}
.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-section ul a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  transition: all var(--t-fast);
  display: inline-block;
  font-weight: 500;
}
.footer-section ul a:hover {
  color: var(--color-secondary);
  transform: translateX(6px);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-info svg { color: var(--color-secondary); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  padding: 2rem 0;
  text-align: center;
  color: var(--color-text-faint);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: all var(--t-normal);
}.whatsapp-widget-container {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-trigger {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
}

.whatsapp-trigger:hover {
  background-color: #1ebe57;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-trigger.active {
  transform: scale(0.9);
}

.whatsapp-popup {
  width: 320px;
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.whatsapp-header {
  background-color: var(--color-primary);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--color-secondary);
}

.whatsapp-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.close-btn {
  color: white;
  opacity: 0.7;
  transition: all 0.2s;
  background: transparent;
  border: none;
  cursor: pointer;
}

.close-btn:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.whatsapp-body {
  padding: 2rem;
  background-color: #e5ddd5;
  position: relative;
  min-height: 120px;
}

.whatsapp-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('https://www.transparenttextures.com/patterns/diagmonds-light.png');
  opacity: 0.2;
  pointer-events: none;
}

.whatsapp-body p {
  background-color: white;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border-top-left-radius: 0;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.whatsapp-body p::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 12px 0;
  border-color: transparent white transparent transparent;
}

.whatsapp-chat-btn {
  background-color: #25D366;
  color: white;
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  display: block;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.whatsapp-chat-btn:hover {
  background-color: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
  .whatsapp-widget-container {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .whatsapp-popup {
    width: calc(100vw - 3rem);
  }
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t-normal);
  width: 100%;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-border-2);
}

.product-image-container {
  position: relative;
  width: 100%;
  padding-top: 80%; /* Slightly taller for more presence */
  background: var(--color-surface-2);
  overflow: hidden;
}

.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.product-card:hover .product-image { transform: scale(1.08); }

.product-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price-row {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.product-card-sale-price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.product-card-sale-price .current-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-error);
}
.product-card-sale-price .original-price-strike {
  font-size: 0.85rem;
  color: var(--color-text-faint);
  text-decoration: line-through;
}

.sale-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-error);
  color: white;
  font-weight: 800;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.new-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-secondary);
  color: #050505;
  font-weight: 800;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

.product-stock {
  font-size: 0.8rem;
  color: var(--color-text-faint);
  font-weight: 500;
}

.product-actions {
  padding: 0 1.5rem 1.5rem;
}

.add-to-cart-btn {
  width: 100%;
  padding: 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--color-surface-2);
  color: var(--color-text);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--color-border);
  transition: all var(--t-normal);
}
.add-to-cart-btn:hover:not(:disabled) {
  background: var(--color-primary);
  color: var(--color-surface);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.add-to-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.dark .add-to-cart-btn { background: var(--color-surface-2); color: var(--color-text); border-color: var(--color-border); }
.dark .add-to-cart-btn:hover:not(:disabled) { background: #FAFAFA; color: #050505; border-color: #FAFAFA; }

@media (max-width: 580px) {
  .product-image-container { padding-top: 65%; }
  .product-info { padding: 1rem; gap: 0.5rem; }
  .product-title { font-size: 0.95rem; }
  .product-price { font-size: 1.1rem; }
  .product-actions { padding: 0 1rem 1rem; }
  .add-to-cart-btn { padding: 0.6rem; font-size: 0.75rem; }
  .sale-tag, .new-tag { top: 0.75rem; padding: 0.3rem 0.6rem; font-size: 0.65rem; }
  .sale-tag { left: 0.75rem; }
  .new-tag { right: 0.75rem; }
}
.custom-video-player {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: inherit;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.custom-video-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
  padding: 20px;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.progress-bar-container {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
  border-radius: 2px;
}

.video-progress-slider {
  position: absolute;
  top: -6px;
  left: 0;
  width: 100%;
  height: 16px;
  opacity: 0;
  cursor: pointer;
  z-index: 20;
}

.progress-fill {
  height: 100%;
  background: var(--color-secondary);
  border-radius: 2px;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-secondary);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

.controls-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.controls-left, .controls-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.control-btn {
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 5px;
}

.control-btn:hover {
  color: var(--color-secondary);
  transform: scale(1.1);
}

.center-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.play-pulse-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4);
  animation: pulse-gold 2s infinite;
  transition: transform 0.3s ease;
}

.center-play-overlay:hover .play-pulse-ring {
  transform: scale(1.1);
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(197, 160, 89, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
  }
}
.home-page { overflow-x: hidden; }

/* ── CINEMATIC HERO ─────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh; /* Edge to edge fullscreen feel */
  display: flex;
  align-items: center;
  color: #FAFAFA;
  overflow: hidden;
  padding-top: calc(var(--banner-h) + var(--navbar-h));
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 30s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

/* Deep, rich gradient vignette for text legibility */
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.6) 50%, rgba(5,5,5,0.2) 100%),
    linear-gradient(0deg, rgba(5,5,5,0.8) 0%, transparent 40%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 10;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero-content-box {
  max-width: 760px;
  animation: fadeIn 1.2s var(--ease-out) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-secondary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  /* Inherits fluid clamp() from index.css h1 */
  color: #FAFAFA;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hero-title span {
  background: linear-gradient(135deg, #E5C158, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  color: rgba(250,250,250,0.7);
  margin-bottom: 3rem;
  max-width: 600px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 968px) {
  .hero-vignette { background: rgba(5,5,5,0.8); }
}
@media (max-width: 768px) {
  .hero-section { min-height: 90vh; text-align: center; }
  .hero-content-box { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}

/* ── VALUE CARDS (Glass/Sleek) ─────────────────────────── */
.value-section { background: var(--color-bg); }

.value-card {
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: all var(--t-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
  opacity: 0;
  transition: opacity var(--t-normal);
}
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.value-card:hover::before { opacity: 1; }

.value-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--color-surface-2);
  border-radius: var(--radius-full); /* Circular looks more premium */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--color-text);
  transition: all var(--t-normal);
}
.value-card:hover .value-icon-wrap {
  background: var(--color-secondary);
  color: #050505;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

.value-icon { color: inherit; }

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.value-card p {
  color: var(--color-text-muted);
}

/* ── CURATED SECTION ─────────────────────── */
.curated-section { background: var(--color-surface-2); }

.section-header-premium {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}
.title-area .subtitle {
  display: block;
  font-weight: 800;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
.title-area h2 {
  margin-bottom: 0;
}
.premium-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--t-fast);
}
.premium-link:hover {
  color: var(--color-secondary);
  transform: translateX(4px);
}
@media (max-width: 640px) {
  .section-header-premium { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── EDITORIAL PROMO (Featured Project) ─────────────────────── */
.editorial-promo { 
  background: var(--color-bg); 
  padding: 8rem 0;
  overflow: hidden;
}

.editorial-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 600px;
}

.editorial-media {
  width: 65%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.editorial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease-out;
}
.editorial-media:hover .editorial-img {
  transform: scale(1.05);
}

.editorial-badge {
  position: absolute;
  top: 2rem;
  left: max(5%, calc((100vw - 1400px) / 2 + 5%));
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 0.6rem 1.2rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 10;
}

.editorial-content-card {
  width: 45%;
  background: var(--color-surface);
  padding: 4rem;
  position: relative;
  z-index: 5;
  margin-left: auto;
  box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
  border: 1px solid var(--color-border);
}
.dark .editorial-content-card { box-shadow: -20px 20px 60px rgba(0,0,0,0.8); }

.editorial-header { margin-bottom: 2rem; }
.editorial-subtitle {
  display: block;
  font-weight: 800;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
.editorial-title { font-size: 2.5rem; line-height: 1.1; margin: 0; }

.editorial-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.editorial-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem 0;
  margin-bottom: 2.5rem;
}

.spec-item { display: flex; flex-direction: column; gap: 0.4rem; }
.spec-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); font-weight: 700; }
.spec-value { font-size: 0.95rem; font-weight: 800; color: var(--color-text); }

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--t-fast);
}
.editorial-link:hover { color: var(--color-secondary); transform: translateX(8px); }

@media (max-width: 1024px) {
  .editorial-container { flex-direction: column; padding: 0; min-height: auto; }
  .editorial-media { position: relative; width: 100%; height: 50vh; }
  .editorial-content-card { width: 90%; margin: -10vh auto 0; padding: 3rem 2rem; }
  .editorial-badge { left: 5%; }
  .editorial-specs { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── PREMIUM REVIEWS (Editorial Grid) ─────────────────────────────── */
.premium-reviews-section {
  background: var(--color-surface-2);
  padding: 8rem 0;
  overflow: hidden;
}
.dark .premium-reviews-section { background: #080808; }

.premium-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2rem;
}

.reviews-progress {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.progress-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--color-text);
}
.progress-track {
  width: 150px;
  height: 2px;
  background: var(--color-border);
  position: relative;
}
.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--color-secondary);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-carousel-wrap {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.premium-carousel-inner {
  display: flex;
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.premium-review-slide {
  width: 100%;
  flex: 0 0 100%;
  flex-shrink: 0;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}

.premium-review-card {
  width: 100%;
  max-width: 900px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-normal);
}
.dark .premium-review-card { box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

.review-stars {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.premium-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 3rem;
  position: relative;
}

.premium-author-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}

.premium-avatar-ring {
  padding: 4px;
  border: 1px solid var(--color-secondary);
  border-radius: 50%;
}

.premium-avatar {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.premium-author-name { font-weight: 800; color: var(--color-text); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.premium-author-verify { font-size: 0.75rem; color: var(--color-secondary); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-top: 0.3rem; }

@media (max-width: 768px) {
  .premium-reviews-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .premium-review-card { padding: 2rem; }
}

/* ── GLOBAL CTA (Sleek Minimal) ──────────────────────────── */
.global-cta {
  padding: 8rem 0;
  background: var(--color-surface);
  text-align: center;
  position: relative;
  border-top: 1px solid var(--color-border);
}
.global-cta h2 {
  position: relative;
  z-index: 2;
}
.global-cta p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.cta-btn { position: relative; z-index: 2; }

@media (max-width: 640px) { .global-cta { padding: 5rem 1rem; } }/* App level styles */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
}
