/* =========================================
   VARIABLES & DESIGN SYSTEM (YELLOW & BLACK)
========================================= */
:root {
    --primary: #FFD700;       /* Vibrant Yellow */
    --primary-hover: #E5C100;
    --primary-glow: rgba(255, 215, 0, 0.4);
    
    --black: #000000;         /* Pure Black */
    --dark: #0A0A0A;          /* Off Black */
    --darker: #111111;        /* Slightly lighter black */
    
    --gray: #9CA3AF;
    --white: #FFFFFF;
    --success: #00E676;
    
    --glass-bg: rgba(10, 10, 10, 0.7);
    --glass-border: rgba(255, 215, 0, 0.15); /* Subtle Yellow Border */
    --neon-border: rgba(255, 215, 0, 0.4);
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-pill: 100px;
    
    --ease-out: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Responsive Slider Columns (For Categories) */
    --items-per-view: 4; 
    --slider-gap: 24px;
}

@media (max-width: 992px) { :root { --items-per-view: 3; } }
@media (max-width: 768px) { :root { --items-per-view: 2; } }

/* =========================================
   RESET & GLOBAL
========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; background-color: var(--black); color: var(--white); font-family: var(--font-body); overflow-x: hidden; }
body { overflow-x: hidden; line-height: 1.6; padding-bottom: 0; }
@media (max-width: 768px) { body { padding-bottom: 80px; } }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; color: var(--white); }
a { text-decoration: none; color: inherit; transition: all var(--ease-out); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Helpers */
.ml-2 { margin-left: 8px; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.w-100 { width: 100%; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-gray { color: var(--gray); }
.text-white { color: var(--white); }
.text-primary { color: var(--primary); }
.relative { position: relative; }
.z-2 { z-index: 2; }
.hidden { display: none !important; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
@media (max-width: 768px) { .section-padding { padding: 70px 0; } }

/* Display Toggles */
.mobile-only { display: none !important; }
@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; }
}

/* =========================================
   GLASSMORPHISM & BUTTONS
========================================= */
.glass { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: var(--radius-md); }
.glass-premium { background: rgba(15, 15, 15, 0.6); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255, 255, 255, 0.05); border-top: 1px solid rgba(255, 215, 0, 0.3); border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }

button, .btn-primary, .btn-outline { font-family: var(--font-heading); cursor: pointer; border: none; outline: none; font-weight: 600; transition: all var(--ease-out); border-radius: var(--radius-sm); text-align: center; }
.btn-primary { background: var(--primary); color: var(--black); padding: 14px 28px; font-size: 1rem; box-shadow: 0 4px 20px var(--primary-glow); display: inline-block;}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px var(--primary-glow); background: var(--primary-hover); }
.btn-outline { background: transparent; color: var(--primary); padding: 14px 28px; border: 1px solid var(--primary); font-size: 1rem; position: relative; overflow: hidden; z-index: 1;}
.btn-outline::before { content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; background: var(--primary); transition: all var(--ease-out); z-index: -1; }
.btn-outline.hover-fill:hover::before { width: 100%; }
.btn-outline.hover-fill:hover { color: var(--black); }
.btn-sm { padding: 8px 16px; font-size: 0.9rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; border-radius: var(--radius-pill); }

/* Scroll Reveals & Animations */
.reveal { opacity: 0; will-change: transform, opacity; transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-up { transform: translateY(40px); }
.reveal-scale { transform: scale(0.95); }
.reveal.active { opacity: 1; transform: translateY(0) scale(1); }

/* Dynamic JS Fade */
#product-grid, #productGrid { transition: opacity 0.3s ease-in-out; }
.fade-in-element { animation: fadeInScale 0.4s ease forwards; }
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95) translateY(15px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* =========================================
   ENHANCED RESPONSIVE HEADER
========================================= */
header { 
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 24px 0; 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, padding 0.3s ease; 
    background: transparent; will-change: transform;
}
header.scrolled { 
    background: rgba(0, 0, 0, 0.95); 
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); 
    padding: 15px 0; border-bottom: 1px solid rgba(255,215,0,0.1); 
}
header.hide-on-scroll { transform: translateY(-100%); pointer-events: none; visibility: hidden; }
header:not(.hide-on-scroll) { pointer-events: auto; visibility: visible; }
@media (max-width: 768px) { 
    header { padding: 15px 0; background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent); } 
    header.scrolled { padding: 12px 0; background: rgba(0, 0, 0, 0.98); } 
}

