/* ==========================================================================
   VESPER CROW DESIGN SYSTEM & CORE STYLES (MULTILINGUAL, 3D FRONT-BOX & GLOW)
   ========================================================================== */

/* Color Tokens & Reset */
:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --text-light: #f5f5fa;
    --text-gray: #a0a0ab;
    --glass-bg: rgba(10, 10, 15, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Neon Accent Colors */
    --neon-red: #ff3838;
    --neon-red-glow: rgba(255, 56, 56, 0.35);
    --neon-blue: #00e5ff;
    --neon-blue-glow: rgba(0, 229, 255, 0.35);
    --neon-green: #39ff14;
    --neon-green-glow: rgba(57, 255, 20, 0.35);
    --neon-purple: #bd00ff;
    --neon-purple-glow: rgba(189, 0, 255, 0.35);
    
    --header-height: 80px;
}

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

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    background-color: var(--bg-darker);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

/* Scrollbars styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   CYBERPUNK SCI-FI OVERLAYS
   ========================================================================== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -2; /* Sits directly in front of backgrounds and behind content cards */
}



/* ==========================================================================
   DYNAMIC BACKGROUND SLIDES (Optimized for smoother, faster transitions)
   ========================================================================== */
.bg-overlay-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    overflow: hidden;
    background: var(--bg-darker);
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: perspective(1200px) translateZ(-180px) rotateY(-8deg) rotateX(2deg); /* Start deep in 3D space and rotated */
    transition: 
        opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1), 
        transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform; /* Hardware acceleration */
}

.bg-slide.active {
    opacity: 1;
    transform: perspective(1200px) translateZ(0px) rotateY(0deg) rotateX(0deg); /* Fly forward to normal coordinate space */
}

/* ==========================================================================
   HEADER & NAVIGATION (Glassmorphism)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(5, 5, 8, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: background 0.3s, border-color 0.3s;
}

.main-header.scrolled {
    background: rgba(5, 5, 8, 0.85);
    border-color: rgba(255, 255, 255, 0.12);
}

.header-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.15));
    transition: transform 0.3s ease;
}

.logo-link:hover .nav-logo {
    transform: rotate(5deg) scale(1.05);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--text-light);
    background: linear-gradient(45deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--text-gray);
    letter-spacing: 1px;
    transition: color 0.3s, text-shadow 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--text-light);
}

.nav-item.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language selector button */
.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.cart-btn {
    color: var(--text-light);
    font-size: 1.25rem;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    transition: background 0.3s, transform 0.3s;
}

.cart-btn:hover {
    background: rgba(255,255,255,0.15);
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--neon-blue);
    color: var(--bg-darker);
    font-size: 0.75rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px var(--neon-blue-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

/* ==========================================================================
   SCROLL SNAPPING SECTIONS (Centered alignments)
   ========================================================================== */
.scroll-container {
    height: 100vh;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-padding-top: var(--header-height); /* Better snapping alignment */
}

.scroll-section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    position: relative;
    padding: var(--header-height) 40px 40px 40px;
}

.section-content {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    z-index: 10;
}

/* ==========================================================================
   GLASSMOPHISM CARDS & BUTTONS
   ========================================================================== */
.glass-card {
    background: rgba(8, 8, 12, 0.72);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.01);
    padding: 25px 30px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--card-accent, rgba(255, 255, 255, 0.15)), transparent);
    opacity: 0.6;
    transition: opacity 0.3s, background 0.3s;
    border-radius: 20px 20px 0 0;
}

.glass-card:hover::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, var(--card-accent, rgba(255, 255, 255, 0.35)), transparent);
}

.glass-card:hover {
    transform: translateY(-5px);
}

