/* ==========================================================================
   SLOX VIP COUTURE — Premium Design System
   Theme: Luxury Dark Mode with Neon Pink, Cyber Cyan & Gold Accents
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* === Core Brand Colors === */
    --color-bg:              #06080f;
    --color-bg-2:            #0a0e1a;
    --color-surface:         #0d1221;
    --color-surface-2:       #121830;
    --color-border:          rgba(255,255,255,0.07);
    --color-border-glow:     rgba(236, 72, 153, 0.25);

    /* === Neon Accent Palette === */
    --color-pink:            #ff2d78;
    --color-pink-light:      #ff6fab;
    --color-pink-glow:       rgba(255, 45, 120, 0.4);
    --color-pink-dark:       #be185d;
    --color-cyan:            #00d4ff;
    --color-cyan-glow:       rgba(0, 212, 255, 0.3);
    --color-cyan-dark:       #0891b2;
    --color-purple:          #a855f7;
    --color-purple-glow:     rgba(168, 85, 247, 0.3);
    --color-gold:            #f59e0b;
    --color-gold-glow:       rgba(245, 158, 11, 0.3);

    /* === Text Hierarchy === */
    --color-text-primary:    #f0f4ff;
    --color-text-secondary:  #8892aa;
    --color-text-muted:      #4a5568;

    /* === Gradients === */
    --grad-vip:              linear-gradient(135deg, #ff2d78 0%, #a855f7 50%, #00d4ff 100%);
    --grad-hero-overlay:     linear-gradient(180deg, rgba(255,45,120,0.04) 0%, rgba(6,8,15,0) 100%);
    --grad-surface-glass:    linear-gradient(145deg, rgba(13,18,33,0.7) 0%, rgba(18,24,48,0.3) 100%);
    --grad-card:             linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    --grad-glow-pink:        radial-gradient(circle, rgba(255,45,120,0.18) 0%, rgba(0,0,0,0) 70%);
    --grad-glow-cyan:        radial-gradient(circle, rgba(0,212,255,0.12) 0%, rgba(0,0,0,0) 70%);

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

    /* === Motion & Shadows === */
    --transition-smooth:     all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick:      all 0.22s ease-out;
    --shadow-premium:        0 20px 60px -15px rgba(0,0,0,0.7);
    --shadow-glow-pink:      0 0 30px rgba(255,45,120,0.4);
    --shadow-glow-cyan:      0 0 30px rgba(0,212,255,0.3);
    --shadow-card:           0 8px 32px rgba(0,0,0,0.5);

    /* === Layout === */
    --container-width:       1280px;
    --radius-sm:             8px;
    --radius-md:             16px;
    --radius-lg:             24px;
    --radius-xl:             36px;
    --radius-full:           9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: #1e2a45; border-radius: var(--radius-full); border: 2px solid var(--color-bg); }
::-webkit-scrollbar-thumb:hover { background: var(--color-pink); }

/* === Utility === */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.container { width: 90%; max-width: var(--container-width); margin: 0 auto; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.text-center { text-align: center; }
.text-pink { color: var(--color-pink); }
.text-cyan { color: var(--color-cyan); }
.text-gold { color: var(--color-gold); }
.mt-4 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.hide-mobile { display: flex; }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--color-bg);
    z-index: 10000;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-content {
    display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}

.loader-logo-wrapper {
    position: relative; width: 110px; height: 110px;
    display: flex; justify-content: center; align-items: center;
}

.loader-logo { width: 90px; height: auto; animation: loaderPulse 2s infinite ease-in-out; z-index: 2; }

.loader-glow-ring {
    position: absolute; width: 100%; height: 100%;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-pink);
    animation: loaderRing 2s infinite ease-in-out;
    box-shadow: var(--shadow-glow-pink);
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255,45,120,0.4)); }
    50%        { transform: scale(1.08); filter: drop-shadow(0 0 25px rgba(255,45,120,0.8)); }
}
@keyframes loaderRing {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50%        { transform: scale(1.15); opacity: 0.4; }
}

.loader-brand-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 6px;
    background: var(--grad-vip);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loader-bar-container {
    width: 220px; height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-full); overflow: hidden;
}

.loader-bar {
    width: 0%; height: 100%;
    background: var(--grad-vip);
    border-radius: var(--radius-full);
    animation: loaderProgress 1.8s forwards cubic-bezier(0.1, 0.8, 0.25, 1);
}

.loader-text { font-size: 0.78rem; color: var(--color-text-muted); letter-spacing: 2px; text-transform: uppercase; }

@keyframes loaderProgress { 0% { width: 0%; } 100% { width: 100%; } }

/* ==========================================================================
   BACKGROUND AMBIENT ORBS
   ========================================================================== */
.glow-bg {
    position: fixed; border-radius: var(--radius-full);
    filter: blur(130px); z-index: -3; pointer-events: none;
    animation: floatOrb 18s infinite alternate ease-in-out;
}
.glow-pink { width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,45,120,0.14) 0%, transparent 70%); top: 5%; left: -120px; }
.glow-blue { width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%); top: 45%; right: -150px; animation-delay: -6s; }
.glow-purple { width: 400px; height: 400px; background: radial-gradient(circle, rgba(168,85,247,0.1) 0%, transparent 70%); bottom: 10%; left: 30%; animation-delay: -12s; }
@keyframes floatOrb { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(60px, 100px) scale(1.2); } }

/* Cyber grid overlay */
.cyber-grid-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255,45,120,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,45,120,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2; pointer-events: none;
}

/* ==========================================================================
   TOP TICKER BAR
   ========================================================================== */
.top-ticker-bar {
    background: var(--color-pink);
    background: linear-gradient(90deg, #ff2d78, #a855f7, #00d4ff, #ff2d78);
    background-size: 300% 100%;
    animation: tickerGradient 6s linear infinite;
    overflow: hidden;
    white-space: nowrap;
    padding: 0.55rem 0;
    position: relative; z-index: 1001;
}

.ticker-content {
    display: inline-flex; gap: 0;
    animation: tickerScroll 30s linear infinite;
}

.ticker-content span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: white;
    padding: 0 3rem;
    white-space: nowrap;
}

@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes tickerGradient { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed; top: 32px; left: 0; width: 100%;
    z-index: 1000; padding: 1rem 0;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    top: 0; padding: 0.7rem 0;
    background: rgba(6,8,15,0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.navbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }

.nav-logo { display: flex; align-items: center; gap: 0.85rem; flex-shrink: 0; }

.logo-img-wrapper {
    width: 46px; height: 46px; border-radius: var(--radius-md);
    background: rgba(255,45,120,0.08);
    border: 1px solid rgba(255,45,120,0.2);
    display: flex; justify-content: center; align-items: center;
    transition: var(--transition-smooth);
    overflow: hidden; padding: 4px;
}

.logo-img-wrapper img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 6px var(--color-pink-glow)); }

.nav-logo:hover .logo-img-wrapper { box-shadow: var(--shadow-glow-pink); transform: rotate(8deg) scale(1.05); }

.logo-text-wrapper { display: flex; flex-direction: column; line-height: 1; }

.logo-text {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 1.6rem; letter-spacing: 2px;
    background: var(--grad-vip);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.logo-tag { font-size: 0.6rem; font-weight: 600; letter-spacing: 3px; color: var(--color-text-muted); text-transform: uppercase; margin-top: 1px; }

.nav-links { display: flex; gap: 1.75rem; }

.nav-links a {
    font-size: 0.875rem; font-weight: 500; color: var(--color-text-secondary);
    position: relative; padding: 0.3rem 0; letter-spacing: 0.3px;
}

.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0;
    height: 1.5px; background: var(--color-pink);
    box-shadow: 0 0 10px var(--color-pink);
    transition: var(--transition-quick);
}