.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); }
.logo-icon { width: 36px; height: 36px; background: var(--primary); border-radius: 8px; display: flex; justify-content: center; align-items: center; color: var(--black); font-size: 1rem; box-shadow: 0 4px 15px var(--primary-glow); }
.desktop-nav { display: flex; gap: 32px; background: rgba(255,255,255,0.05); padding: 10px 32px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); }
.desktop-nav a { color: var(--white); font-weight: 500; font-size: 0.95rem; opacity: 0.8; transition: 0.3s;}
.desktop-nav a:hover { color: var(--primary); opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 15px; }
.hamburger { width: 44px; height: 44px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; z-index: 2001; }
.hamburger .bar { width: 20px; height: 2px; background: var(--white); transition: all 0.3s ease; border-radius: 2px; }
.hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--primary); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--primary); }

.logo-img {
    height: 40px; /* Adjust this value based on your header size */
    width: auto;
    object-fit: contain;
}

/* =========================================
   MOBILE DRAWER (STRICT FIREFOX HARD-FIX)
========================================= */
.drawer-overlay { 
    position: fixed; inset: 0; background: rgba(0,0,0,0.8); 
    backdrop-filter: none; -webkit-backdrop-filter: none;
    z-index: -10; opacity: 0; visibility: hidden; pointer-events: none; 
    transition: opacity 0.4s ease, visibility 0.4s, z-index 0s 0.4s; 
}
.drawer-overlay.visible { 
    opacity: 1; visibility: visible; pointer-events: auto; z-index: 1500; 
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.4s ease, visibility 0.4s, z-index 0s; 
}

.mobile-drawer { 
    position: fixed; top: 0; right: 0; width: 85%; max-width: 320px; height: 100vh; 
    background: var(--darker); border-left: 1px solid var(--glass-border); 
    z-index: -10; padding: 100px 30px 40px; display: flex; flex-direction: column;
    transform: translateX(105%); visibility: hidden; pointer-events: none; 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s, z-index 0s 0.4s; 
}
.mobile-drawer.open { 
    transform: translateX(0); box-shadow: -20px 0 50px rgba(0,0,0,0.9); 
    visibility: visible; pointer-events: auto; z-index: 2000; 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s, z-index 0s; 
}

.drawer-inner { display: flex; flex-direction: column; height: 100%; }
.drawer-nav { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px;}
.drawer-nav a { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--white); display: flex; align-items: center; gap: 15px; opacity: 0; transform: translateX(30px); transition: all 0.4s ease;}
.drawer-nav a span { font-size: 0.9rem; color: var(--primary); font-weight: 400; font-family: var(--font-body); }
.mobile-drawer.open .drawer-nav a { opacity: 1; transform: translateX(0); transition-delay: var(--delay); }
.drawer-action { opacity: 0; transform: translateY(20px); transition: all 0.4s ease; }
.mobile-drawer.open .drawer-action { opacity: 1; transform: translateY(0); transition-delay: var(--delay); }

/* =========================================
   BOTTOM MOBILE APP NAV
========================================= */
.bottom-app-nav { 
    position: fixed; bottom: 0; left: 0; right: 0; height: 75px; 
    background: rgba(0, 0, 0, 0.98); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); 
    border-top: 1px solid rgba(255,215,0,0.1); z-index: 1000; 
    display: flex; justify-content: space-around; align-items: center; 
    padding: 0 10px; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s, opacity 0.3s; 
    padding-bottom: env(safe-area-inset-bottom, 0px);
}
.bottom-app-nav.hide { transform: translateY(110%); opacity: 0; visibility: hidden; pointer-events: none; }
.bottom-app-nav .nav-item { 
    display: flex; flex-direction: column; align-items: center; gap: 4px; 
    color: var(--gray); font-size: 0.7rem; font-weight: 500; flex: 1; transition: 0.3s;
}
.bottom-app-nav .nav-item i { font-size: 1.3rem; margin-bottom: 2px;}
.bottom-app-nav .nav-item.active, .bottom-app-nav .nav-item:hover { color: var(--primary); }

.nav-action-btn { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--white); font-size: 0.7rem; font-weight: 600; text-decoration: none; flex: 1; position: relative; z-index: 10; }
.nav-action-btn .floating-btn { width: 50px; height: 50px; background: var(--primary); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--black); font-size: 1.3rem; transform: translateY(-20px); box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4); border: 4px solid #000; transition: 0.3s; }
.nav-action-btn:hover .floating-btn { transform: translateY(-25px) scale(1.05); }