.border-neon-purple {
    --card-glow: var(--neon-purple-glow);
    --card-accent: var(--neon-purple);
    --card-accent-rgb: 189, 0, 255;
    border: 1px solid rgba(189, 0, 255, 0.35) !important;
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.12), inset 0 0 10px rgba(189, 0, 255, 0.04) !important;
}
.border-neon-purple:hover {
    border-color: rgba(189, 0, 255, 0.8) !important;
    box-shadow: 0 0 25px rgba(189, 0, 255, 0.32), inset 0 0 15px rgba(189, 0, 255, 0.08) !important;
}

.border-neon-red {
    --card-glow: var(--neon-red-glow);
    --card-accent: var(--neon-red);
    --card-accent-rgb: 255, 56, 56;
    border: 1px solid rgba(255, 56, 56, 0.35) !important;
    box-shadow: 0 0 15px rgba(255, 56, 56, 0.12), inset 0 0 10px rgba(255, 56, 56, 0.04) !important;
}
.border-neon-red:hover {
    border-color: rgba(255, 56, 56, 0.8) !important;
    box-shadow: 0 0 25px rgba(255, 56, 56, 0.32), inset 0 0 15px rgba(255, 56, 56, 0.08) !important;
}

.border-neon-blue {
    --card-glow: var(--neon-blue-glow);
    --card-accent: var(--neon-blue);
    --card-accent-rgb: 0, 229, 255;
    border: 1px solid rgba(0, 229, 255, 0.35) !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.12), inset 0 0 10px rgba(0, 229, 255, 0.04) !important;
}
.border-neon-blue:hover {
    border-color: rgba(0, 229, 255, 0.8) !important;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.32), inset 0 0 15px rgba(0, 229, 255, 0.08) !important;
}

.border-neon-green {
    --card-glow: var(--neon-green-glow);
    --card-accent: var(--neon-green);
    --card-accent-rgb: 57, 255, 20;
    border: 1px solid rgba(57, 255, 20, 0.35) !important;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.12), inset 0 0 10px rgba(57, 255, 20, 0.04) !important;
}
.border-neon-green:hover {
    border-color: rgba(57, 255, 20, 0.8) !important;
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.32), inset 0 0 15px rgba(57, 255, 20, 0.08) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--text-light);
    color: var(--bg-darker);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-glow {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

/* Specific glows */
.btn-red.btn-glow { box-shadow: 0 0 15px var(--neon-red-glow); background: var(--neon-red); color: white; }
.btn-red.btn-glow:hover { box-shadow: 0 0 30px var(--neon-red); }

.btn-blue.btn-glow { box-shadow: 0 0 15px var(--neon-blue-glow); background: var(--neon-blue); color: var(--bg-darker); }
.btn-blue.btn-glow:hover { box-shadow: 0 0 30px var(--neon-blue); }

.btn-green.btn-glow { box-shadow: 0 0 15px var(--neon-green-glow); background: var(--neon-green); color: var(--bg-darker); }
.btn-green.btn-glow:hover { box-shadow: 0 0 30px var(--neon-green); }

.btn-purple.btn-glow { box-shadow: 0 0 15px var(--neon-purple-glow); background: var(--neon-purple); color: white; }
.btn-purple.btn-glow:hover { box-shadow: 0 0 30px var(--neon-purple); }

/* Outline glow buttons (Add to Cart) */
.btn-outline-glow {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.01);
}

.btn-outline-purple {
    border: 1px solid rgba(189, 0, 255, 0.4) !important;
}
.btn-outline-purple:hover {
    background: rgba(189, 0, 255, 0.08) !important;
    border-color: var(--neon-purple) !important;
    box-shadow: 0 0 20px var(--neon-purple-glow), inset 0 0 10px var(--neon-purple-glow) !important;
    transform: translateY(-2px);
}

.btn-outline-red {
    border: 1px solid rgba(255, 56, 56, 0.4) !important;
}
.btn-outline-red:hover {
    background: rgba(255, 56, 56, 0.08) !important;
    border-color: var(--neon-red) !important;
    box-shadow: 0 0 20px var(--neon-red-glow), inset 0 0 10px var(--neon-red-glow) !important;
    transform: translateY(-2px);
}