.nav-links a:hover, .nav-links a.active { color: var(--color-text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.nav-cart-btn {
    position: relative; display: flex; align-items: center; gap: 0.5rem;
    background: rgba(255,45,120,0.06);
    border: 1px solid rgba(255,45,120,0.2);
    padding: 0.55rem 1rem; border-radius: var(--radius-full);
    transition: var(--transition-smooth); color: var(--color-text-primary);
    font-size: 0.85rem; font-weight: 600;
}
.nav-cart-btn:hover { background: rgba(255,45,120,0.12); box-shadow: var(--shadow-glow-pink); }

.cart-icon-wrapper { position: relative; }
.cart-icon-wrapper i { font-size: 1.1rem; }

.cart-badge {
    position: absolute; top: -6px; right: -8px;
    background: var(--color-pink); color: white;
    font-size: 0.65rem; font-weight: 800;
    width: 17px; height: 17px;
    border-radius: var(--radius-full);
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 0 12px var(--color-pink); border: 1.5px solid var(--color-bg);
}

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; width: 26px; }
.mobile-menu-btn .bar { width: 100%; height: 2px; background: var(--color-text-primary); border-radius: var(--radius-full); transition: var(--transition-quick); }

/* === Buttons === */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem; font-weight: 700; letter-spacing: 0.3px;
    border-radius: var(--radius-full); transition: var(--transition-smooth);
    white-space: nowrap; cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-pink), #c81d6b);
    color: white;
    box-shadow: 0 4px 20px rgba(255,45,120,0.4);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #ff5ca0, var(--color-pink));
    box-shadow: 0 6px 30px rgba(255,45,120,0.6);
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.82rem; }
.btn-md { padding: 0.75rem 1.75rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.mobile-drawer {
    position: fixed; top: 0; right: -100%; width: 320px; height: 100vh;
    background: linear-gradient(160deg, #0d1221, #0a0e1a);
    border-left: 1px solid var(--color-border);
    backdrop-filter: blur(20px);
    z-index: 2000;
    box-shadow: -20px 0 60px rgba(0,0,0,0.6);
    padding: 2rem 1.75rem;
    display: flex; flex-direction: column; gap: 2.5rem;
    transition: var(--transition-smooth);
}
.mobile-drawer.open { right: 0; }

.drawer-header { display: flex; justify-content: space-between; align-items: center; }
.drawer-brand { display: flex; align-items: center; gap: 0.75rem; }
.drawer-brand img { width: 36px; height: 36px; object-fit: contain; }
.drawer-brand span { font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; background: var(--grad-vip); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.close-btn {
    width: 36px; height: 36px; border-radius: var(--radius-full);
    background: rgba(255,255,255,0.06); border: 1px solid var(--color-border);
    display: flex; justify-content: center; align-items: center;
    color: var(--color-text-secondary); transition: var(--transition-quick);
}
.close-btn:hover { background: rgba(255,45,120,0.15); color: var(--color-pink); border-color: var(--color-pink); }

.drawer-links { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.drawer-links a {
    display: flex; align-items: center; gap: 1rem;
    font-size: 1.05rem; font-weight: 600; color: var(--color-text-secondary);
    padding: 0.85rem 1rem; border-radius: var(--radius-md);
    transition: var(--transition-quick);
}
.drawer-links a:hover { background: rgba(255,45,120,0.08); color: var(--color-pink); padding-left: 1.5rem; }
.drawer-links a i { width: 20px; text-align: center; font-size: 0.9rem; }

.drawer-footer { display: flex; flex-direction: column; gap: 1rem; }
.drawer-guarantee { display: flex; align-items: center; gap: 0.75rem; font-size: 0.78rem; color: var(--color-text-muted); padding: 0.75rem 1rem; background: rgba(255,255,255,0.03); border-radius: var(--radius-md); border: 1px solid var(--color-border); }
.drawer-guarantee i { color: var(--color-gold); }

/* ==========================================================================
   SECTION HEADER SYSTEM
   ========================================================================== */
.section-header { max-width: 650px; margin: 0 auto 4.5rem; }

.section-tagline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; color: var(--color-pink); font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem;
    background: rgba(255,45,120,0.06);
    border: 1px solid rgba(255,45,120,0.15);
    padding: 0.4rem 1rem; border-radius: var(--radius-full);
}

.section-title { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.section-desc { font-size: 1rem; color: var(--color-text-secondary); line-height: 1.7; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding-top: 130px; padding-bottom: 7rem;
    min-height: 100vh;
    position: relative; overflow: hidden;
    background-image: var(--grad-hero-overlay);
    display: flex; align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem; align-items: center;
}

/* === VIP Badge === */
.badge-vip {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(255,45,120,0.06);
    border: 1px solid rgba(255,45,120,0.2);
    color: var(--color-pink); padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full); font-size: 0.72rem;
    font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 1.75rem;
}
.badge-pulse {
    width: 7px; height: 7px;
    background: var(--color-pink); border-radius: var(--radius-full);
    position: relative; flex-shrink: 0;
}
.badge-pulse::after {
    content: ''; position: absolute; inset: 0;
    background: var(--color-pink); border-radius: var(--radius-full);
    animation: pingPulse 1.5s infinite ease-out;
}
@keyframes pingPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(3.5); opacity: 0; } }

.hero-title {
    font-family: var(--font-heading); font-size: 4.2rem; font-weight: 900;
    line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 1.5rem;
}
.highlight-pink {
    display: inline-block;
    background: linear-gradient(135deg, #ff2d78 0%, #ff6fab 50%, #a855f7 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 4s linear infinite;
    background-size: 200% 100%;
}
@keyframes titleShimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.hero-subtitle { font-size: 1.05rem; color: var(--color-text-secondary); margin-bottom: 2.25rem; max-width: 560px; line-height: 1.75; }

.hero-ctas { display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }

/* === Hero Product Style Switcher === */
.hero-switcher-box {
    background: var(--grad-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}
.switcher-label {
    display: block; font-size: 0.75rem; font-weight: 600;
    color: var(--color-text-muted); text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 1rem;
}
.hero-tabs { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.hero-tab {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.45rem 1rem; border-radius: var(--radius-full);
    font-size: 0.78rem; font-weight: 600;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    transition: var(--transition-quick); cursor: pointer;
}
.hero-tab:hover { color: var(--color-text-primary); border-color: rgba(255,255,255,0.15); }
.hero-tab.active { background: rgba(255,45,120,0.1); border-color: var(--color-pink); color: var(--color-pink); box-shadow: 0 0 12px rgba(255,45,120,0.2); }

.tab-dot { width: 6px; height: 6px; border-radius: var(--radius-full); flex-shrink: 0; }
.tab-dot.pink    { background: var(--color-pink); box-shadow: 0 0 6px var(--color-pink); }
.tab-dot.cyan    { background: var(--color-cyan); box-shadow: 0 0 6px var(--color-cyan); }
.tab-dot.purple  { background: var(--color-purple); box-shadow: 0 0 6px var(--color-purple); }
.tab-dot.gold    { background: var(--color-gold); box-shadow: 0 0 6px var(--color-gold); }

/* === Hero Stats === */
.hero-stats {
    display: flex; gap: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 900; }
.stat-lbl { font-size: 0.75rem; color: var(--color-text-muted); display: flex; align-items: center; gap: 0.3rem; }

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

.pedestal-showcase { position: relative; width: 100%; max-width: 460px; }

.pedestal-backdrop { position: absolute; inset: 0; display: flex; justify-content: center; align-items: center; }
.studio-light-ring {
    width: 380px; height: 380px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,45,120,0.08);
    animation: studioRingPulse 4s infinite ease-in-out;
}
@keyframes studioRingPulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.05); opacity: 1; } }