/* =========================================
   HOME PAGE HERO
========================================= */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; overflow: hidden; }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: brightness(0.6) grayscale(30%); animation: cinematicPan 25s ease-in-out infinite alternate; will-change: transform; }
@keyframes cinematicPan { 0% { transform: scale(1); } 100% { transform: scale(1.12); } }

.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.9) 70%, #000000 100%); z-index: -1; }
.hero-container { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; width: 100%; }

.badge-pill { background: rgba(255, 215, 0, 0.1); border: 1px solid rgba(255, 215, 0, 0.3); color: var(--primary); padding: 8px 24px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 32px; text-transform: uppercase; letter-spacing: 2px; backdrop-filter: blur(10px); }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.05; margin-bottom: 24px; letter-spacing: -2px; text-shadow: 0 20px 40px rgba(0,0,0,0.8); }
.hero p { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--gray); max-width: 650px; margin: 0 auto 40px; line-height: 1.6; }

.section-header { text-align: center; margin-bottom: 60px; display: flex; flex-direction: column; align-items: center; }
.section-header h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -1px; line-height: 1.2; }
.section-header p { color: var(--gray); margin-top: 12px; font-size: 1.1rem; max-width: 600px; }
.header-line { width: 80px; height: 3px; background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%); margin-top: 24px; border-radius: 50%; box-shadow: 0 0 12px var(--primary-glow); }

.scroll-down-indicator { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); z-index: 5; }
.mouse-scroll { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.4); border-radius: 13px; position: relative; }
.mouse-scroll::before { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--primary); border-radius: 2px; animation: mouseWheel 2s ease-in-out infinite; }
@keyframes mouseWheel { 0% { transform: translate(-50%, 0); opacity: 1; } 100% { transform: translate(-50%, 15px); opacity: 0; } }
@media (max-width: 768px) { .scroll-down-indicator { display: none; } }

/* =========================================
   OUR EQUIPMENT SLIDER
========================================= */
.equipment-section-header { text-align: center; margin-bottom: 50px; }

.slider-wrapper { position: relative; width: 100%; padding: 10px 0; }
.slider-viewport { overflow: hidden; width: 100%; padding: 10px 5px; }
.slider-track { display: flex; gap: var(--slider-gap); transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); will-change: transform; touch-action: pan-y; }

.equip-card {
    flex: 0 0 calc((100% - (var(--slider-gap) * (var(--items-per-view) - 1))) / var(--items-per-view));
    height: 420px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #111111;
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s ease, border-color 0.4s ease;
    user-select: none;
}

.equip-card:hover { transform: translateY(-10px); border-color: var(--primary); }

.equip-card-link { display: block; width: 100%; height: 100%; text-decoration: none; position: relative; }

.equip-bg-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
    transition: transform 0.6s ease; filter: grayscale(40%) brightness(0.6);
}

.equip-card:hover .equip-bg-img { transform: scale(1.1); filter: grayscale(0%) brightness(0.7); }

.equip-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, #000000 0%, rgba(0,0,0,0.8) 40%, transparent 100%); z-index: 2;
}

.equip-content {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 24px; z-index: 3;
    display: flex; flex-direction: column;
}

.equip-icon {
    width: 50px; height: 50px; background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4); border-radius: 12px;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.5rem; color: var(--primary); margin-bottom: 16px;
    backdrop-filter: blur(10px); transition: background 0.3s;
}

