/* ==========================================================================
   ROUT DIGITAL - LUXURY CAMERA SHOP STYLESHEET
   Theme: Black, White & Gold (Apple / Sony / DJI / Canon Aesthetic)
   ========================================================================== */

:root {
  /* Dark Luxury Theme (Default) */
  --bg-primary: #070709;
  --bg-secondary: #0e0e13;
  --bg-card: rgba(18, 18, 24, 0.75);
  --bg-card-hover: rgba(28, 28, 38, 0.9);
  --bg-glass: rgba(12, 12, 16, 0.82);
  
  --gold-primary: #d4af37;
  --gold-bright: #ffd700;
  --gold-light: #f7e7a3;
  --gold-dark: #a38018;
  --gold-gradient: linear-gradient(135deg, #ffe066 0%, #d4af37 50%, #8a6508 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(255,215,0,0.05) 100%);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.35);
  --gold-glow-intense: 0 0 40px rgba(255, 215, 0, 0.6);
  
  --text-main: #f0f0f6;
  --text-muted: #9595a8;
  --text-dim: #606075;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.25);
  --border-gold-bright: rgba(255, 215, 0, 0.6);
  
  --shadow-lux: 0 20px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Light Theme Variables */
[data-theme="light"] {
  --bg-primary: #f8f9fa;
  --bg-secondary: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.88);
  
  --text-main: #111118;
  --text-muted: #555566;
  --text-dim: #888899;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(184, 134, 11, 0.35);
  --shadow-lux: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Utility Classes */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-glow-box {
  box-shadow: var(--gold-glow);
}

.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   1. INTRO / SHUTTER ANIMATION OVERLAY
   ========================================================================== */
#intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #040405;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.8s ease;
}

#intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Shutter blades wrapper */
.shutter-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shutter-glow-ring {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, rgba(212,175,55,0.05) 60%, transparent 70%);
  animation: pulseGlow 2.5s infinite alternate ease-in-out;
}

.shutter-svg {
  width: 180px;
  height: 180px;
  transform: rotate(0deg);
  animation: spinAperture 12s linear infinite;
}

.shutter-blade {
  fill: none;
  stroke: url(#goldLinear);
  stroke-width: 2.5;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawShutter 2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.intro-logo-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.7));
  opacity: 0;
  transform: scale(0.7) rotate(-5deg);
  animation: logoReveal 1.2s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-text-wrapper {
  margin-top: 30px;
  text-align: center;
}

.intro-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(15px);
  animation: textSlideUp 0.8s 1.4s ease forwards;
}

.intro-tagline {
  font-size: 0.95rem;
  letter-spacing: 6px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(10px);
  animation: textSlideUp 0.8s 1.6s ease forwards;
}

.skip-intro-btn {
  position: absolute;
  bottom: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.skip-intro-btn:hover {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: var(--gold-glow);
}

@keyframes drawShutter {
  to { stroke-dashoffset: 0; }
}

@keyframes logoReveal {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes textSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spinAperture {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.5; }
  100% { transform: scale(1.15); opacity: 0.9; }
}

/* ==========================================================================
   2. NAVBAR (STICKY GLASSMORPHIC)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: rgba(7, 7, 9, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(7, 7, 9, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-primary);
  transition: var(--transition-bounce);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.nav-brand:hover .brand-logo-img {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.9));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.68rem;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-bright);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.theme-toggle-btn:hover {
  background: var(--gold-primary);
  color: #000;
  transform: rotate(180deg);
}

.btn-nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
}

.btn-nav-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ==========================================================================
   3. HERO SECTION (CINEMATIC LUXURY SHOWROOM)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(0, 0, 0, 0.95) 0%, var(--bg-primary) 100%);
}

.hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-glow-overlay {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(212, 175, 55, 0.02) 65%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-pill);
  color: var(--gold-bright);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.hero-badge i {
  color: var(--gold-bright);
}

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.hero-headline .brand-highlight {
  display: block;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.hero-subheading {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
}

.btn-gold-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: #050505;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: var(--gold-glow);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.btn-gold-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--gold-glow-intense);
  color: #000;
}

.btn-outline-lux {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid var(--border-gold);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.btn-outline-lux:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-3px);
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* Hero Showcase Visual */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  padding: 24px;
  background: linear-gradient(145deg, rgba(25, 25, 35, 0.8), rgba(12, 12, 18, 0.95));
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lux), var(--gold-glow);
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  transition: transform 0.5s ease;
}

.hero-main-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-5deg);
}

.hero-camera-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.hero-floating-tag {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--gold-glow);
}

.hero-brands-floating {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  background: rgba(10, 10, 15, 0.9);
  border: 1px solid var(--border-gold);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lux);
}

.brand-mini-badge {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-light);
}