.pedestal-glow {
    position: absolute; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,45,120,0.18) 0%, transparent 70%);
    border-radius: var(--radius-full); animation: glowBreath 4s infinite ease-in-out;
}
@keyframes glowBreath { 0%, 100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }

.pedestal-card {
    position: relative; z-index: 2;
    background: var(--grad-surface-glass);
    border: 1px solid var(--color-border-glow);
    border-radius: var(--radius-xl); padding: 2rem;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-card), 0 0 50px rgba(255,45,120,0.08);
    display: flex; flex-direction: column; gap: 1.25rem;
    transition: var(--transition-smooth);
}
.pedestal-card:hover { box-shadow: var(--shadow-card), 0 0 70px rgba(255,45,120,0.15); transform: translateY(-4px); }

.pedestal-header { align-items: center; }
.pedestal-brand { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; color: var(--color-text-muted); display: flex; align-items: center; gap: 0.4rem; }
.pedestal-brand i { color: var(--color-gold); }

.pedestal-badge {
    padding: 0.3rem 0.8rem; border-radius: var(--radius-full);
    font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    transition: var(--transition-quick);
}
.pedestal-badge.hot       { background: var(--color-pink); color: white; box-shadow: 0 0 15px rgba(255,45,120,0.5); }
.pedestal-badge.new       { background: var(--color-cyan); color: #000; }
.pedestal-badge.exclusive { background: var(--color-purple); color: white; }
.pedestal-badge.trending  { background: var(--color-gold); color: #000; }

/* Studio Frame */
.studio-frame {
    position: relative; background: rgba(255,255,255,0.02);
    border-radius: var(--radius-lg); overflow: hidden;
    padding: 1.5rem;
    min-height: 240px; display: flex; justify-content: center; align-items: center;
    border: 1px solid rgba(255,255,255,0.04);
}

.hero-product-img {
    max-height: 200px; width: auto;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.7));
    animation: floatProduct 4.5s infinite ease-in-out;
    transition: var(--transition-smooth);
}
@keyframes floatProduct {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%        { transform: translateY(-18px) rotate(1deg); }
}

.floor-shadow {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    width: 120px; height: 16px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.4), transparent);
    border-radius: var(--radius-full); animation: shadowFloat 4.5s infinite ease-in-out;
}
@keyframes shadowFloat { 0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); } 50% { opacity: 0.3; transform: translateX(-50%) scale(0.7); } }

.pedestal-info { align-items: flex-start; gap: 1rem; }
.pedestal-info h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.2rem; }
.pedestal-tag { font-size: 0.75rem; color: var(--color-text-muted); }
.pedestal-price { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900; color: var(--color-pink); white-space: nowrap; }

/* Floating Badges */
.floating-badge {
    position: absolute; display: flex; align-items: center; gap: 0.6rem;
    background: var(--grad-surface-glass); border: 1px solid var(--color-border);
    backdrop-filter: blur(12px); padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-card);
    font-size: 0.72rem; z-index: 5;
    animation: floatBadge 3s infinite ease-in-out alternate;
}
.badge-left { left: -10%; top: 30%; animation-delay: -1.5s; }
.badge-right { right: -8%; bottom: 30%; }
.floating-badge strong { display: block; font-size: 0.75rem; font-weight: 700; margin-bottom: 0.1rem; }
.floating-badge span { color: var(--color-text-muted); display: block; }
.badge-icon { width: 30px; height: 30px; border-radius: var(--radius-full); background: rgba(255,45,120,0.1); display: flex; justify-content: center; align-items: center; color: var(--color-pink); flex-shrink: 0; }
@keyframes floatBadge { 0% { transform: translateY(0); } 100% { transform: translateY(-8px); } }

/* Quick Add Hero Button */
.quick-add-hero-btn { margin-top: 0.5rem; }

/* ==========================================================================
   SOLE TECH INSPECTION STATION
   ========================================================================== */
.showcase-section { padding: 7rem 0; position: relative; }
.showcase-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,45,120,0.3), transparent); }

.sole-station-box {
    background: var(--grad-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-card);
}

.sole-station-nav {
    display: flex; gap: 0;
    border-bottom: 1px solid var(--color-border);
    background: rgba(0,0,0,0.2); padding: 0 1rem;
    flex-wrap: wrap;
}

.station-tab {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 1.2rem 1.75rem; font-size: 0.85rem; font-weight: 600;
    color: var(--color-text-muted); border-bottom: 2px solid transparent;
    transition: var(--transition-quick); cursor: pointer;
}
.station-tab:hover { color: var(--color-text-primary); }
.station-tab.active { color: var(--color-pink); border-bottom-color: var(--color-pink); background: rgba(255,45,120,0.04); }

.sole-station-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; min-height: 480px; }

.station-visual-pane { position: relative; border-right: 1px solid var(--color-border); }

.station-view { display: none; height: 100%; padding: 2.5rem; flex-direction: column; gap: 1rem; }
.station-view.active { display: flex; }

.studio-frame-inner {
    flex: 1; position: relative; display: flex; justify-content: center; align-items: center;
    background: rgba(255,255,255,0.01); border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.04); overflow: hidden;
}

.station-img { max-height: 320px; max-width: 90%; width: auto; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6)); transition: var(--transition-smooth); }
.station-img.zoomable:hover { transform: scale(1.06); }

.station-instruction { font-size: 0.78rem; color: var(--color-text-muted); display: flex; align-items: center; gap: 0.4rem; padding-top: 0.5rem; }
.station-instruction i { color: var(--color-pink); }

/* === Hotspot Pins === */
.hotspot-pin {
    position: absolute; cursor: pointer; z-index: 10;
}
.pin-1 { top: 20%; left: 28%; }
.pin-2 { top: 50%; left: 50%; }
.pin-3 { bottom: 25%; right: 25%; }

.pin-dot {
    display: block; width: 12px; height: 12px;
    background: var(--color-pink); border-radius: var(--radius-full);
    border: 2px solid white; box-shadow: var(--shadow-glow-pink);
    position: relative; z-index: 2; transition: var(--transition-quick);
}
.hotspot-pin:hover .pin-dot { transform: scale(1.3); }

.pin-ripple {
    display: block; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 12px; height: 12px;
    border-radius: var(--radius-full);
    background: var(--color-pink); opacity: 0.5;
    animation: pinRipple 2s infinite ease-out;
}
@keyframes pinRipple { 0% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; } 100% { transform: translate(-50%,-50%) scale(4); opacity: 0; } }

/* Hotspot Tooltip on hover */
.hotspot-pin::before {
    content: attr(data-title);
    position: absolute; bottom: calc(100% + 12px); left: 50%;
    transform: translateX(-50%);
    background: var(--color-surface-2);
    border: 1px solid var(--color-border-glow);
    color: var(--color-text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm); font-size: 0.72rem; font-weight: 600;
    white-space: nowrap; pointer-events: none;
    opacity: 0; transition: var(--transition-quick);
    box-shadow: var(--shadow-card);
}
.hotspot-pin:hover::before { opacity: 1; }

/* Station info pane */
.station-info-pane { padding: 2.5rem; display: flex; align-items: flex-start; }
.hotspot-info-card { width: 100%; }
.hotspot-icon-circle {
    width: 52px; height: 52px; border-radius: var(--radius-full);
    background: rgba(255,45,120,0.1); border: 1px solid rgba(255,45,120,0.2);
    display: flex; justify-content: center; align-items: center;
    color: var(--color-pink); font-size: 1.3rem; margin-bottom: 1.25rem;
}
.hotspot-info-card h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
.hotspot-info-card p { font-size: 0.9rem; color: var(--color-text-secondary); line-height: 1.7; }
.hotspot-divider { border: none; border-top: 1px solid var(--color-border); margin: 1.5rem 0; }
.sole-benefits-list { display: flex; flex-direction: column; gap: 1.25rem; }
.benefit-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.benefit-item i { font-size: 0.9rem; margin-top: 0.2rem; flex-shrink: 0; }
.benefit-item strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.benefit-item span { font-size: 0.8rem; color: var(--color-text-muted); line-height: 1.5; }