.equip-card:hover .equip-icon { background: var(--primary); color: #000000; }
.equip-content h3 { color: #FFFFFF; font-size: 1.4rem; margin-bottom: 8px; font-family: var(--font-heading); }
.equip-content p { color: var(--gray); font-size: 0.9rem; line-height: 1.5; margin: 0; }

/* Slider Controls */
.slider-controls { display: flex; justify-content: flex-end; gap: 15px; margin-top: 30px; padding-right: 10px; }
.nav-btn {
    width: 48px; height: 48px; border-radius: 50%; background: transparent;
    border: 1px solid var(--primary); color: var(--primary); font-size: 1.2rem;
    display: flex; justify-content: center; align-items: center; cursor: pointer; transition: all 0.3s ease;
}
.nav-btn:hover:not(:disabled) { background: var(--primary); color: #000000; box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }
.nav-btn:disabled { border-color: #333333; color: #555555; cursor: not-allowed; }

/* =========================================
   POPULAR EQUIPMENT (TABS & SWIPE GRID)
========================================= */
.tabs-container { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn { background: transparent; color: var(--gray); border: 1px solid rgba(255,255,255,0.1); padding: 10px 24px; border-radius: var(--radius-pill); font-size: 0.95rem; }
.tab-btn.active, .tab-btn:hover { background: var(--primary); color: var(--black); border-color: var(--primary); box-shadow: 0 4px 15px var(--primary-glow); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.product-card { padding: 20px; display: flex; flex-direction: column; transition: all 0.4s ease; position: relative; background: var(--dark); border: 1px solid var(--glass-border); border-radius: var(--radius-md); }
.product-card:hover { border-color: var(--primary); box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1); transform: translateY(-5px); }

/* Badges & Overlays */
.product-badges { position: absolute; top: 20px; left: 20px; z-index: 2; }
.badge.featured { background: var(--primary); color: var(--black); font-size: 0.7rem; font-weight: 700; padding: 6px 12px; border-radius: var(--radius-pill); text-transform: uppercase; }
.wishlist-btn { position: absolute; top: 20px; right: 20px; z-index: 2; background: rgba(10,10,10,0.6); backdrop-filter: blur(5px); border-radius: 50%; width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; color: var(--white); border: 1px solid rgba(255,255,255,0.1); }
.wishlist-btn:hover { color: var(--primary); border-color: var(--primary); }

.product-img { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; background: var(--darker); margin-bottom: 20px; display: flex; justify-content: center; align-items: center; padding: 20px; }
.product-img img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5)); transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.1); }
.quick-view-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); display: flex; justify-content: center; align-items: center; opacity: 0; transition: all 0.3s ease; }
.product-card:hover .quick-view-overlay { opacity: 1; }

.info-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 0.85rem; font-weight: 600; }
.rating { color: var(--primary); }
.availability { color: var(--gray); display: flex; align-items: center; gap: 6px; }
.availability.in-stock { color: var(--success); }
.availability .dot { width: 8px; height: 8px; background: currentColor; border-radius: 50%; }

.product-info h3 { font-size: 1.3rem; margin-bottom: 4px; color: var(--white); }
.brand { color: var(--gray); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }

.price-row { display: flex; justify-content: space-between; background: rgba(255,255,255,0.05); padding: 12px 16px; border-radius: var(--radius-sm); }
.price-box { display: flex; flex-direction: column; }
.price-box .label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; margin-bottom: 2px;}
.price-box .price { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--white); }
.price-box.weekly .price { color: var(--gray); font-size: 1.05rem; }
.currency { font-size: 0.9rem; margin-right: 2px; font-weight: 500;}

/* Mobile Swipe Optimization */
@media (max-width: 768px) {
    .tabs-container { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 10px; -webkit-overflow-scrolling: touch; }
    .tabs-container::-webkit-scrollbar { display: none; }
    .tab-btn { white-space: nowrap; }
    
    .product-swipe-wrapper { margin: 0 -24px; padding: 0 24px 20px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .product-swipe-wrapper::-webkit-scrollbar { display: none; }
    .product-grid { display: flex; width: max-content; gap: 16px; transition: none; }
    .product-card { width: 300px; scroll-snap-align: center; }
}

/* =========================================
   WHY CHOOSE US & CTA
========================================= */
.counter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 50px; }
.counter-card { padding: 30px 20px; text-align: center; border-color: var(--glass-border); transition: all 0.3s ease; }
.counter-value { font-size: 2.5rem; color: var(--white); font-weight: 700; line-height: 1; margin-bottom: 5px; }
.counter-value .plus { color: var(--primary); }
.counter-card p { color: var(--gray); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-card { padding: 40px 30px; background: rgba(15, 15, 15, 0.6); border: 1px solid var(--glass-border); border-radius: var(--radius-md); transition: all var(--ease-out); }
.feature-card:hover { transform: translateY(-8px); border-color: var(--neon-border); background: rgba(20, 20, 20, 0.8); }
.feature-icon { width: 60px; height: 60px; background: rgba(255, 215, 0, 0.1); border: 1px solid var(--neon-border); border-radius: 16px; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; color: var(--primary); margin-bottom: 20px; }

.modern-cta { position: relative; padding: 120px 0; overflow: hidden; background: linear-gradient(to bottom, var(--black), #0a0a0a); }
.cta-glass-card { position: relative; padding: 80px 40px; text-align: center; background: rgba(18, 18, 18, 0.4); backdrop-filter: blur(20px); border: 1px solid rgba(255, 215, 0, 0.2); border-radius: var(--radius-md); overflow: hidden; z-index: 2; }
.cta-content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 15px; }
.cta-content p { color: var(--gray); font-size: 1.1rem; margin-bottom: 30px; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; }
@media (max-width: 600px) { .cta-glass-card { padding: 50px 20px; } .cta-buttons { flex-direction: column; } }

/* =========================================
   CATALOG PAGE STYLES (THE ARSENAL)
========================================= */
.premium-hero { position: relative; display: flex; align-items: center; justify-content: center; min-height: 60vh; padding-top: 100px; border-bottom: 1px solid var(--glass-border); }
@media (max-width: 768px) { .premium-hero { min-height: auto; padding-top: 140px; padding-bottom: 80px; display: block; } }

.hero-video-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--black); }
.parallax-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) contrast(1.1) grayscale(20%); transform: scale(1.05); animation: slowZoom 25s ease-in-out infinite alternate; will-change: transform; }
@keyframes slowZoom { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }
.hero-v2-overlay-gradient { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.9) 80%, var(--black) 100%); z-index: 1; }