.btn-outline-blue {
    border: 1px solid rgba(0, 229, 255, 0.4) !important;
}
.btn-outline-blue:hover {
    background: rgba(0, 229, 255, 0.08) !important;
    border-color: var(--neon-blue) !important;
    box-shadow: 0 0 20px var(--neon-blue-glow), inset 0 0 10px var(--neon-blue-glow) !important;
    transform: translateY(-2px);
}

.btn-outline-green {
    border: 1px solid rgba(57, 255, 20, 0.4) !important;
}
.btn-outline-green:hover {
    background: rgba(57, 255, 20, 0.08) !important;
    border-color: var(--neon-green) !important;
    box-shadow: 0 0 20px var(--neon-green-glow), inset 0 0 10px var(--neon-green-glow) !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   REDESIGNED HERO SECTION (Centered, Atmospheric)
   ========================================================================== */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-center-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s ease;
}

.hero-brand {
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-giant-logo {
    height: 140px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.25));
    animation: pulse 3s infinite ease-in-out;
}

.hero-tag {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--neon-blue);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--neon-blue-glow);
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.65;
    color: var(--text-gray);
    margin-bottom: 45px;
    max-width: 750px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-gray);
    font-weight: 500;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* ==========================================================================
   PRODUCT SHOWCASE SECTIONS (REDESIGNED & EXPANDED)
   ========================================================================== */
.product-content {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 100px;
    width: 100%;
}

.product-content.reverse-layout {
    grid-template-columns: 0.75fr 1.25fr;
}

.product-content.reverse-layout .product-visuals {
    order: 2;
}

/* Ambient Backlight Glow behind plugins (Optimized layout and blending) */
.ambient-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--glow-color) 0%, rgba(5,5,8,0) 70%);
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    opacity: 0.28;
    pointer-events: none;
    z-index: -1;
    mix-blend-mode: screen;
    filter: blur(35px);
    transition: transform 0.5s ease-out;
}

.product-content.reverse-layout ~ .ambient-glow {
    left: auto;
    right: 20%;
    transform: translate(50%, -50%);
}

/* Product Visuals Container (Bigger Height) */
.product-visuals {
    position: relative;
    height: 660px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section level accent colors for matching VST glows */
#plugin-wobble { --accent-color: var(--neon-purple); }
#plugin-1106 { --accent-color: var(--neon-red); }
#plugin-aeon { --accent-color: var(--neon-blue); }
#plugin-deathstep { --accent-color: var(--neon-green); }

/* Overlapping configuration (BOX IN FRONT, VST BEHIND) */
.image-wrapper {
    position: absolute;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.65));
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), filter 0.7s ease, opacity 0.7s ease;
}

/* VST Panel (Z-INDEX 5, translated to the right background - Larger) */
.main-vst-img {
    z-index: 5;
    --base-trans: translateX(140px) translateY(70px) scale(0.9);
    transform: var(--base-trans);
    opacity: 0.88;
}

.vst-gui {
    max-width: 550px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Swapping depths and adding stylized neon focus swap on hover of the VST IMAGE */
.main-vst-img:hover {
    z-index: 20 !important;
    opacity: 1 !important;
    filter: drop-shadow(0 0 35px var(--accent-color, var(--neon-purple))) drop-shadow(0 15px 30px rgba(0,0,0,0.85)) !important;
}

/* ==========================================================================
   CSS 3D SOFTWARE BOX MODEL (IN FRONT - Z-INDEX 15 - LARGER)
   ========================================================================== */
.box-3d-container {
    position: absolute;
    width: 400px;
    height: 560px;
    perspective: 1500px;
    z-index: 15; /* HIGHER Z-INDEX (IN FRONT) */
    --base-trans: translateX(-120px) translateY(-20px) scale(1);
    transform: var(--base-trans);
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), filter 0.7s ease, opacity 0.7s ease;
}

.box-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    /* Default isometric angle */
    transform: rotateY(-22deg) rotateX(12deg) rotateZ(-1deg);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Sibling selector & :has() for preceding sibling defocus when VST is hovered */