/* ==========================================================================
   GALLERY LOOKBOOK SECTION
   ========================================================================== */
.gallery-section { padding: 7rem 0; }
.gallery-section::before { content: ''; position: absolute; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,212,255,0.2), transparent); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}
.gallery-card.featured { grid-row: span 2; }

.gallery-img-box {
    position: relative; overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    height: 100%; min-height: 220px;
    background: var(--color-surface);
    cursor: pointer;
}
.gallery-card.featured .gallery-img-box { min-height: 460px; }

.gallery-img-box img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-img-box:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6,8,15,0.9) 0%, rgba(6,8,15,0.2) 60%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.5rem; opacity: 0; transition: var(--transition-smooth);
}
.gallery-img-box:hover .gallery-overlay { opacity: 1; }

.gallery-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--color-pink); margin-bottom: 0.4rem; }
.gallery-overlay h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.gallery-zoom-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(255,45,120,0.9); color: white;
    padding: 0.45rem 1rem; border-radius: var(--radius-full);
    font-size: 0.75rem; font-weight: 700; align-self: flex-start;
    border: none; cursor: pointer; transition: var(--transition-quick);
}
.gallery-zoom-btn:hover { background: var(--color-pink); transform: scale(1.04); }

/* ==========================================================================
   BRAND FEATURES SECTION
   ========================================================================== */
.features-section { padding: 7rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

.feature-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); padding: 2.25rem;
    transition: var(--transition-smooth); backdrop-filter: blur(10px);
    position: relative; overflow: hidden;
    opacity: 1; transform: translateY(0);
}
.feature-card::after {
    content: ''; position: absolute; inset: 0;
    background: var(--grad-glow-pink); opacity: 0;
    transition: var(--transition-smooth); pointer-events: none;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(255,45,120,0.2); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5); }
.feature-card:hover::after { opacity: 1; }

.feature-icon-wrapper {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    display: flex; justify-content: center; align-items: center;
    font-size: 1.4rem; margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.feature-icon-wrapper.blue   { background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.18); color: var(--color-cyan); }
.feature-icon-wrapper.pink   { background: rgba(255,45,120,0.08); border: 1px solid rgba(255,45,120,0.18); color: var(--color-pink); }
.feature-icon-wrapper.purple { background: rgba(168,85,247,0.08); border: 1px solid rgba(168,85,247,0.18); color: var(--color-purple); }
.feature-icon-wrapper.gold   { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.18); color: var(--color-gold); }

.feature-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.7rem; position: relative; z-index: 1; }
.feature-desc { font-size: 0.9rem; color: var(--color-text-secondary); line-height: 1.7; position: relative; z-index: 1; }

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.products-section { padding: 7rem 0; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

.product-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition-smooth); display: flex; flex-direction: column;
    position: relative;
    opacity: 1; transform: translateY(0);
}
.product-card:hover { border-color: rgba(255,45,120,0.25); box-shadow: 0 20px 50px -15px rgba(255,45,120,0.15); transform: translateY(-6px); }

.product-badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 5;
    padding: 0.3rem 0.85rem; border-radius: var(--radius-full);
    font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
}
.product-badge.hot       { background: var(--color-pink); color: white; box-shadow: 0 0 15px rgba(255,45,120,0.5); }
.product-badge.new       { background: var(--color-cyan); color: #000; }
.product-badge.exclusive { background: var(--color-purple); color: white; }
.product-badge.trending  { background: var(--color-gold); color: #000; }

.product-studio-box {
    position: relative; padding-top: 100%; background: rgba(255,255,255,0.05);
    overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.product-studio-box .product-img {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    max-width: 78%; max-height: 78%; object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
    transition: var(--transition-smooth);
}
.product-card:hover .product-studio-box .product-img { transform: translate(-50%, -50%) scale(1.08); }

.product-quick-view {
    position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%) translateY(10px);
    background: rgba(6,8,15,0.85); backdrop-filter: blur(10px);
    border: 1px solid var(--color-border-glow); border-radius: var(--radius-full);
    padding: 0.4rem 1rem; font-size: 0.72rem; font-weight: 600; white-space: nowrap;
    color: var(--color-text-primary); cursor: pointer; opacity: 0; transition: var(--transition-smooth);
}
.product-quick-view:hover { background: rgba(255,45,120,0.9); }
.product-card:hover .product-quick-view { opacity: 1; transform: translateX(-50%) translateY(0); }

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

.rating { font-size: 0.75rem; }
.stock-status.in-stock { font-size: 0.72rem; color: #10b981; display: flex; align-items: center; gap: 0.3rem; }
.stock-status i { font-size: 0.55rem; }

.product-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
.product-tagline { font-size: 0.78rem; color: var(--color-text-muted); }
.product-price { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; color: var(--color-pink); }

.size-label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--color-text-muted); margin-bottom: 0.4rem; }
.size-select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-border);
    padding: 0.6rem 1rem; border-radius: var(--radius-sm);
    font-size: 0.83rem; color: var(--color-text-primary); cursor: pointer;
    transition: var(--transition-quick);
}
.size-select:focus { border-color: var(--color-pink); background: rgba(255,45,120,0.04); }
.size-select option { background: var(--color-surface); color: var(--color-text-primary); }

/* ==========================================================================
   SIZE GUIDE SECTION
   ========================================================================== */
.size-guide-section { padding: 5rem 0; }

.size-guide-box {
    background: linear-gradient(135deg, rgba(255,45,120,0.06) 0%, rgba(0,212,255,0.04) 100%);
    border: 1px solid var(--color-border); border-radius: var(--radius-xl);
    padding: 4rem; position: relative; overflow: hidden;
}
.size-guide-box::before {
    content: ''; position: absolute; right: -50px; top: -50px;
    width: 300px; height: 300px;
    background: var(--grad-glow-pink); border-radius: var(--radius-full);
    pointer-events: none;
}

.size-guide-content { max-width: 680px; position: relative; z-index: 2; }

.size-tabs-nav { display: flex; gap: 0.6rem; margin: 2rem 0; flex-wrap: wrap; }
.size-tab {
    padding: 0.55rem 1.25rem; border-radius: var(--radius-full);
    font-size: 0.83rem; font-weight: 600; cursor: pointer;
    background: rgba(255,255,255,0.04); border: 1px solid var(--color-border);
    color: var(--color-text-secondary); transition: var(--transition-quick);
}
.size-tab:hover { color: var(--color-text-primary); }
.size-tab.active { background: rgba(255,45,120,0.12); border-color: var(--color-pink); color: var(--color-pink); }

.size-display-panel {
    background: rgba(0,0,0,0.3); border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); padding: 2rem;
}
.size-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 1.5rem; }
.size-label-small { font-size: 0.72rem; font-weight: 600; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 0.4rem; }
.size-info-grid h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; color: var(--color-pink); }
.sg-tip { font-size: 0.85rem; color: var(--color-text-secondary); display: flex; gap: 0.5rem; align-items: flex-start; line-height: 1.6; }
.sg-tip i { margin-top: 0.15rem; flex-shrink: 0; }

/* ==========================================================================
   TESTIMONIAL SLIDER
   ========================================================================== */
.testimonial-section {
    padding: 8rem 0;
    background: radial-gradient(60% 60% at 50% 50%, rgba(255,45,120,0.05) 0%, transparent 100%);
    border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
}
.testimonial-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-icon { font-size: 3rem; color: var(--color-pink); opacity: 0.25; margin-bottom: 2rem; }