.breadcrumb { display: inline-flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--gray); margin-bottom: 20px; }
.breadcrumb a { color: var(--gray); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .divider { font-size: 0.7rem; opacity: 0.5; }
.breadcrumb .current { color: var(--white); font-weight: 500; }

.massive-cinematic-heading { font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.05; letter-spacing: -2px; margin: 0 0 20px 0; text-shadow: 0 10px 40px rgba(0,0,0,0.8); }
.text-gradient-gold { background: linear-gradient(135deg, #FFFFFF 0%, var(--primary) 40%, #E5BB00 100%); background-size: 200% auto; color: transparent; -webkit-background-clip: text; background-clip: text; animation: goldShine 4s linear infinite; display: inline-block; }
@keyframes goldShine { to { background-position: 200% center; } }
.hero-subtext { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--gray); line-height: 1.6; max-width: 700px; margin: 0 auto; }

/* Sticky Filter Bar */
.filter-bar-wrapper { position: sticky; top: 80px; z-index: 900; margin-top: -40px; transition: all 0.4s ease; }
.filter-bar-wrapper.is-sticky { margin-top: 0; top: 75px; }
@media (max-width: 600px) { .filter-bar-wrapper { top: 65px; margin-top: -20px; } .filter-bar-wrapper.is-sticky { top: 65px; } }

.filter-bar { display: flex; align-items: center; gap: 16px; padding: 16px 24px; }
.filter-search { flex: 1; display: flex; align-items: center; gap: 12px; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); padding: 12px 20px; border-radius: var(--radius-pill); transition: all 0.3s ease; }
.filter-search:focus-within { border-color: var(--primary); background: rgba(0,0,0,0.8); }
.filter-search i { color: var(--gray); font-size: 1.1rem; }
.filter-search input { background: transparent; border: none; outline: none; color: var(--white); width: 100%; font-family: var(--font-body); font-size: 1rem; }
.filter-search input::placeholder { color: rgba(255,255,255,0.4); }

.filter-dropdown { display: flex; align-items: center; gap: 10px; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); padding: 12px 20px; border-radius: var(--radius-pill); min-width: 200px; }
.filter-dropdown select { background: transparent; border: none; outline: none; color: var(--white); font-family: var(--font-body); font-size: 0.95rem; width: 100%; cursor: pointer; -webkit-appearance: none; }
.filter-dropdown select option { background: var(--dark); color: var(--white); }

@media (max-width: 992px) { .filter-bar { flex-wrap: wrap; } .filter-search { min-width: 100%; } .filter-dropdown { flex: 1; min-width: calc(50% - 8px); } }
@media (max-width: 600px) { .filter-bar { padding: 16px; gap: 12px;} .filter-dropdown { min-width: 100%; } }

/* Catalog Meta & Empty State */
.catalog-section { padding-top: 60px; min-height: 60vh; }
.catalog-meta { display: flex; justify-content: space-between; align-items: center; }
.btn-clear { background: transparent; color: var(--primary); font-size: 0.9rem; text-decoration: underline; display: flex; align-items: center; gap: 8px; border: none; cursor: pointer;}
.btn-clear:hover { color: var(--white); }