.main-vst-img:hover ~ .box-3d-container,
.product-visuals:has(.main-vst-img:hover) .box-3d-container {
    z-index: 5 !important;
    opacity: 0.65 !important;
    filter: brightness(0.5) blur(3px) !important;
    transform: translateX(-130px) translateY(-20px) scale(1.0) !important;
}

.box-3d-container:hover .box-3d {
    /* Reveals more spine depth on hover */
    transform: rotateY(-38deg) rotateX(16deg) rotateZ(-3deg);
}

/* Box Faces Styling - CORRECTED FOR MATHEMATICALLY ALIGNED 3D POSITIONING (W=400px, H=560px, D=90px) */
.box-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    background-color: #0c0c12;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

/* Dimensions W=400px, H=560px, D=90px */
.face-front {
    width: 400px;
    height: 560px;
    margin-left: -200px; /* -W/2 */
    margin-top: -280px;    /* -H/2 */
    background-size: 100% 100%; 
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 6px;
    transform: translateZ(45px); /* D/2 */
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.face-front::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Clean cardboard specular sheen */
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 45%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
    border-radius: 6px;
}

.face-back {
    width: 400px;
    height: 560px;
    margin-left: -200px;
    margin-top: -280px;
    transform: rotateY(180deg) translateZ(45px);
    background: #060609;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.face-left {
    width: 90px; /* Depth D */
    height: 560px;
    margin-left: -45px; /* -D/2 */
    margin-top: -280px;  /* -H/2 */
    transform: rotateY(-90deg) translateZ(200px); /* W/2 */
    background: linear-gradient(to right, #040406, #161622);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.face-right {
    width: 90px;
    height: 560px;
    margin-left: -45px;
    margin-top: -280px;
    transform: rotateY(90deg) translateZ(200px);
    background: linear-gradient(to left, #040406, #161622);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.face-top {
    width: 400px;
    height: 90px;
    margin-left: -200px; /* -W/2 */
    margin-top: -45px;     /* -D/2 */
    transform: rotateX(90deg) translateZ(280px); /* H/2 */
    background: linear-gradient(to bottom, #09090d, #161622);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.face-bottom {
    width: 400px;
    height: 90px;
    margin-left: -200px;
    margin-top: -45px;
    transform: rotateX(-90deg) translateZ(280px);
    background: #040406;
}

/* Spine Text Styling */
.spine-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 6px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   INFO PANELS & NEON TEXTS (Compact & Elegant Layouts)
   ========================================================================== */
.product-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 540px; /* Increased from 480px for balanced layout proportions and to prevent button overflow */
    width: 100%;
}

.product-category {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--card-accent, var(--text-gray));
}

.product-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

/* Neon Text Accents */
.text-neon-red { color: var(--text-light); text-shadow: 0 0 15px var(--neon-red-glow); }
.text-neon-blue { color: var(--text-light); text-shadow: 0 0 15px var(--neon-blue-glow); }
.text-neon-green { color: var(--text-light); text-shadow: 0 0 15px var(--neon-green-glow); }
.text-neon-purple { color: var(--text-light); text-shadow: 0 0 15px var(--neon-purple-glow); }

.product-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-gray);
    font-weight: 300;
}

/* Product Specifications Pills */
.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 5px 0;
}

.spec-pill {
    background: rgba(var(--card-accent-rgb, 255, 255, 255), 0.03);
    border: 1px solid rgba(var(--card-accent-rgb, 255, 255, 255), 0.12);
    color: var(--text-gray);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.spec-pill:hover {
    color: var(--text-light);
    border-color: rgba(var(--card-accent-rgb, 255, 255, 255), 0.4);
    background: rgba(var(--card-accent-rgb, 255, 255, 255), 0.08);
    box-shadow: 0 0 10px rgba(var(--card-accent-rgb, 255, 255, 255), 0.15);
    transform: translateY(-1px);
}

.spec-pill i {
    color: var(--card-accent, var(--neon-purple));
    text-shadow: 0 0 8px var(--card-glow, var(--neon-purple-glow));
}

/* Redesigned Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    width: 100%;
}

.action-row-primary {
    display: flex;
    gap: 12px;
    width: 100%;
}

.action-row-primary .buy-btn {
    flex: 1.3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    padding: 13px 18px !important; /* Slightly more compact padding to prevent text overflow */
    font-size: 0.9rem !important;  /* Fits dynamic prices comfortably */
}