.testimonial-slider { position: relative; min-height: 200px; margin-bottom: 2.5rem; }
.testimonial-slide { display: none; animation: fadeSlide 0.5s ease; }
.testimonial-slide.active { display: block; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.testimonial-text { font-size: 1.35rem; line-height: 1.7; font-weight: 400; color: var(--color-text-primary); margin-bottom: 2rem; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 1rem; justify-content: center; }
.author-avatar { width: 42px; height: 42px; border-radius: var(--radius-full); background: rgba(255,45,120,0.1); border: 1px solid rgba(255,45,120,0.2); display: flex; justify-content: center; align-items: center; color: var(--color-pink); }
.testimonial-author h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; text-align: left; }
.testimonial-author p { font-size: 0.8rem; color: var(--color-text-muted); text-align: left; }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.slider-btn { width: 42px; height: 42px; border-radius: var(--radius-full); background: rgba(255,255,255,0.05); border: 1px solid var(--color-border); display: flex; justify-content: center; align-items: center; transition: var(--transition-quick); color: var(--color-text-secondary); }
.slider-btn:hover { background: rgba(255,45,120,0.1); border-color: var(--color-pink); color: var(--color-pink); }

.slider-dots { display: flex; gap: 0.5rem; }
.dot { width: 8px; height: 8px; border-radius: var(--radius-full); background: rgba(255,255,255,0.15); cursor: pointer; transition: var(--transition-quick); }
.dot.active { background: var(--color-pink); box-shadow: 0 0 8px var(--color-pink); width: 22px; }

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section { padding: 7rem 0; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
    background: var(--grad-card); border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition-smooth);
}
.faq-item:hover { border-color: rgba(255,255,255,0.12); }
.faq-item.active { border-color: rgba(255,45,120,0.25); }

.faq-question {
    width: 100%; padding: 1.5rem; display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-heading); font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer;
    transition: var(--transition-quick);
}
.faq-question:hover { color: var(--color-pink); }

.faq-icon { font-size: 0.85rem; transition: transform 0.3s ease; color: var(--color-text-muted); flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--color-pink); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); background: rgba(0,0,0,0.1); }
.faq-answer p { padding: 0 1.5rem 1.5rem; font-size: 0.92rem; color: var(--color-text-secondary); line-height: 1.7; }

/* ==========================================================================
   NEWSLETTER SECTION
   ========================================================================== */
.newsletter-section { padding: 4rem 0 6rem; }
.newsletter-box {
    background: linear-gradient(135deg, rgba(255,45,120,0.08) 0%, rgba(0,212,255,0.04) 100%);
    border: 1px solid var(--color-border); border-radius: var(--radius-xl);
    padding: 4.5rem 2rem; position: relative; overflow: hidden;
}
.newsletter-box::after { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: var(--grad-glow-pink); border-radius: var(--radius-full); pointer-events: none; }

.vip-club-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(135deg, #f59e0b, #d97706); color: #000; padding: 0.4rem 1.25rem; border-radius: var(--radius-full); font-size: 0.72rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.25rem; }
.newsletter-content { max-width: 560px; margin: 0 auto; position: relative; z-index: 2; }
.newsletter-content h2 { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 800; margin-bottom: 0.75rem; }
.newsletter-content p { color: var(--color-text-secondary); font-size: 0.95rem; margin-bottom: 2rem; }

.newsletter-form {
    display: flex; gap: 0.75rem;
    background: rgba(0,0,0,0.3); padding: 0.4rem 0.4rem 0.4rem 1.5rem;
    border-radius: var(--radius-full); border: 1px solid var(--color-border);
    transition: var(--transition-quick);
}
.newsletter-form:focus-within { border-color: rgba(255,45,120,0.3); }
.newsletter-form input { flex: 1; padding: 0.7rem 0; font-size: 0.9rem; background: none; }
.newsletter-form input::placeholder { color: var(--color-text-muted); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: #04060d; border-top: 1px solid var(--color-border); padding-top: 5rem; margin-top: 4rem; }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 3rem; padding-bottom: 4rem; }

.footer-brand .footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-brand img { height: 40px; width: 40px; object-fit: contain; }
.footer-brand span { font-family: var(--font-heading); font-weight: 900; font-size: 1.1rem; letter-spacing: 1px; background: var(--grad-vip); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-brand p { font-size: 0.87rem; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 1.5rem; }

.social-links { display: flex; gap: 0.75rem; }
.social-links a { width: 38px; height: 38px; border-radius: var(--radius-full); background: rgba(255,255,255,0.05); border: 1px solid var(--color-border); display: flex; justify-content: center; align-items: center; transition: var(--transition-quick); font-size: 0.9rem; }
.social-links a:hover { background: rgba(255,45,120,0.12); border-color: var(--color-pink); color: var(--color-pink); box-shadow: 0 0 12px rgba(255,45,120,0.2); }

.footer-links h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.87rem; color: var(--color-text-muted); }
.footer-links a:hover { color: var(--color-pink); padding-left: 6px; }

.footer-contact h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-contact p { font-size: 0.85rem; color: var(--color-text-muted); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; }
.footer-contact p i { color: var(--color-pink); font-size: 0.85rem; }

.payment-icons { display: flex; gap: 0.75rem; margin-top: 1.5rem; font-size: 2rem; color: var(--color-text-muted); }

.footer-bottom { border-top: 1px solid var(--color-border); padding: 1.5rem 0; }
.footer-bottom p { font-size: 0.82rem; color: var(--color-text-muted); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--color-text-muted); }
.footer-bottom-links a:hover { color: var(--color-pink); }

/* ==========================================================================
   LIGHTBOX / IMAGE ZOOM MODAL
   ========================================================================== */
.lightbox-modal {
    position: fixed; inset: 0; z-index: 9000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: var(--transition-smooth);
    padding: 2rem;
}
.lightbox-modal.open { opacity: 1; visibility: visible; }

.lightbox-overlay { position: fixed; inset: 0; background: rgba(4,6,13,0.95); z-index: 8999; opacity: 0; visibility: hidden; transition: var(--transition-smooth); }
.lightbox-overlay.open { opacity: 1; visibility: visible; }

.lightbox-content {
    position: relative; z-index: 9001; max-width: 90vw; max-height: 88vh;
    display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.lightbox-content img {
    max-width: 100%; max-height: 72vh;
    object-fit: contain; border-radius: var(--radius-lg);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
    animation: lightboxIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes lightboxIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.lightbox-info { text-align: center; }
.lightbox-info h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
.lightbox-info p { font-size: 0.88rem; color: var(--color-text-secondary); }

.modal-close { position: fixed; top: 1.5rem; right: 1.5rem; z-index: 9002; width: 44px; height: 44px; }

/* ==========================================================================
   QUICK VIEW MODAL
   ========================================================================== */
.quickview-modal {
    position: fixed; inset: 0; z-index: 8500; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: var(--transition-smooth); padding: 2rem;
}
.quickview-modal.open { opacity: 1; visibility: visible; }
.quickview-overlay { position: fixed; inset: 0; background: rgba(4,6,13,0.85); z-index: 8499; opacity: 0; visibility: hidden; transition: var(--transition-smooth); backdrop-filter: blur(8px); }
.quickview-overlay.open { opacity: 1; visibility: visible; }

.quickview-content {
    position: relative; z-index: 8501;
    background: linear-gradient(135deg, #0d1221, #121830);
    border: 1px solid var(--color-border-glow); border-radius: var(--radius-xl);
    width: 100%; max-width: 820px; overflow: hidden;
    box-shadow: var(--shadow-premium), 0 0 60px rgba(255,45,120,0.1);
    animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalIn { from { transform: scale(0.93) translateY(10px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }

.quickview-grid { display: grid; grid-template-columns: 1fr 1fr; }

.quickview-img-pane {
    background: rgba(255,255,255,0.02); display: flex; justify-content: center; align-items: center;
    padding: 3rem; border-right: 1px solid var(--color-border); min-height: 380px;
}
.quickview-img-pane img { max-height: 280px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6)); }

.quickview-details-pane { padding: 2.5rem; display: flex; flex-direction: column; gap: 0.85rem; }
.quickview-details-pane h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; }
.qv-tagline { font-size: 0.82rem; color: var(--color-text-muted); }
.qv-price { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--color-pink); }
.qv-desc { font-size: 0.88rem; color: var(--color-text-secondary); line-height: 1.65; }
.qv-specs { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.83rem; }
.qv-specs div { display: flex; align-items: center; gap: 0.5rem; color: var(--color-text-secondary); }
.qv-specs i { font-size: 0.75rem; }

/* ==========================================================================
   SHOPPING CART DRAWER
   ========================================================================== */
.cart-drawer {
    position: fixed; top: 0; right: -100%; width: 400px; height: 100vh;
    background: linear-gradient(160deg, #0d1221, #0a0e1a);
    border-left: 1px solid var(--color-border);
    z-index: 3000; display: flex; flex-direction: column;
    box-shadow: -20px 0 60px rgba(0,0,0,0.6);
    transition: var(--transition-smooth);
}
.cart-drawer.open { right: 0; }

.cart-overlay { position: fixed; inset: 0; background: rgba(4,6,13,0.7); z-index: 2999; opacity: 0; visibility: hidden; transition: var(--transition-smooth); backdrop-filter: blur(4px); }
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 1px solid var(--color-border); }
.cart-drawer-header h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; gap: 0.6rem; }

/* Shipping Progress Bar */
.free-shipping-bar { padding: 0.85rem 1.5rem; background: rgba(0,212,255,0.04); border-bottom: 1px solid rgba(0,212,255,0.1); }
.shipping-text { font-size: 0.78rem; color: var(--color-text-secondary); margin-bottom: 0.5rem; }
.shipping-track { height: 4px; background: rgba(255,255,255,0.08); border-radius: var(--radius-full); overflow: hidden; }
.shipping-fill { height: 100%; background: var(--color-cyan); border-radius: var(--radius-full); transition: width 0.5s ease; box-shadow: 0 0 8px var(--color-cyan); }

.cart-items-container { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }

.empty-cart-message { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; height: 100%; padding: 3rem 1.5rem; text-align: center; color: var(--color-text-muted); }
.empty-cart-message i { font-size: 3.5rem; opacity: 0.25; }
.empty-cart-message p { font-size: 0.95rem; }

.cart-item { display: flex; gap: 1rem; background: rgba(255,255,255,0.03); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1rem; }
.cart-item-img { width: 64px; height: 64px; object-fit: contain; border-radius: var(--radius-sm); background: rgba(255,255,255,0.03); flex-shrink: 0; }
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 0.3rem; }
.cart-item-title { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700; }
.cart-item-size { font-size: 0.75rem; color: var(--color-text-muted); }
.cart-item-price { font-size: 0.9rem; font-weight: 700; color: var(--color-pink); }
.cart-item-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 0.5rem; }