.empty-state { padding: 60px 20px; border-style: dashed; border-color: rgba(255,255,255,0.2); margin-top: 20px; }

/* Catalog Grid & Product Cards */
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.catalog-card { position: relative; padding: 16px; display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.catalog-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(0,0,0,0.8); }

.card-badges { position: absolute; top: 28px; left: 28px; right: 28px; display: flex; justify-content: space-between; align-items: flex-start; z-index: 2; pointer-events: none;}
.badge-featured { background: var(--primary); color: var(--black); font-size: 0.7rem; font-weight: 700; padding: 6px 12px; border-radius: var(--radius-pill); text-transform: uppercase; }
.btn-wishlist { background: rgba(0,0,0,0.5); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.1); width: 36px; height: 36px; border-radius: 50%; color: var(--white); display: flex; justify-content: center; align-items: center; pointer-events: auto; }
.btn-wishlist:hover { background: var(--primary); color: var(--black); border-color: var(--primary); }

.card-img-wrapper { background: var(--black); border-radius: 16px; aspect-ratio: 4/3; display: flex; justify-content: center; align-items: center; padding: 24px; margin-bottom: 20px; overflow: hidden; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); transition: transform 0.6s ease; }
.catalog-card:hover .card-img-wrapper img { transform: scale(1.15); }

.card-content { flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 0.85rem; font-weight: 600; }
.card-category { color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.card-rating { color: var(--white); display: flex; align-items: center; gap: 4px; }
.card-rating i { color: var(--primary); }

.card-title { font-size: 1.3rem; margin-bottom: 8px; line-height: 1.3; color: var(--white); }

.card-availability { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gray); margin-bottom: 20px; }
.card-availability.in-stock { color: #00E676; }
.pulse-dot { width: 8px; height: 8px; background: currentColor; border-radius: 50%; position: relative; }
.card-availability.in-stock .pulse-dot::after { content: ''; position: absolute; inset: -4px; border: 2px solid currentColor; border-radius: 50%; animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

.card-pricing { display: flex; justify-content: space-between; align-items: center; padding: 12px; background: rgba(0,0,0,0.3); border-radius: 12px; border: 1px solid rgba(255,255,255,0.02); margin-top: auto; }
.price-col { display: flex; flex-direction: column; }
.price-label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; margin-bottom: 2px; }
.price-val { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--white); }
.rupee { font-size: 0.9rem; font-weight: 500; margin-right: 2px; }

.product-card {
        transition:
            opacity 0.5s ease,
            transform 0.5s ease;
    }

    .product-card.hidden-product {
        display: none !important;
    }

    .product-card.show-product {
        animation:
            smoothReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes smoothReveal {

        0% {
            opacity: 0;
            transform: translateY(40px) scale(0.96);
        }

        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

    }

    .load-more-btn {

        min-width: 240px;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;

    }

    .load-more-btn:hover {

        transform: translateY(-4px);

    }

/* =========================================
   FOOTER
========================================= */
.footer { background: var(--dark); padding: 80px 0 30px; border-top: 1px solid var(--glass-border); position: relative; z-index: 1;}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 40px;} }

.footer-brand .logo-icon { margin-bottom: 10px; }
.footer-desc { color: var(--gray); margin: 20px 0; max-width: 320px; font-size: 0.95rem; }
.social-links { display: flex; gap: 15px; }
.social-links a { width: 40px; height: 40px; background: var(--black); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--white); transition: all var(--ease-out); }
.social-links a:hover { background: var(--primary); color: var(--black); border-color: var(--primary); transform: translateY(-3px); }

.footer-links h4, .footer-contact h4 { font-size: 1.2rem; margin-bottom: 24px; color: var(--white); font-family: var(--font-heading); }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: var(--gray); font-size: 0.95rem; transition: all 0.3s; display: inline-block; }
.footer-links ul li a:hover { color: var(--primary); transform: translateX(5px); }

.footer-contact ul li { display: flex; gap: 15px; color: var(--gray); margin-bottom: 16px; font-size: 0.95rem; align-items: flex-start; }
.footer-contact i { color: var(--primary); margin-top: 4px; font-size: 1.1rem; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: var(--gray); font-size: 0.9rem; }
.back-to-top { width: 44px; height: 44px; background: var(--darker); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--white); transition: all 0.3s; }
.back-to-top:hover { background: var(--primary); color: var(--black); }

@media (max-width: 600px) { .footer-bottom { flex-direction: column-reverse; gap: 20px; text-align: center; } }