.action-row-primary .add-to-cart-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    padding: 13px 18px !important;
    font-size: 0.9rem !important;
}

.view-promo-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.view-promo-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

.buy-btn {
    background: var(--card-accent, var(--text-light)) !important;
    color: var(--bg-darker) !important;
    font-weight: 700 !important;
    box-shadow: 0 0 15px var(--card-glow) !important;
}

.buy-btn:hover {
    box-shadow: 0 0 30px var(--card-accent) !important;
    transform: translateY(-3px) !important;
    filter: brightness(1.15);
}

/* ==========================================================================
   CINEMATIC LIQUID WARP & LIGHT LEAK TRANSITION STYLES
   ========================================================================== */
.light-leak {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -2;
    opacity: 0;
    mix-blend-mode: screen;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    background: radial-gradient(circle at 50% 50%, var(--leak-color, var(--neon-purple)) 0%, transparent 75%);
    will-change: opacity;
}

.bg-overlay-container {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.bg-overlay-container.warping-vortex {
    animation: aestheticGlitch3D 0.9s cubic-bezier(0.25, 1, 0.5, 1) both;
}

@keyframes aestheticGlitch3D {
    0% {
        transform: perspective(1000px) translateZ(0px) rotate(0deg) skewX(0deg);
        filter: brightness(1) contrast(1) saturate(1) hue-rotate(0deg);
    }
    12% {
        transform: perspective(1000px) translateZ(60px) rotate(-1.5deg) skewX(5deg) translate(-4px, 2px);
        filter: brightness(1.3) contrast(1.3) saturate(1.5) hue-rotate(25deg);
    }
    24% {
        transform: perspective(1000px) translateZ(30px) rotate(1.5deg) skewX(-5deg) translate(4px, -2px);
        filter: brightness(0.88) contrast(1.15) saturate(1.3) hue-rotate(-20deg);
    }
    36% {
        transform: perspective(1000px) translateZ(80px) rotate(-1deg) skewX(3deg) translate(-2px, 1px);
        filter: brightness(1.5) contrast(1.55) saturate(1.7) hue-rotate(45deg);
    }
    48% {
        transform: perspective(1000px) translateZ(20px) rotate(1deg) skewX(-3deg) translate(2px, -1px);
        filter: brightness(0.95) contrast(1.1) saturate(1.2) hue-rotate(-10deg);
    }
    60% {
        transform: perspective(1000px) translateZ(100px) rotate(2deg) skewX(4deg) translate(-3px, -3px);
        filter: brightness(1.35) contrast(1.4) saturate(1.8) hue-rotate(60deg);
    }
    72% {
        transform: perspective(1000px) translateZ(40px) rotate(-2deg) skewX(-4deg) translate(3px, 3px);
        filter: brightness(0.9) contrast(1.2) saturate(1.35) hue-rotate(-45deg);
    }
    84% {
        transform: perspective(1000px) translateZ(0px) rotate(0deg) skewX(0deg) translate(0, 0);
        filter: brightness(1) contrast(1) saturate(1) hue-rotate(0deg);
    }
    100% {
        transform: perspective(1000px) translateZ(0px) rotate(0deg) skewX(0deg);
        filter: brightness(1) contrast(1) saturate(1) hue-rotate(0deg);
    }
}

/* Entrance Wobble Animations for Products */
.product-section:not(.active) .box-3d-container,
.product-section:not(.active) .main-vst-img,
.product-section:not(.active) .product-info-panel {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.product-section.active .box-3d-container {
    opacity: 1;
    pointer-events: auto;
    animation: boxBounce 1.25s cubic-bezier(0.25, 1, 0.5, 1) backwards;
}

.product-section.active .main-vst-img {
    opacity: 1;
    pointer-events: auto;
    animation: vstBounce 1.25s cubic-bezier(0.25, 1, 0.5, 1) backwards;
    animation-delay: 0.08s;
}

.product-section.active .product-info-panel {
    opacity: 1;
    pointer-events: auto;
    animation: panelBounce 1.25s cubic-bezier(0.25, 1, 0.5, 1) backwards;
    animation-delay: 0.16s;
}

/* Contact Section Wobble */
.contact-section:not(.active) .contact-info,
.contact-section:not(.active) .contact-form-container {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.contact-section.active .contact-info {
    opacity: 1;
    pointer-events: auto;
    animation: panelBounce 1.25s cubic-bezier(0.25, 1, 0.5, 1) backwards;
    animation-delay: 0.08s;
}

.contact-section.active .contact-form-container {
    opacity: 1;
    pointer-events: auto;
    animation: panelBounce 1.25s cubic-bezier(0.25, 1, 0.5, 1) backwards;
    animation-delay: 0.16s;
}

@keyframes boxBounce {
    0% {
        opacity: 0;
        transform: var(--base-trans) translateY(220px) scaleX(0.75) scaleY(1.25) rotate(-15deg);
    }
    18% {
        opacity: 1;
        transform: var(--base-trans) translateY(-35px) scaleX(1.15) scaleY(0.85) rotate(10deg);
    }
    34% {
        transform: var(--base-trans) translateY(18px) scaleX(0.9) scaleY(1.1) rotate(-6deg);
    }
    50% {
        transform: var(--base-trans) translateY(-8px) scaleX(1.05) scaleY(0.95) rotate(4deg);
    }
    65% {
        transform: var(--base-trans) translateY(4px) scaleX(0.97) scaleY(1.03) rotate(-2deg);
    }
    78% {
        transform: var(--base-trans) translateY(-2px) scaleX(1.02) scaleY(0.98) rotate(1deg);
    }
    88% {
        transform: var(--base-trans) translateY(1px) scaleX(0.99) scaleY(1.01) rotate(-0.5deg);
    }
    95% {
        transform: var(--base-trans) translateY(0px) scaleX(1.005) scaleY(0.995) rotate(0.2deg);
    }
    100% {
        opacity: 1;
        transform: var(--base-trans) translateY(0) scaleX(1) scaleY(1) rotate(0deg);
    }
}

@keyframes vstBounce {
    0% {
        opacity: 0;
        transform: var(--base-trans) translateY(240px) scaleX(0.7) scaleY(1.3) rotate(15deg);
    }
    18% {
        opacity: 1;
        transform: var(--base-trans) translateY(-30px) scaleX(1.12) scaleY(0.88) rotate(-9deg);
    }
    34% {
        transform: var(--base-trans) translateY(15px) scaleX(0.92) scaleY(1.08) rotate(5deg);
    }
    50% {
        transform: var(--base-trans) translateY(-6px) scaleX(1.04) scaleY(0.96) rotate(-3deg);
    }
    65% {
        transform: var(--base-trans) translateY(3px) scaleX(0.98) scaleY(1.02) rotate(1.5deg);
    }
    78% {
        transform: var(--base-trans) translateY(-1px) scaleX(1.01) scaleY(0.99) rotate(-0.8deg);
    }
    88% {
        transform: var(--base-trans) translateY(0.5px) scaleX(0.995) scaleY(1.005) rotate(0.4deg);
    }
    95% {
        transform: var(--base-trans) translateY(0px) scaleX(1.002) scaleY(0.998) rotate(-0.1deg);
    }
    100% {
        opacity: 1;
        transform: var(--base-trans) translateY(0) scaleX(1) scaleY(1) rotate(0deg);
    }
}

@keyframes panelBounce {
    0% {
        opacity: 0;
        transform: translateY(160px) scaleX(0.8) scaleY(1.2) rotate(8deg);
    }
    18% {
        opacity: 1;
        transform: translateY(-25px) scaleX(1.1) scaleY(0.9) rotate(-6deg);
    }
    34% {
        transform: translateY(12px) scaleX(0.94) scaleY(1.06) rotate(4deg);
    }
    50% {
        transform: translateY(-5px) scaleX(1.03) scaleY(0.97) rotate(-2deg);
    }
    65% {
        transform: translateY(2px) scaleX(0.99) scaleY(1.01) rotate(1deg);
    }
    78% {
        transform: translateY(-1px) scaleX(1.01) scaleY(0.99) rotate(-0.5deg);
    }
    88% {
        transform: translateY(0.5px) scaleX(0.997) scaleY(1.003) rotate(0.2deg);
    }
    95% {
        transform: translateY(0px) scaleX(1.001) scaleY(0.999) rotate(-0.1deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scaleX(1) scaleY(1) rotate(0deg);
    }
}

/* ==========================================================================
   AESTHETIC LIGHTBOX MODAL FOR PROMO BANNERS
   ========================================================================== */
.promo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 4, 6, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.promo-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    max-width: 90%;
    max-height: 80%;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85);
    overflow: hidden;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-modal.active .modal-content {
    transform: scale(1);
}

.modal-promo-img {
    display: block;
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain; /* Shows the full promo artwork completely without cropping */
}

.modal-close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 3.5rem;
    font-family: sans-serif;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    z-index: 2001;
}

.modal-close-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 20px;
}

.contact-logo {
    height: 110px;
    width: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.15));
}