.quantity-controller { display: flex; align-items: center; gap: 0; border: 1px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; }
.quantity-btn { width: 28px; height: 28px; display: flex; justify-content: center; align-items: center; font-size: 1rem; color: var(--color-text-secondary); transition: var(--transition-quick); }
.quantity-btn:hover { background: rgba(255,45,120,0.1); color: var(--color-pink); }
.quantity-val { padding: 0 0.6rem; font-size: 0.85rem; font-weight: 700; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border); min-width: 30px; text-align: center; }

.remove-item-btn { display: flex; align-items: center; gap: 0.3rem; font-size: 0.72rem; color: var(--color-text-muted); transition: var(--transition-quick); }
.remove-item-btn:hover { color: #ef4444; }

.cart-drawer-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.cart-subtotal { font-size: 1rem; font-weight: 600; }
.subtotal-val { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 900; color: var(--color-pink); }
.cart-shipping-info { font-size: 0.78rem; color: var(--color-text-muted); display: flex; align-items: center; gap: 0.4rem; }

/* ==========================================================================
   CHECKOUT MODAL
   ========================================================================== */
.checkout-modal {
    position: fixed; inset: 0; z-index: 7000; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: var(--transition-smooth); padding: 1.5rem;
    overflow-y: auto;
}
.checkout-modal.open { opacity: 1; visibility: visible; }

.checkout-overlay { position: fixed; inset: 0; background: rgba(4,6,13,0.9); z-index: 6999; opacity: 0; visibility: hidden; transition: var(--transition-smooth); backdrop-filter: blur(10px); }
.checkout-overlay.open { opacity: 1; visibility: visible; }

.checkout-modal-content {
    position: relative; z-index: 7001;
    background: linear-gradient(145deg, #0d1221, #0a0e1a);
    border: 1px solid var(--color-border-glow); border-radius: var(--radius-xl);
    width: 100%; max-width: 950px; overflow: hidden;
    box-shadow: var(--shadow-premium); margin: auto;
    animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-header { padding: 2rem 2.5rem; border-bottom: 1px solid var(--color-border); background: rgba(0,0,0,0.2); }
.checkout-header h2 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.2rem; }
.checkout-header p { font-size: 0.78rem; color: var(--color-text-muted); }

.checkout-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; }

.checkout-form { padding: 2.5rem; border-right: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 0; }

.form-section { display: flex; flex-direction: column; gap: 1rem; }
.form-section h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--color-text-primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--color-text-muted); }
.form-group input {
    background: rgba(255,255,255,0.04); border: 1px solid var(--color-border);
    padding: 0.75rem 1rem; border-radius: var(--radius-sm);
    font-size: 0.9rem; color: var(--color-text-primary); transition: var(--transition-quick);
}
.form-group input:focus { border-color: var(--color-pink); background: rgba(255,45,120,0.04); }
.form-group input::placeholder { color: var(--color-text-muted); }

.input-with-icon { position: relative; }
.input-with-icon i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--color-text-muted); font-size: 0.9rem; }
.input-with-icon input { padding-left: 2.75rem; width: 100%; }

.order-summary-sidebar { padding: 2.5rem; background: rgba(0,0,0,0.15); display: flex; flex-direction: column; gap: 1.25rem; }
.order-summary-sidebar h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; }

.checkout-items-list { display: flex; flex-direction: column; gap: 0.75rem; }
.checkout-summary-item { font-size: 0.85rem; color: var(--color-text-secondary); }

.summary-breakdown { display: flex; flex-direction: column; gap: 0.75rem; }
.summary-breakdown > div { font-size: 0.9rem; color: var(--color-text-secondary); }
.summary-breakdown hr { border: none; border-top: 1px solid var(--color-border); }
.grand-total { font-size: 1.1rem !important; font-weight: 800; color: var(--color-text-primary) !important; }