/* ==========================================================================
   4. ABOUT & WHY CHOOSE US
   ========================================================================== */
.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.about-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
}

.about-check-item i {
  color: var(--gold-bright);
  font-size: 1.1rem;
}

/* Why Choose Us Cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--gold-bright);
  box-shadow: var(--shadow-lux), var(--gold-glow);
}

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

.why-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--gold-gradient-soft);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-bright);
  margin-bottom: 22px;
}

.why-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   5. PRODUCT CATEGORIES
   ========================================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.category-card {
  position: relative;
  height: 190px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

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

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background 0.3s ease;
}

.category-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.category-count {
  font-size: 0.78rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.category-card:hover {
  border-color: var(--gold-bright);
  box-shadow: var(--gold-glow);
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card:hover .category-title {
  color: var(--gold-bright);
}

/* ==========================================================================
   6. LIVE SEARCH & FILTER BAR
   ========================================================================== */
.catalog-controls-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 45px;
  box-shadow: var(--shadow-lux);
}

.search-box-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.search-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  padding: 16px 24px 16px 54px;
  color: var(--text-main);
  font-size: 1.05rem;
  outline: none;
  transition: var(--transition-fast);
}

.search-input:focus {
  border-color: var(--gold-bright);
  box-shadow: var(--gold-glow);
  background: rgba(0, 0, 0, 0.7);
}

.search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.filter-pills-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-pill:hover, .filter-pill.active {
  background: var(--gold-gradient);
  border-color: var(--gold-bright);
  color: #000;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.sort-dropdown {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.88rem;
  outline: none;
  cursor: pointer;
}

.results-count-bar {
  margin-bottom: 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   7. PRODUCT CARDS GRID
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-bright);
  box-shadow: var(--shadow-lux), var(--gold-glow);
  background: var(--bg-card-hover);
}

.product-img-box {
  position: relative;
  width: 100%;
  height: 240px;
  background: #09090d;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.product-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-box img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-brand {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text-main);
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.spec-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.product-price-row {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.product-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.product-actions-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.btn-buy-wa {
  background: #25d366;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-buy-wa:hover {
  background: #1eb956;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-quick-view {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-quick-view:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: var(--gold-bright);
}

/* Empty State */
.no-results-box {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  background: var(--bg-card);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-lg);
}

.no-results-box i {
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

/* ==========================================================================
   8. MODAL (QUICK VIEW / DETAILS)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  max-width: 850px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lux), var(--gold-glow);
  position: relative;
  padding: 36px;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.modal-img-wrapper {
  background: #000;
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img-wrapper img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
}

/* ==========================================================================
   9. REVIEWS / TESTIMONIALS
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
}

.stars-row {
  color: var(--gold-bright);
  font-size: 1rem;
  margin-bottom: 14px;
}

.review-quote {
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.reviewer-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.reviewer-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   10. FAQ SECTION
   ========================================================================== */
.faq-container-box {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
}

.faq-header i {
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-body {
  max-height: 250px;
  padding: 0 24px 20px 24px;
}

/* ==========================================================================
   11. STORE LOCATIONS & GOOGLE MAPS
   ========================================================================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lux);
}

.location-info-header {
  padding: 28px;

}

.location-badge {
  display: inline-block;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--border-gold);
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.location-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.location-address {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.location-buttons-row {
  display: flex;
  gap: 12px;
}

.map-embed-wrapper {
  width: 100%;
  height: 240px;
  border: none;
  filter: grayscale(0.2) contrast(1.1);
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.footer {
  background: #040406;
  border-top: 1px solid var(--border-gold);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-info p {
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-social-row {
  display: flex;
  gap: 12px;
}

.social-circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-circle-btn:hover {
  background: var(--gold-gradient);
  color: #000;
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 22px;
}

.footer-links-list {
  list-style: none;
}

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

.footer-links-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--gold-bright);
}

.footer-bottom-bar {
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ==========================================================================
   13. FLOATING ACTION WIDGETS
   ========================================================================== */
.floating-widgets-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition-bounce);
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.12) translateY(-3px);
}

.floating-wa {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.floating-call {
  background: var(--gold-gradient);
  color: #000000;
  box-shadow: var(--gold-glow);
}

.floating-top {
  background: rgba(20, 20, 28, 0.9);
  border: 1px solid var(--border-gold);
  color: var(--gold-bright);
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   14. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subheading {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-stats-row {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.98);
    border-bottom: 1px solid var(--border-gold);
    padding: 24px;
    gap: 18px;
    box-shadow: var(--shadow-lux);
  }

  .hero-main-card {
    transform: none !important;
  }
  
  .modal-body-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.2rem;
  }
  
  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-pills-row {
    flex-direction: column;
    align-items: stretch;
  }
}