.contact-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.contact-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-links a {
    color: var(--text-gray);
    font-size: 1.3rem;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: var(--text-light);
    transform: scale(1.15);
}

/* Support Form */
.contact-form-container h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.25);
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.sub-footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1.0); opacity: 0.75; filter: drop-shadow(0 0 15px rgba(255,255,255,0.2)); }
    50% { transform: scale(1.04); opacity: 1; filter: drop-shadow(0 0 30px rgba(255,255,255,0.45)); }
    100% { transform: scale(1.0); opacity: 0.75; filter: drop-shadow(0 0 15px rgba(255,255,255,0.2)); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.4rem; }
    .product-title { font-size: 2.3rem; }
    .product-content, .hero-content { gap: 40px; }
    .vst-gui { max-width: 380px; }
    .box-3d-container { --base-trans: translateX(-70px) translateY(-10px) scale(0.9); }
    .main-vst-img { --base-trans: translateX(80px) translateY(40px) scale(0.85); }
    .product-visuals:hover .box-3d-container { transform: translateX(-80px) translateY(-15px) scale(0.9); }
    .product-visuals:hover .main-vst-img { transform: translateX(100px) translateY(50px) scale(0.88) rotate(3deg); }
}

@media (max-width: 991px) {
    /* Fail-safe visibility on mobile/tablet viewports */
    .product-section:not(.active) .box-3d-container,
    .product-section:not(.active) .main-vst-img,
    .product-section:not(.active) .product-info-panel,
    .contact-section:not(.active) .contact-info,
    .contact-section:not(.active) .contact-form-container {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    html {
        scroll-snap-type: none; /* Disable snap on tablet/mobile */
    }
    
    .scroll-container {
        height: auto;
        overflow-y: visible;
    }
    
    .scroll-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
        height: auto;
    }
    
    .hero-content {
        height: auto;
        padding: 80px 0;
    }
    
    .product-content, 
    .product-content.reverse-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .product-content.reverse-layout .product-visuals {
        order: 0;
    }
    
    .product-visuals {
        height: 400px;
    }
    
    .vst-gui { max-width: 400px; }
    
    /* Center box and VST image on tablet */
    .box-3d-container { 
        --base-trans: translateX(-75px) translateY(-10px) scale(0.85); 
        transform: var(--base-trans);
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, filter 0.6s ease;
    }
    .main-vst-img {
        --base-trans: translateX(75px) translateY(30px) scale(0.92);
        transform: var(--base-trans);
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, filter 0.6s ease;
    }
    
    /* Viewport-based entrance zoom when section is active on mobile/tablet */
    .product-section.active .box-3d-container {
        transform: translateX(-80px) translateY(-15px) scale(0.95);
    }
    .product-section.active .main-vst-img {
        transform: translateX(80px) translateY(35px) scale(1.06) rotate(4deg);
    }
    
    /* Touch active zoom */
    .product-visuals:active .box-3d-container {
        transform: translateX(-85px) translateY(-20px) scale(1.02) !important;
    }
    .product-visuals:active .main-vst-img {
        transform: translateX(85px) translateY(35px) scale(1.15) rotate(6deg) !important;
        z-index: 22 !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sub-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-container { padding: 0 20px; }
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(5, 5, 8, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 40px;
    }
    
    .nav-item {
        font-size: 1.3rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hamburger Menu Animation */
    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-title { font-size: 2.3rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    
    .product-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .action-row-primary {
        flex-direction: column;
        gap: 12px;
    }
    
    .product-visuals {
        height: 450px;
    }
    
    .vst-gui { max-width: 370px; }
    .box-3d-container { 
        --base-trans: translateX(-60px) translateY(-15px) scale(0.72); 
        transform: var(--base-trans);
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, filter 0.6s ease;
    }
    .main-vst-img {
        --base-trans: translateX(60px) translateY(40px) scale(0.95);
        transform: var(--base-trans);
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, filter 0.6s ease;
    }
    
    /* Viewport-based entrance zoom when section is active on mobile */
    .product-section.active .box-3d-container {
        transform: translateX(-65px) translateY(-20px) scale(0.85);
    }
    .product-section.active .main-vst-img {
        transform: translateX(65px) translateY(45px) scale(1.12) rotate(4deg);
    }
    
    /* Touch active zoom */
    .product-visuals:active .box-3d-container {
        transform: translateX(-70px) translateY(-25px) scale(0.92) !important;
    }
    .product-visuals:active .main-vst-img {
        transform: translateX(70px) translateY(45px) scale(1.22) rotate(6deg) !important;
        z-index: 22 !important;
    }
}



/* Contact email box */
.contact-email-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 10px;
    margin: 15px 0 25px 0;
    transition: all 0.3s ease;
    width: fit-content;
}

.contact-email-box:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.contact-email-box i {
    color: var(--neon-blue);
    text-shadow: 0 0 8px var(--neon-blue-glow);
}

.contact-email-box a {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   AJAX CART TOAST NOTIFICATIONS & BADGE POP
   ========================================================================== */
.cart-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    min-width: 320px;
    background: rgba(8, 8, 12, 0.9) !important;
    border: 1px solid var(--neon-blue) !important;
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.25) !important;
    padding: 18px 24px;
    transform: translateY(120px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.cart-toast.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.toast-icon {
    font-size: 1.8rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue-glow);
}

.toast-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toast-msg {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

.toast-link {
    font-size: 0.8rem;
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.toast-link:hover {
    color: #fff;
    text-shadow: 0 0 5px var(--neon-blue-glow);
}

/* Cart Badge Pop Animation */
.pop-badge {
    animation: badgePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badgePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* Success state for Add to Cart button */
.btn-success-state {
    background: rgba(57, 255, 20, 0.15) !important;
    border-color: var(--neon-green) !important;
    color: var(--neon-green) !important;
    box-shadow: 0 0 15px var(--neon-green-glow) !important;
}

/* Center toast and adjust widths on small screens */
@media (max-width: 580px) {
    .cart-toast {
        left: 20px !important;
        right: 20px !important;
        bottom: 20px !important;
        min-width: auto !important;
    }
}