.checkout-guarantee { display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; color: var(--color-text-muted); padding: 0.85rem 1rem; background: rgba(16,185,129,0.05); border: 1px solid rgba(16,185,129,0.15); border-radius: var(--radius-md); }
.checkout-guarantee i { color: #10b981; }

/* ==========================================================================
   SUCCESS MODAL
   ========================================================================== */
.success-modal {
    position: fixed; inset: 0; z-index: 9500; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: var(--transition-smooth); padding: 2rem;
}
.success-modal.open { opacity: 1; visibility: visible; }
.success-overlay { position: fixed; inset: 0; background: rgba(4,6,13,0.95); z-index: 9499; opacity: 0; visibility: hidden; transition: var(--transition-smooth); backdrop-filter: blur(12px); }
.success-overlay.open { opacity: 1; visibility: visible; }

.success-content {
    position: relative; z-index: 9501;
    background: linear-gradient(135deg, #0d1221, #0a0e1a);
    border: 1px solid rgba(16,185,129,0.25); border-radius: var(--radius-xl);
    padding: 4rem 3rem; max-width: 480px; width: 100%;
    box-shadow: var(--shadow-premium), 0 0 60px rgba(16,185,129,0.1);
    animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-icon-wrapper { position: relative; width: 80px; height: 80px; margin: 0 auto 1.75rem; display: flex; justify-content: center; align-items: center; }
.success-icon-wrapper i { font-size: 3.5rem; color: #10b981; position: relative; z-index: 2; }
.success-glow-ring {
    position: absolute; inset: -6px; border-radius: var(--radius-full);
    border: 2px solid rgba(16,185,129,0.4); animation: successRing 2s infinite ease-in-out;
}
@keyframes successRing { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.12); opacity: 0.4; } }

.success-content h2 { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 900; margin-bottom: 1rem; }
.success-content p { font-size: 0.95rem; color: var(--color-text-secondary); margin-bottom: 1.5rem; line-height: 1.7; }

.success-summary { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; background: rgba(255,255,255,0.03); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.25rem; }
.success-row { display: flex; align-items: center; gap: 0.75rem; font-size: 0.88rem; color: var(--color-text-secondary); }

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { order: -1; }
    .pedestal-showcase { max-width: 400px; margin: 0 auto; }
    .floating-badge { display: none; }
    .sole-station-grid { grid-template-columns: 1fr; }
    .station-info-pane { border-top: 1px solid var(--color-border); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-card.featured { grid-row: span 1; grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-form { border-right: none; border-bottom: 1px solid var(--color-border); }
    .quickview-grid { grid-template-columns: 1fr; }
    .size-info-grid { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 768px) {
    :root { --container-width: 100%; }
    .main-header { top: 28px; }
    .main-header.scrolled { top: 0; }
    .hero-section { padding-top: 110px; }
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2rem; }
    .nav-links-wrapper { display: none; }
    .mobile-menu-btn { display: flex; }
    .hide-mobile { display: none !important; }
    .hero-tabs { flex-wrap: wrap; }
    .hero-stats { gap: 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-card.featured { grid-column: span 1; }
    .sole-station-nav { flex-direction: column; padding: 0; }
    .station-tab { border-bottom: 1px solid var(--color-border); border-bottom-color: transparent; }
    .cart-drawer { width: 100%; max-width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .newsletter-form { flex-direction: column; border-radius: var(--radius-lg); padding: 0.75rem; }
    .newsletter-form input { padding: 0.75rem; }
    .hero-ctas { flex-direction: column; }
    .btn-lg { padding: 0.9rem 1.75rem; font-size: 0.95rem; }
    .size-guide-box { padding: 2.5rem 1.5rem; }
    .checkout-modal-content { border-radius: var(--radius-lg); }
    .checkout-header { padding: 1.5rem; }
    .checkout-form { padding: 1.5rem; }
    .order-summary-sidebar { padding: 1.5rem; }
    .quickview-content { max-width: 100%; }
    .top-ticker-bar { display: block; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.75rem; }
    .hero-switcher-box { padding: 1rem; }
    .hero-tab { font-size: 0.72rem; padding: 0.4rem 0.75rem; }
    .footer-bottom .flex-between { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* ==========================================================================
   PREMIUM ENHANCEMENT LAYER — VIP Visual Upgrades
   ========================================================================== */

/* --- Hero: Dramatic Radial Glow Background --- */
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255,45,120,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 30%, rgba(0,212,255,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(168,85,247,0.08) 0%, transparent 60%);
    pointer-events: none; z-index: 0;
}
.hero-section .container { position: relative; z-index: 1; }

/* Hero title glow shimmer effect */
.hero-title {
    text-shadow: 0 0 80px rgba(255,45,120,0.08);
}

/* VIP badge more vivid */
.badge-vip {
    background: linear-gradient(135deg, rgba(255,45,120,0.12), rgba(168,85,247,0.08));
    border-color: rgba(255,45,120,0.35);
    box-shadow: 0 0 20px rgba(255,45,120,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Hero stat numbers glow */
.stat-num {
    text-shadow: 0 0 30px currentColor;
    filter: drop-shadow(0 0 8px currentColor);
}

/* Switcher box glow border */
.hero-switcher-box {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border-color: rgba(255,45,120,0.2);
    box-shadow: 0 0 30px rgba(255,45,120,0.06), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* --- Section Headers: More Dramatic --- */
.section-title {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #f0f4ff 0%, rgba(240,244,255,0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tagline {
    background: linear-gradient(135deg, rgba(255,45,120,0.12), rgba(255,45,120,0.04));
    border-color: rgba(255,45,120,0.3);
    box-shadow: 0 0 20px rgba(255,45,120,0.1);
}

/* --- Feature Cards: Themed Color Accent Lines --- */
.feature-card {
    background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}
.feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: var(--card-accent, var(--grad-vip));
    opacity: 0.8;
}
.feature-card:nth-child(1) { --card-accent: linear-gradient(90deg, var(--color-cyan), #0891b2); }
.feature-card:nth-child(2) { --card-accent: linear-gradient(90deg, var(--color-pink), #be185d); }
.feature-card:nth-child(3) { --card-accent: linear-gradient(90deg, var(--color-purple), #7c3aed); }
.feature-card:nth-child(4) { --card-accent: linear-gradient(90deg, var(--color-gold), #d97706); }

.feature-card:hover {
    border-color: rgba(255,45,120,0.3);
    box-shadow: 0 24px 50px -10px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,45,120,0.1);
    transform: translateY(-8px) scale(1.01);
}

/* Feature icon wrappers — more vivid */
.feature-icon-wrapper.blue   { background: rgba(0,212,255,0.12); border-color: rgba(0,212,255,0.3); box-shadow: 0 0 20px rgba(0,212,255,0.15); }
.feature-icon-wrapper.pink   { background: rgba(255,45,120,0.12); border-color: rgba(255,45,120,0.3); box-shadow: 0 0 20px rgba(255,45,120,0.15); }
.feature-icon-wrapper.purple { background: rgba(168,85,247,0.12); border-color: rgba(168,85,247,0.3); box-shadow: 0 0 20px rgba(168,85,247,0.15); }
.feature-icon-wrapper.gold   { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.3); box-shadow: 0 0 20px rgba(245,158,11,0.15); }

/* --- Product Cards: Premium Studio Look --- */
.product-card {
    background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
}
.product-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--grad-vip);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}
.product-card:hover::before { opacity: 1; }
.product-card:hover {
    border-color: rgba(255,45,120,0.3);
    box-shadow: 0 24px 60px -15px rgba(255,45,120,0.2), 0 0 0 1px rgba(255,45,120,0.08);
    transform: translateY(-8px);
}

/* Product studio box — radial gradient spotlight */
.product-studio-box {
    background: radial-gradient(ellipse 80% 80% at 50% 60%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border-bottom-color: rgba(255,255,255,0.1);
}
.product-studio-box::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,45,120,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Product price more vivid */
.product-price {
    font-size: 1.65rem;
    background: linear-gradient(135deg, var(--color-pink), #ff6fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(255,45,120,0.4));
}

/* Add to cart button more vibrant */
.add-to-cart-btn {
    background: linear-gradient(135deg, #ff2d78, #c81d6b) !important;
    box-shadow: 0 4px 20px rgba(255,45,120,0.35) !important;
    position: relative; overflow: hidden;
}
.add-to-cart-btn::before {
    content: '';
    position: absolute; top: -50%; left: -60%; width: 40%; height: 200%;
    background: rgba(255,255,255,0.12);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
    pointer-events: none;
}
.add-to-cart-btn:hover::before { left: 130%; }
.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #ff5ca0, #ff2d78) !important;
    box-shadow: 0 6px 30px rgba(255,45,120,0.5) !important;
    transform: translateY(-2px) !important;
}

/* Product badges upgraded */
.product-badge {
    font-size: 0.6rem; letter-spacing: 1.5px;
    backdrop-filter: blur(8px);
}
.product-badge.hot { box-shadow: 0 0 20px rgba(255,45,120,0.6), 0 0 40px rgba(255,45,120,0.2); }
.product-badge.new { box-shadow: 0 0 15px rgba(0,212,255,0.5); }
.product-badge.exclusive { box-shadow: 0 0 15px rgba(168,85,247,0.5); }
.product-badge.trending { box-shadow: 0 0 15px rgba(245,158,11,0.5); }

/* --- Gallery Cards: Premium Hover --- */
.gallery-img-box {
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}
.gallery-img-box:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,45,120,0.2);
    transform: scale(1.01);
}

/* Gallery featured card neon border on hover */
.gallery-card.featured .gallery-img-box:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,45,120,0.1), 0 0 0 1px rgba(255,45,120,0.25);
}

/* --- Sole Station Box Upgrade --- */
.sole-station-box {
    background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
.station-tab.active {
    background: linear-gradient(135deg, rgba(255,45,120,0.1), rgba(255,45,120,0.04));
    box-shadow: inset 0 -2px 0 var(--color-pink);
}

/* Hotspot pins more vivid */
.pin-dot {
    box-shadow: 0 0 0 3px rgba(255,45,120,0.3), 0 0 20px rgba(255,45,120,0.5);
}

/* --- Size Guide Box Upgrade --- */
.size-guide-box {
    background: linear-gradient(135deg, rgba(255,45,120,0.08) 0%, rgba(0,212,255,0.05) 50%, rgba(168,85,247,0.04) 100%);
    border-color: rgba(255,45,120,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,45,120,0.05);
}
.size-tab.active {
    background: linear-gradient(135deg, rgba(255,45,120,0.18), rgba(255,45,120,0.08));
    border-color: var(--color-pink);
    box-shadow: 0 0 20px rgba(255,45,120,0.2);
}
.size-display-panel {
    background: rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
#sg-shoe-size, #sg-sole-length {
    text-shadow: 0 0 20px rgba(255,45,120,0.4);
}

/* --- Testimonial Upgrade --- */
.testimonial-text {
    font-size: 1.25rem;
    color: var(--color-text-primary);
}
.author-avatar {
    background: linear-gradient(135deg, rgba(255,45,120,0.15), rgba(168,85,247,0.1));
    border-color: rgba(255,45,120,0.3);
    box-shadow: 0 0 20px rgba(255,45,120,0.1);
}
.slider-btn:hover {
    box-shadow: 0 0 20px rgba(255,45,120,0.2);
}

/* --- FAQ Upgrade --- */
.faq-item {
    background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.faq-item.active {
    border-color: rgba(255,45,120,0.35);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,45,120,0.05);
}
.faq-question { font-size: 1.05rem; }

/* --- Newsletter Upgrade --- */
.newsletter-box {
    background: linear-gradient(135deg, rgba(255,45,120,0.1) 0%, rgba(0,212,255,0.05) 50%, rgba(168,85,247,0.06) 100%);
    border-color: rgba(255,45,120,0.25);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,45,120,0.05);
}
.newsletter-content h2 {
    font-size: 2.6rem;
    background: linear-gradient(135deg, #f0f4ff, #ff6fab);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.newsletter-form {
    border-color: rgba(255,45,120,0.2);
    background: rgba(0,0,0,0.35);
    box-shadow: 0 0 30px rgba(255,45,120,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* --- Cart Drawer Upgrade --- */
.cart-drawer {
    background: linear-gradient(160deg, #0d1221, #080c18);
    border-left-color: rgba(255,45,120,0.15);
    box-shadow: -30px 0 80px rgba(0,0,0,0.8);
}
.cart-drawer-header h3 { font-size: 1.2rem; }
#checkout-btn {
    background: linear-gradient(135deg, #ff2d78, #a855f7) !important;
    box-shadow: 0 6px 30px rgba(255,45,120,0.4) !important;
    font-size: 1rem !important; padding: 1rem 2rem !important;
}

/* --- Pedestal Card Upgrade --- */
.pedestal-card {
    background: linear-gradient(145deg, rgba(20,28,48,0.9), rgba(13,18,33,0.95));
    border-color: rgba(255,45,120,0.3);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,45,120,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}
.pedestal-price {
    font-size: 1.9rem;
    filter: drop-shadow(0 0 12px rgba(255,45,120,0.5));
}

/* --- Wishlist heart button on product cards --- */
.wishlist-btn {
    position: absolute; top: 1rem; right: 1rem; z-index: 5;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: center; align-items: center;
    color: rgba(255,255,255,0.4); font-size: 0.8rem;
    cursor: pointer; transition: all 0.25s ease;
}
.wishlist-btn:hover {
    background: rgba(255,45,120,0.15);
    border-color: var(--color-pink);
    color: var(--color-pink);
    box-shadow: 0 0 15px rgba(255,45,120,0.3);
    transform: scale(1.1);
}

/* --- Section Glow Dividers --- */
.features-section::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,0.35), rgba(255,45,120,0.35), transparent);
    margin-bottom: 7rem;
}
.products-section::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,45,120,0.4), rgba(168,85,247,0.3), transparent);
    margin-bottom: 7rem;
}

/* --- Scrollbar Upgrade --- */
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--color-pink), var(--color-purple)); }

/* --- Quick View Modal Upgrade --- */
.quickview-content {
    background: linear-gradient(145deg, #0d1221, #0a0e1a);
    border-color: rgba(255,45,120,0.25);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 80px rgba(255,45,120,0.08);
}
.qv-price {
    filter: drop-shadow(0 0 12px rgba(255,45,120,0.5));
}

/* --- Success Modal Upgrade --- */
.success-content {
    background: linear-gradient(145deg, #0d1221, #0a0e1a);
    border-color: rgba(16,185,129,0.3);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 60px rgba(16,185,129,0.08);
}

/* --- Footer Upgrade --- */
.footer {
    background: linear-gradient(180deg, #04060d, #02040a);
}
.social-links a:hover {
    box-shadow: 0 0 20px rgba(255,45,120,0.3);
    transform: translateY(-3px);
}

/* --- Floating VIP Glow on Cart Badge --- */
.cart-badge {
    animation: cartBadgePulse 2s infinite ease-in-out;
}
@keyframes cartBadgePulse {
    0%, 100% { box-shadow: 0 0 8px var(--color-pink); }
    50% { box-shadow: 0 0 20px var(--color-pink), 0 0 40px rgba(255,45,120,0.3); }
}

/* --- Checkout Modal Upgrade --- */
.checkout-modal-content {
    background: linear-gradient(145deg, #0d1221, #080c18);
    border-color: rgba(255,45,120,0.2);
    box-shadow: 0 40px 100px rgba(0,0,0,0.9);
}
.form-group input:focus {
    box-shadow: 0 0 0 3px rgba(255,45,120,0.15);
}

/* --- Mobile Drawer Upgrade --- */
.mobile-drawer {
    background: linear-gradient(160deg, #0d1221, #060810);
    border-left-color: rgba(255,45,120,0.15);
}

/* --- Responsive section title fix --- */
@media (max-width: 768px) {
    .section-title { font-size: 2.1rem; }
    .newsletter-content h2 { font-size: 2rem; }
}
@media (max-width: 480px) {
    .section-title { font-size: 1.8rem !important; }
}
