/* ============================================
   Swiss Aim Controller - Premium Gaming Website
   Neon Style with Swiss Gaming Effects
   ============================================ */

:root {
    /* Swiss Color Palette - Red & White Theme */
    --swiss-red: #ff0000;
    --swiss-red-bright: #ff1a1a;
    --swiss-red-dark: #cc0000;
    --swiss-red-glow: #ff3333;
    --swiss-white: #ffffff;
    --swiss-silver: #c0c0c0;
    --swiss-grey: #808080;
    
    /* Background Colors */
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: rgba(20, 20, 20, 0.9);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

*,
*::before,
*::after {
    max-width: 100%;
}

/* Prevent horizontal scrolling on all devices */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
}

/* Ensure all sections and containers respect viewport width */
section, 
.container,
.topbar-container,
.hero-content,
.webshop-hero-content {
    max-width: 100vw;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

/* Prevent scrolling on all content boxes in sections */
.introduction-section,
.introduction-text,
.intro-paragraph,
.showcase-text,
.feature-card,
.features,
.features-grid,
.feature-text,
.feature-title,
.contact-info,
.contact-wrapper,
.featured-product-card,
.featured-product-info,
.hero-content,
.showcase-content {
    overflow: hidden !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: auto !important;
    touch-action: pan-y !important;
}

/* Ensure content inside boxes doesn't create scrollable areas */
.introduction-section *,
.showcase-text *,
.feature-card *,
.features *,
.features-grid *,
.contact-info *,
.featured-product-card * {
    max-height: none !important;
}

/* ============================================
   TOPBAR - Sticky White Background
   ============================================ */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-sizing: border-box;
}

.topbar.scrolled {
    box-shadow: 0 4px 30px rgba(255, 0, 0, 0.15);
}

.topbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.topbar-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color var(--transition-normal);
    padding: var(--spacing-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--swiss-red), var(--swiss-red-bright));
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--swiss-red);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--bg-dark);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   HEADER IMAGE SECTION
   ============================================ */

.header-image-section {
    position: relative;
    width: 100%;
    height: calc(100vh + 120px);
    min-height: calc(100vh + 120px);
    margin-top: -120px;
    padding-top: 120px;
    overflow: hidden;
    z-index: 1;
    margin-bottom: -50px;
}

.header-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.header-images-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1) contrast(1.1);
    will-change: opacity, filter, transform;
    transition: opacity 1.5s ease-in-out, filter 1.2s ease-in-out;
    transform: translateY(0);
}

.header-image-1 {
    opacity: 1;
    z-index: 1;
}

.header-image-2 {
    opacity: 0;
    z-index: 2;
}

.header-image-3 {
    opacity: 0;
    z-index: 3;
}

.header-image-4 {
    opacity: 0;
    z-index: 4;
}

.header-image.fade-out {
    opacity: 0;
}

.header-image.fade-in {
    opacity: 1;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.7) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
    padding-bottom: var(--spacing-lg);
}

.header-content {
    text-align: center;
    z-index: 2;
    padding: var(--spacing-lg);
    padding-bottom: var(--spacing-xl);
    animation: none;
    opacity: 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    transition: opacity 0.8s ease-out;
}

.header-content.visible {
    opacity: 1;
}

/* Removed header-logo - moved to logo section below */

.header-carousel {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) 0;
}

@media (max-width: 768px) {
    .header-carousel {
        min-height: 280px;
        max-height: 500px;
        padding: var(--spacing-sm) 0;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .header-carousel {
        min-height: 300px;
        max-height: 600px;
        padding: var(--spacing-xs) 0;
        overflow: hidden;
        position: relative;
    }
    
    .carousel-slide {
        padding: var(--spacing-xs);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.95);
        width: 100%;
    }
    
    .carousel-slide.active {
        transform: translate(-50%, -50%) scale(1) !important;
    }
    
    .carousel-slide:not(.active) {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    
    .carousel-description {
        font-size: 0.75rem;
        line-height: 1.5;
        padding: 0 var(--spacing-xs);
        margin-top: var(--spacing-xs);
        max-width: 98%;
    }
    
    .header-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .header-subtitle {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }
}

.header-carousel.aiming::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 1px;
    background: radial-gradient(circle, var(--swiss-red) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.6),
        0 0 40px rgba(255, 0, 0, 0.4),
        0 0 60px rgba(255, 0, 0, 0.2);
    animation: premiumReticle 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.header-carousel.aiming::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    animation: premiumReticle 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    box-shadow: 
        inset 0 0 20px rgba(255, 0, 0, 0.1),
        0 0 30px rgba(255, 0, 0, 0.15);
}

@keyframes premiumReticle {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.8);
    }
}

.carousel-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 100%;
    height: auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0s 0.6s;
    pointer-events: none;
    filter: blur(8px) brightness(0.8);
    z-index: 1;
    text-align: center;
    padding: var(--spacing-md) var(--spacing-sm);
    box-sizing: border-box;
}

.carousel-slide.active {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all;
    filter: blur(0) brightness(1) !important;
    z-index: 2;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0s 0s;
}

.carousel-slide.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    animation: premiumGlow 3s ease-in-out infinite;
}

@keyframes premiumGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.carousel-slide:not(.active) {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.95);
}

.carousel-slide.prev {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    visibility: hidden;
    filter: blur(8px) brightness(0.8);
    z-index: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0s 0.6s;
}

.header-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.header-subtitle {
    display: block;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--swiss-white);
    font-weight: 400;
    margin-top: var(--spacing-xs);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.carousel-description {
    font-size: clamp(0.85rem, 1.8vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: var(--spacing-md);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    padding: 0 var(--spacing-md);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
                transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    box-sizing: border-box;
}

.carousel-slide.active .carousel-description {
    opacity: 1;
    transform: translateY(0);
}

.carousel-slide:not(.active) .carousel-description {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease,
                transform 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 50px;
    overflow: hidden;
    margin-top: 0;
    z-index: 50;
    background: #ffffff;
    box-shadow: 
        inset 0 0 150px rgba(0, 0, 0, 0.03),
        inset 0 0 100px rgba(0, 0, 0, 0.02);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Mooie schaduw gradient in de hoeken */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top left, rgba(0, 0, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(0, 0, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(0, 0, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(0, 0, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Additional shadow gradient layer voor meer diepte */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(0, 0, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(0, 0, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(0, 0, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(0, 0, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.lightning-effect {
    display: none;
}

.neon-grid {
    display: none;
}

/* Hero Light Glow Effect */
.hero-light-glow {
    display: none;
}

@keyframes heroGlow {
    0%, 100% { 
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-lg);
    animation: fadeInUp 1s ease-out;
    opacity: 1 !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

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

.hero-logo-container {
    margin-bottom: var(--spacing-md);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.6)) drop-shadow(0 0 60px rgba(255, 0, 0, 0.3));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.5)) drop-shadow(0 0 40px rgba(255, 0, 0, 0.2));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(255, 0, 0, 0.8)) drop-shadow(0 0 80px rgba(255, 0, 0, 0.4));
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.neon-text {
    display: block;
    background: linear-gradient(90deg, var(--swiss-white), var(--swiss-red), var(--swiss-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
    animation: neonGlow 2s ease-in-out infinite alternate;
    font-weight: 900;
    letter-spacing: 3px;
}

@keyframes neonGlow {
    from {
        filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.6));
    }
    to {
        filter: drop-shadow(0 0 35px rgba(255, 0, 0, 0.9)) drop-shadow(0 0 60px rgba(255, 0, 0, 0.4));
    }
}

.hero-subtitle {
    display: block;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: var(--spacing-xs);
}

.introduction-section {
    max-width: 1000px;
    margin: 0 auto var(--spacing-lg);
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-md);
    background: transparent;
    border-radius: 20px;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 100;
    will-change: transform;
    box-sizing: border-box;
    overflow: hidden;
}

.introduction-section::before {
    display: none;
}

.introduction-section::after {
    display: none;
}

.introduction-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--swiss-red);
    text-align: center;
    margin-bottom: var(--spacing-md);
    margin-top: 0;
    padding-top: var(--spacing-sm);
    background: linear-gradient(90deg, var(--swiss-red), var(--swiss-red-dark), var(--swiss-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    z-index: 2;
}

.introduction-text {
    text-align: left;
    position: relative;
    z-index: 2;
}

.intro-paragraph {
    font-size: clamp(0.9rem, 2.5vw, 1.15rem);
    color: #333333;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    z-index: 2;
}

.intro-paragraph:last-child {
    margin-bottom: 0;
}

.intro-paragraph strong {
    color: var(--swiss-red);
    font-weight: 700;
}

/* Red Neon Light Effects for Contact Section */
.contact-lights,
.red-neon-lights.contact-lights {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.contact-lights .spotlight,
.red-neon-lights.contact-lights .spotlight {
    position: absolute;
    bottom: 0;
    width: 500px;
    height: 400px;
    background: radial-gradient(
        ellipse at center bottom,
        rgba(255, 0, 0, 0.5) 0%,
        rgba(255, 20, 20, 0.35) 20%,
        rgba(255, 50, 50, 0.2) 40%,
        rgba(255, 0, 0, 0.1) 60%,
        rgba(255, 0, 0, 0.05) 80%,
        transparent 100%
    );
    filter: blur(60px);
    animation: spotlightMove 12s ease-in-out infinite;
    transform-origin: center bottom;
    opacity: 1;
}

.contact-lights .spotlight-1,
.red-neon-lights.contact-lights .spotlight-1 {
    left: 15%;
    animation-delay: 0s;
    animation-duration: 14s;
    width: 700px;
    height: 500px;
}

.contact-lights .spotlight-2,
.red-neon-lights.contact-lights .spotlight-2 {
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
    animation-duration: 16s;
    width: 800px;
    height: 550px;
}

.contact-lights .spotlight-3,
.red-neon-lights.contact-lights .spotlight-3 {
    right: 15%;
    animation-delay: 6s;
    animation-duration: 15s;
    width: 700px;
    height: 500px;
}

/* Lasers removed - replaced with subtle red light glow */

@keyframes spotlightMove {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translateX(-20px) scale(1.05);
        opacity: 0.85;
    }
    50% {
        transform: translateX(20px) scale(0.95);
        opacity: 0.75;
    }
    75% {
        transform: translateX(-10px) scale(1.02);
        opacity: 0.8;
    }
}
        opacity: 0.7;
    }
    25% {
        transform: rotate(8deg) translateY(-10px);
        opacity: 0.9;
    }
    50% {
        transform: rotate(-5deg) translateY(0);
        opacity: 0.8;
    }
    75% {
        transform: rotate(10deg) translateY(-15px);
        opacity: 0.85;
    }
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    font-family: 'Rajdhani', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--swiss-red), var(--swiss-red-dark));
    color: var(--text-primary);
    border-radius: 50px;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.neon-button {
    position: relative;
}

.neon-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--swiss-red), var(--swiss-white), var(--swiss-red), var(--swiss-red-bright));
    background-size: 300% 300%;
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.neon-button:hover::before {
    opacity: 1;
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.neon-button:hover .button-glow {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: transparent;
    color: var(--swiss-red);
    border: none;
    border-radius: 50px;
}

.btn-secondary:hover {
    background: rgba(255, 0, 0, 0.1);
    color: var(--swiss-red-dark);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--swiss-red);
    border-bottom: 3px solid var(--swiss-red);
    transform: rotate(45deg);
    animation: smoothBounce 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.6));
}

@keyframes smoothBounce {
    0%, 100% { 
        transform: translateY(0) rotate(45deg);
        opacity: 1;
    }
    50% { 
        transform: translateY(15px) rotate(45deg);
        opacity: 0.7;
    }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    section {
        padding: var(--spacing-md) 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-family: 'Orbitron', sans-serif;
}

@media (max-width: 480px) {
    .section-title {
        margin-bottom: var(--spacing-sm);
    }
}

.neon-accent {
    display: block;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--swiss-red);
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.section-title-main {
    display: block;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(90deg, var(--swiss-white), var(--swiss-red), var(--swiss-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

/* ============================================
   PARALLAX IMAGE SECTION
   ============================================ */

.parallax-image-section {
    position: relative;
    padding: var(--spacing-md) 0;
    z-index: 1;
}

.parallax-image-section .container {
    position: relative;
}

.parallax-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.parallax-background-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.parallax-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .parallax-image-section {
        padding: var(--spacing-sm) 0;
    }
    
    .parallax-image-wrapper {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .parallax-image-section {
        padding: var(--spacing-sm) 0;
    }
    
    .parallax-image-wrapper {
        border-radius: 15px;
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #f8f8f8 25%, 
        #ffffff 50%, 
        #f5f5f5 75%, 
        #ffffff 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1), 0 10px 40px rgba(0, 0, 0, 0.1);
}

.features::before {
    display: none;
}

.features::after {
    display: none;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features .section-title {
    margin-bottom: var(--spacing-lg);
}

.features .neon-accent {
    color: var(--swiss-red);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.features .section-title-main {
    background: linear-gradient(90deg, var(--swiss-red), var(--swiss-red-dark), var(--swiss-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
    overflow: hidden !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
}

.feature-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(250, 250, 250, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(255, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
    pointer-events: none;
}

.feature-card::after {
    display: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--swiss-red);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.12),
        0 3px 15px rgba(255, 0, 0, 0.15);
}

.feature-card:hover::before {
    opacity: 0.6;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.4));
    position: relative;
    z-index: 1;
    opacity: 1;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--swiss-red);
    text-shadow: 
        0 1px 2px rgba(255, 0, 0, 0.15),
        0 0 10px rgba(255, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.feature-text {
    color: var(--swiss-red);
    line-height: 1.7;
    text-shadow: none;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ============================================
   SHOWCASE SECTION
   ============================================ */

.showcase {
    position: relative;
    overflow: hidden;
    will-change: transform;
    background: var(--swiss-red);
    box-shadow: 
        inset 0 40px 80px -40px rgba(0, 0, 0, 0.25),
        inset 0 -40px 80px -40px rgba(0, 0, 0, 0.25);
}

.showcase-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Smoke/Fog Effect for Showcase */
.showcase-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    opacity: 0.6;
    animation: smokeFloat 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.showcase-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 0, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    opacity: 0.5;
    animation: smokeDrift 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.showcase .container {
    position: relative;
    z-index: 1;
}

.showcase .section-title .neon-accent {
    color: #FFFFFF;
    text-shadow: none;
}

.showcase .section-title .section-title-main {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #FFFFFF;
    background-clip: unset;
    color: #FFFFFF;
    text-shadow: none;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--spacing-md);
    align-items: center;
    margin-top: var(--spacing-md);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Animation will be handled by JavaScript, default is visible */

.showcase-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.showcase-text {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: var(--spacing-md) 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    max-width: 100%;
    text-align: left;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

/* Animation will be handled by JavaScript, default is visible */

.showcase-text.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.showcase-text::before {
    display: none;
}

.showcase-text::after {
    display: none;
}

.showcase-text h3 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    color: #FFFFFF;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    filter: none;
    letter-spacing: 1px;
}

.showcase-text p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    max-width: 100%;
    font-weight: 400;
}

.showcase-text strong {
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: none;
}

.showcase-text .btn {
    position: relative;
    z-index: 2;
    margin-top: var(--spacing-sm);
    display: inline-block;
}

.showcase-text .btn-primary {
    background: #FFFFFF;
    color: var(--swiss-red);
    border: 2px solid #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    padding: 14px 32px;
    font-weight: 700;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.showcase-text .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--swiss-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.showcase-text .neon-button::before {
    display: none;
}

.showcase-text .neon-button .button-glow {
    display: none;
}

.showcase-images-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transform: translateX(0);
    transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}

/* Animation will be handled by JavaScript, default is visible */

.showcase-images-gallery.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.gallery-main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    max-height: 550px;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border: none;
    transition: all var(--transition-normal);
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.7s ease-out 0.6s, transform 0.7s ease-out 0.6s;
}

/* Animation will be handled by JavaScript, default is visible */

.gallery-main-image.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-main-image::before {
    display: none;
}

.gallery-main-image:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}


.gallery-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition-normal);
    filter: brightness(1) contrast(1.1) saturate(1.05);
    opacity: 1;
}

.gallery-main-image:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-xs);
    width: 100%;
    padding-top: var(--spacing-xs);
}

.thumbnail-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    backdrop-filter: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
    min-height: 180px;
    max-height: 200px;
    box-shadow: none;
    transform: translateY(0) scale(1);
    will-change: opacity, transform;
}

.thumbnail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
    pointer-events: none;
}

.thumbnail-item:hover {
    transform: translateY(-3px) scale(1.1);
    border: none;
    box-shadow: none;
    opacity: 1;
    filter: brightness(1.2);
}

.thumbnail-item:hover::before {
    opacity: 1;
}

.thumbnail-item.active {
    border: none;
    box-shadow: none;
    opacity: 1;
    transform: scale(1.08);
    filter: brightness(1.15);
}

.thumbnail-item.active::before {
    opacity: 0.8;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal), filter var(--transition-normal);
    filter: brightness(0.9) contrast(1.1) saturate(1.05);
    position: relative;
    z-index: 0;
}

.thumbnail-item:hover img {
    transform: scale(1.15);
    filter: brightness(1) contrast(1.1);
}

.thumbnail-item.active img {
    filter: brightness(1) contrast(1.15) saturate(1.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .showcase-text {
        padding: var(--spacing-lg);
        text-align: center;
        transform: translateY(-30px);
    }
    
    .showcase-text.animate-in {
        transform: translateY(0);
    }
    
    .showcase-images-gallery {
        padding: var(--spacing-md);
        transform: translateY(30px);
    }
    
    .showcase-images-gallery.animate-in {
        transform: translateY(0);
    }
    
    .gallery-main-image {
        max-height: 350px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(5, 1fr);
        gap: var(--spacing-xs);
    }
    
    .thumbnail-item {
        min-height: 100px;
        max-height: 120px;
    }
}

@media (max-width: 768px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .showcase-text {
        padding: var(--spacing-md);
        text-align: center;
    }
    
    .showcase-images-gallery {
        width: 100%;
        max-width: 100%;
        padding: var(--spacing-md);
        margin: 0;
    }
    
    .gallery-main-image {
        aspect-ratio: 16/10;
        max-height: 300px;
        border-radius: 10px;
        width: 100%;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(5, 1fr);
        gap: var(--spacing-xs);
        width: 100%;
        padding-top: var(--spacing-sm);
    }

    .thumbnail-item {
        border-radius: 6px;
        min-height: 80px;
        max-height: 100px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .showcase {
        padding: var(--spacing-sm) 0 !important;
    }
    
    .showcase .container {
        padding: 0 var(--spacing-xs);
    }
    
    .showcase .section-title {
        margin-bottom: var(--spacing-xs) !important;
    }
    
    .showcase .neon-accent {
        font-size: clamp(0.75rem, 3vw, 1rem) !important;
        margin-bottom: 2px !important;
    }
    
    .showcase .section-title-main {
        font-size: clamp(1.4rem, 6vw, 2rem) !important;
    }
    
    .showcase-content {
        gap: var(--spacing-xs);
        padding: 0;
        margin-top: var(--spacing-xs);
    }
    
    .showcase-text {
        padding: var(--spacing-xs) 0;
    }
    
    .showcase-text h3 {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .showcase-text p {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        line-height: 1.5;
        margin-bottom: 8px;
    }
    
    .showcase-text .btn {
        margin-top: 6px;
        display: inline-block;
    }
    
    .showcase-text .btn-primary {
        padding: 10px 20px !important;
        font-size: clamp(0.8rem, 2.5vw, 0.9rem) !important;
        font-weight: 700;
        border: 2px solid #FFFFFF;
    }
    
    .showcase-images-gallery {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        gap: var(--spacing-xs);
    }
    
    .gallery-main-image {
        max-height: 200px;
        aspect-ratio: 16/10;
        border-radius: 6px;
        width: 100%;
        margin: 0 auto;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        width: 100%;
        padding-top: 4px;
        box-sizing: border-box;
    }
    
    .thumbnail-item {
        min-height: 70px;
        max-height: 85px;
        border-radius: 0;
        width: 100%;
    }
    
    .thumbnail-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Removed image-overlay for square images - no light effects */

/* ============================================
   FEATURED PRODUCTS SECTION
   ============================================ */

.featured-products-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    width: 100%;
}

/* Full width on desktop - products side by side */
@media (min-width: 769px) {
    .featured-products-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: var(--spacing-md);
    }
}

/* Mobile: stack products vertically */
@media (max-width: 768px) {
    .featured-products-grid {
        grid-template-columns: 1fr;
    }
}

.featured-product-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 0, 0.3);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.featured-product-card:hover {
    transform: translateY(-10px);
    border-color: var(--swiss-red);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.4);
}

.featured-product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-darker);
}

.featured-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: brightness(0.7);
}

.featured-product-card:hover .featured-product-image {
    transform: scale(1.1);
    filter: brightness(1);
}

.featured-product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--swiss-red), var(--swiss-red-dark));
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.featured-product-info {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.featured-product-number {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.featured-product-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--swiss-red);
    font-family: 'Orbitron', sans-serif;
}

.featured-product-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.featured-product-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.featured-feature-tag {
    background: var(--swiss-white);
    color: var(--swiss-red);
    padding: 0.4rem 0.9rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid var(--swiss-red);
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
}

.featured-product-pricing {
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.featured-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--swiss-white);
    font-family: 'Orbitron', sans-serif;
    display: block;
}

.featured-product-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* Initial state for animated elements */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.scroll-animate-delay-1 {
    transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
    transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
    transition-delay: 0.3s;
}

.scroll-animate-delay-4 {
    transition-delay: 0.4s;
}

.scroll-animate-delay-5 {
    transition-delay: 0.5s;
}

.scroll-animate-delay-6 {
    transition-delay: 0.6s;
}

/* Fade in from left */
.scroll-animate-left {
    opacity: 0;
    transform: translateX(-40px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-left.animated {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Special delayed animation for showcase text */
.showcase-text.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px) scale(0.92) rotateY(-5deg);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.4s;
}

.showcase-text.scroll-animate-left.animated {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
}

/* Fade in from right */
.scroll-animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Scale animation */
.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Main gallery image animation */
.gallery-main-animate {
    opacity: 1 !important;
    transform: scale(1) translateY(0);
    transition: none;
    will-change: auto;
}

.gallery-main-animate.animated {
    opacity: 1 !important;
    transform: scale(1) translateY(0);
}

/* Thumbnail animation - professional entrance effect */
.gallery-thumbnail-animate {
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.gallery-thumbnail-animate.animated {
    opacity: 1 !important;
    transform: translateY(0) scale(1);
    animation: thumbnailPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes thumbnailPop {
    0% {
        transform: translateY(0) scale(0.85);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* Ensure all thumbnails are visible by default */
.thumbnail-item {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Showcase section title animation - fade in from top */
.showcase-title-animate {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-title-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Showcase content box animation - snel en professioneel, geen flickering */
.showcase-content-box-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.showcase-content-box-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Showcase gallery container animation - fris en snel effect, na tekst */
.showcase-gallery-animate {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.showcase-gallery-animate.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: showcaseGalleryPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

@keyframes showcaseGalleryPop {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* Features section title animation */
.features-title-animate {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.features-title-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Features grid animation */
.features-grid-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.features-grid-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Featured Products Showcase Animation - Mooi van beneden naar boven met snelle scale flash */
.featured-product-showcase {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-product-showcase.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: showcaseFlash 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

@keyframes showcaseFlash {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* Featured products grid container animation */
.featured-products-grid-showcase {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-products-grid-showcase.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: visible;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #f8f8f8 25%, 
        #ffffff 50%, 
        #f5f5f5 75%, 
        #ffffff 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1), 0 10px 40px rgba(0, 0, 0, 0.1);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contact-background {
    display: none;
}

/* Red Neon Light Effects for Contact Section - Professional subtle glow */
.contact-lights .spotlight-1 {
    animation-delay: 0s;
}

.contact-lights .spotlight-2 {
    animation-delay: 3s;
}

.contact-lights .spotlight-3 {
    animation-delay: 6s;
}

.contact-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    padding: 0 var(--spacing-md);
    box-sizing: border-box;
}

.contact-section .section-title {
    margin-bottom: var(--spacing-lg);
}

.contact-section .neon-accent {
    color: var(--swiss-red);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.contact-section .section-title-main {
    background: linear-gradient(90deg, var(--swiss-red), var(--swiss-red-dark), var(--swiss-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.contact-info {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    padding: var(--spacing-lg);
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.contact-info::after {
    display: none;
}

.contact-info::before {
    display: none;
}

.contact-info h3 {
    font-size: clamp(0.9rem, 2.8vw, 1.4rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--swiss-red);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 
        0 1px 2px rgba(255, 0, 0, 0.15),
        0 0 15px rgba(255, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
}

.contact-note {
    color: #333333;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    word-wrap: break-word;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #222222;
    font-weight: 600;
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}

.contact-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    flex-shrink: 0;
}

.contact-item a {
    color: var(--swiss-red);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 0, 0, 0.1);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: 100%;
    display: inline-block;
}

.contact-item a:hover {
    color: var(--swiss-red-dark);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
    transform: translateX(3px);
}

.contact-item span:not(.contact-icon) {
    color: #333333;
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    word-break: break-word;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
}

.contact-form {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(250, 250, 250, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: var(--spacing-lg);
    border-radius: 25px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.08),
        0 5px 20px rgba(255, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(255, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(255, 0, 0, 0.3) 0%, 
        rgba(255, 0, 0, 0.15) 50%, 
        rgba(255, 0, 0, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.form-group {
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    color: #222222;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    box-sizing: border-box;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--swiss-red);
    box-shadow: 
        0 0 0 3px rgba(255, 0, 0, 0.1),
        0 4px 12px rgba(255, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
    font-weight: 400;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
    position: relative;
    z-index: 2;
}

.whatsapp-link {
    color: var(--swiss-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-normal);
    text-shadow: 0 1px 2px rgba(255, 0, 0, 0.1);
}

.whatsapp-link:hover {
    color: var(--swiss-red-dark);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* Contact section specific button styling */
.contact-section .btn-primary {
    box-shadow: 
        0 4px 20px rgba(255, 0, 0, 0.4),
        0 0 30px rgba(255, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-section .btn-primary:hover {
    box-shadow: 
        0 6px 30px rgba(255, 0, 0, 0.5),
        0 0 40px rgba(255, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* ============================================
   WEBSHOP PAGE
   ============================================ */

.webshop-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(255, 0, 0, 0.1));
}

.webshop-hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
    padding: var(--spacing-lg) var(--spacing-md);
}

.webshop-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
}

.webshop-subtitle {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: var(--spacing-xs);
}

.webshop-description {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--text-secondary);
}

.products-section {
    padding: var(--spacing-xl) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    width: 100%;
}

/* Full width on desktop - products side by side */
@media (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: var(--spacing-md);
    }
}

/* Mobile: stack products vertically */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 0, 0.3);
    transition: all var(--transition-normal);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--swiss-red);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.4);
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-darker);
    margin-bottom: var(--spacing-sm);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    cursor: pointer;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.product-gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-darker);
    border-radius: 5px;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, filter 0.4s ease;
    filter: brightness(0.6);
}

.product-card:hover .product-gallery-main img {
    filter: brightness(1);
}

.product-gallery-thumbnails {
    display: flex;
    gap: var(--spacing-xs);
    justify-content: center;
    flex-wrap: wrap;
}

.product-gallery-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all var(--transition-fast);
    opacity: 0.7;
}

.product-gallery-thumbnail:hover {
    opacity: 1;
    border-color: var(--swiss-red);
    transform: scale(1.05);
}

.product-gallery-thumbnail.active {
    opacity: 1;
    border-color: var(--swiss-red);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .product-gallery-thumbnail {
        width: 60px;
        height: 60px;
    }
}

.product-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.product-badge {
    background: linear-gradient(135deg, var(--swiss-red), var(--swiss-red-dark));
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Removed product-hover-effect - no light effects on square product images */

.product-info {
    padding: var(--spacing-md);
}

.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--swiss-red);
    font-family: 'Orbitron', sans-serif;
}

.product-number-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.3rem;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.product-number {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Stock Status Indicator */
.stock-status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.status-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all var(--transition-normal);
}

/* Green light for in stock */
.status-light.in-stock {
    background-color: #28a745;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.8), 0 0 20px rgba(40, 167, 69, 0.5);
    animation: pulse-green 2s ease-in-out infinite;
}

/* Red light for out of stock */
.status-light.out-of-stock {
    background-color: #dc3545;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.8), 0 0 20px rgba(220, 53, 69, 0.5);
    animation: pulse-red 2s ease-in-out infinite;
}

/* Blue light for coming soon */
.status-light.coming-soon {
    background-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.8), 0 0 20px rgba(0, 123, 255, 0.5);
    animation: pulse-blue 2s ease-in-out infinite;
}

/* Loading state */
.status-light.loading {
    background-color: var(--swiss-grey);
    box-shadow: 0 0 5px rgba(128, 128, 128, 0.5);
}

/* Pulse animations */
@keyframes pulse-green {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(40, 167, 69, 0.8), 0 0 20px rgba(40, 167, 69, 0.5);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 15px rgba(40, 167, 69, 1), 0 0 30px rgba(40, 167, 69, 0.7);
    }
}

@keyframes pulse-red {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(220, 53, 69, 0.8), 0 0 20px rgba(220, 53, 69, 0.5);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 15px rgba(220, 53, 69, 1), 0 0 30px rgba(220, 53, 69, 0.7);
    }
}

@keyframes pulse-blue {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(0, 123, 255, 0.8), 0 0 20px rgba(0, 123, 255, 0.5);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 15px rgba(0, 123, 255, 1), 0 0 30px rgba(0, 123, 255, 0.7);
    }
}

.status-text {
    color: var(--text-secondary);
    font-size: 0.8rem;
    white-space: nowrap;
}

.status-text.in-stock {
    color: #28a745;
}

.status-text.out-of-stock {
    color: #dc3545;
}

.status-text.coming-soon {
    color: #007bff;
}

.status-text.loading {
    color: var(--text-muted);
}

/* Responsive adjustments for stock status */
@media (max-width: 768px) {
    .product-number-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .stock-status-indicator {
        font-size: 0.75rem;
    }
    
    .status-light {
        width: 8px;
        height: 8px;
    }
}

.product-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: -0.5rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.product-more-info-btn {
    background: var(--swiss-red);
    color: var(--swiss-white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-family: 'Rajdhani', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
    width: 100%;
    justify-content: center;
}

.product-more-info-btn:hover {
    background: var(--swiss-red-bright);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
}

.product-more-info-btn:active {
    transform: translateY(0);
}

.product-more-info-btn .icon {
    transition: transform var(--transition-fast);
    font-size: 0.9rem;
}

.product-more-info-btn.active .icon {
    transform: rotate(180deg);
}

.product-highlights {
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(255, 0, 0, 0.05);
    border-left: 3px solid var(--swiss-red);
    border-radius: 5px;
    max-height: 0 !important;
    height: 0 !important;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease, visibility 0.3s ease, height 0.4s ease;
}

.product-highlights.expanded {
    visibility: visible;
    max-height: 2000px !important;
    height: auto !important;
    opacity: 1;
    padding: var(--spacing-md) !important;
    margin-top: var(--spacing-sm) !important;
    margin-bottom: var(--spacing-sm) !important;
}

.product-highlights h4 {
    color: var(--swiss-red);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.product-highlights ul {
    list-style: none;
    padding: 0;
}

.product-highlights li {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.product-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--swiss-red);
    font-weight: bold;
}

.product-highlights strong {
    color: var(--swiss-white);
    font-weight: 600;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.feature-tag {
    background: var(--swiss-white);
    color: var(--swiss-red);
    padding: 0.4rem 0.9rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid var(--swiss-red);
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
}

.product-pricing {
    margin-bottom: var(--spacing-md);
}

.price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--swiss-white);
    font-family: 'Orbitron', sans-serif;
    display: block;
    margin-bottom: 0.3rem;
}

.shipping-info {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.product-buy-btn {
    width: 100%;
    text-align: center;
}

.shipping-info-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: visible;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #f8f8f8 25%, 
        #ffffff 50%, 
        #f5f5f5 75%, 
        #ffffff 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1), 0 10px 40px rgba(0, 0, 0, 0.1);
}

.shipping-background {
    display: none;
}

/* Red Neon Light Effects for Shipping Section - Professional subtle glow */
.shipping-lights .spotlight-1 {
    animation-delay: 0s;
}

.shipping-lights .spotlight-2 {
    animation-delay: 3s;
}

.shipping-lights .spotlight-3 {
    animation-delay: 6s;
}

.shipping-info-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    padding: 0 var(--spacing-md);
    box-sizing: border-box;
}

.shipping-info-section .section-title {
    margin-bottom: var(--spacing-lg);
}

.shipping-info-section .neon-accent {
    color: var(--swiss-red);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.shipping-info-section .section-title-main {
    background: linear-gradient(90deg, var(--swiss-red), var(--swiss-red-dark), var(--swiss-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.shipping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.shipping-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    position: relative;
}

.shipping-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.shipping-item h4 {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--swiss-red);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(255, 0, 0, 0.15);
}

.shipping-item p {
    color: var(--swiss-red);
    line-height: 1.8;
    font-weight: 600;
    font-size: clamp(0.7rem, 1.8vw, 0.85rem);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(255, 0, 0, 0.1);
}

/* ============================================
   LARGE LOGO SECTION
   ============================================ */

.logo-section {
    padding: var(--spacing-md) 0 var(--spacing-sm) 0;
    background: var(--bg-darker);
    position: relative;
}

.logo-display {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.large-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    transform: translateX(0);
    will-change: transform;
}

/* Premium aiming animation - plays once when section is in view */
.large-logo.aiming {
    animation: premiumAimingEffect 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes premiumAimingEffect {
    /* Initial position */
    0% {
        transform: translateX(0);
    }
    /* Quick aim left */
    5% {
        transform: translateX(-80px);
    }
    /* Quick aim right */
    10% {
        transform: translateX(60px);
    }
    /* Quick aim left again */
    15% {
        transform: translateX(-50px);
    }
    /* Quick aim right again */
    20% {
        transform: translateX(40px);
    }
    /* Quick aim left */
    25% {
        transform: translateX(-30px);
    }
    /* Quick aim right */
    30% {
        transform: translateX(25px);
    }
    /* Quick aim left */
    35% {
        transform: translateX(-20px);
    }
    /* Quick aim right */
    40% {
        transform: translateX(15px);
    }
    /* Quick aim left */
    45% {
        transform: translateX(-12px);
    }
    /* Quick aim right */
    50% {
        transform: translateX(10px);
    }
    /* Quick aim left */
    55% {
        transform: translateX(-8px);
    }
    /* Quick aim right */
    60% {
        transform: translateX(6px);
    }
    /* Quick aim left */
    65% {
        transform: translateX(-4px);
    }
    /* Quick aim right */
    70% {
        transform: translateX(3px);
    }
    /* Settle to center */
    75% {
        transform: translateX(0);
    }
    /* Subtle shake right */
    80% {
        transform: translateX(2px);
    }
    /* Subtle shake left */
    82% {
        transform: translateX(-2px);
    }
    /* Subtle shake right */
    84% {
        transform: translateX(1px);
    }
    /* Subtle shake left */
    86% {
        transform: translateX(-1px);
    }
    /* Final settle */
    88% {
        transform: translateX(0);
    }
    /* Final position - perfectly still */
    100% {
        transform: translateX(0);
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-darker);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    color: var(--swiss-red);
    margin-bottom: var(--spacing-sm);
    font-family: 'Orbitron', sans-serif;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-section ul li a:hover {
    color: var(--neon-cyan);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.social-link {
    color: var(--swiss-red);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background-color: var(--swiss-white);
    border: 2px solid var(--swiss-white);
    border-radius: 50px;
    transition: all var(--transition-normal);
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.social-link:hover {
    color: var(--swiss-white);
    background-color: var(--swiss-red);
    border-color: var(--swiss-red);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    color: var(--text-muted);
}

.footer-bottom p {
    margin-bottom: var(--spacing-xs);
}

.designer-credit {
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
}

.designer-credit a {
    color: var(--swiss-red);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.designer-credit a:hover {
    color: var(--swiss-red-bright);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

/* ============================================
   CART ICON
   ============================================ */

.cart-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 1rem;
}

.cart-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.5rem;
    transition: all var(--transition-normal);
    position: relative;
}

.cart-icon:hover {
    color: var(--swiss-red);
    transform: scale(1.1);
}

.cart-icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--swiss-red), var(--swiss-red-dark));
    color: var(--swiss-white);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.5);
    border: 2px solid var(--swiss-white);
    animation: cartPulse 2s ease-in-out infinite;
}

@keyframes cartPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.cart-notification {
    position: fixed;
    top: 150px;
    right: 30px;
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid #00ff88;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 
        0 0 25px rgba(0, 255, 136, 0.5),
        0 0 50px rgba(0, 255, 136, 0.3);
    z-index: 10001;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.cart-notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-notification-icon {
    font-size: 1.5rem;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

.cart-notification-text {
    color: var(--swiss-white);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================
   CART MODAL
   ============================================ */

.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-modal.show {
    display: flex;
    opacity: 1;
}

.cart-modal-content {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(250, 250, 250, 0.98) 100%);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 25px;
    padding: 3rem;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.08),
        0 5px 20px rgba(255, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    animation: cartModalEnter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(20px);
}

.cart-modal-content::before {
    display: none;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes cartModalEnter {
    from {
        transform: scale(0.85) translateY(30px);
        opacity: 0;
        filter: blur(10px);
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 0, 0, 0.2);
}

.cart-modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--swiss-red);
    margin: 0;
    text-shadow: 
        0 1px 2px rgba(255, 0, 0, 0.15),
        0 0 10px rgba(255, 0, 0, 0.1);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cart-modal-close {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid var(--swiss-red);
    color: var(--swiss-red);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    font-weight: 700;
}

.cart-modal-close:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: rotate(90deg);
}

.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(255, 0, 0, 0.1);
}

.cart-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transition: left 0.5s;
}

.cart-item:hover::before {
    left: 100%;
}

.cart-item:hover {
    border-color: var(--swiss-red);
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(5px);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.12),
        0 3px 15px rgba(255, 0, 0, 0.15);
}

.cart-item-image {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 0, 0.4);
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cart-item:hover .cart-item-image {
    border-color: var(--swiss-red);
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--swiss-red);
    margin: 0;
    text-shadow: 
        0 1px 2px rgba(255, 0, 0, 0.15),
        0 0 10px rgba(255, 0, 0, 0.1);
}

.cart-item-number {
    font-size: 0.85rem;
    color: var(--swiss-red);
    opacity: 0.8;
}

.cart-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--swiss-red);
    font-family: 'Orbitron', sans-serif;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
}

.quantity-btn {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid var(--swiss-red);
    color: var(--swiss-red);
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.quantity-btn:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: scale(1.1);
}

.quantity-value {
    min-width: 40px;
    text-align: center;
    color: var(--swiss-red);
    font-weight: 600;
}

.remove-item-btn {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid var(--swiss-red);
    color: var(--swiss-red);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.remove-item-btn:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: translateY(-2px);
}

.cart-summary {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(255, 0, 0, 0.1),
        inset 0 0 20px rgba(255, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.cart-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--swiss-red), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--swiss-red);
    opacity: 0.9;
}

.cart-summary-row.total {
    border-top: 2px solid rgba(255, 0, 0, 0.2);
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--swiss-red);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 
        0 1px 2px rgba(255, 0, 0, 0.15),
        0 0 10px rgba(255, 0, 0, 0.1);
}

.cart-summary-row.total .amount {
    color: var(--swiss-red);
    font-size: 1.5rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem;
    color: var(--swiss-red);
    opacity: 0.8;
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-empty-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--swiss-red);
}

.cart-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cart-btn {
    flex: 1;
    min-width: 200px;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-btn-continue {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 0, 0, 0.3);
    color: var(--swiss-red);
}

.cart-btn-continue:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--swiss-red);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.cart-btn-checkout {
    background: linear-gradient(135deg, var(--swiss-red), var(--swiss-red-dark), var(--swiss-red));
    background-size: 200% 200%;
    color: var(--swiss-white);
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.6),
        0 0 60px rgba(255, 0, 0, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
}

.cart-btn-checkout::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cart-btn-checkout:hover::before {
    left: 100%;
}

.cart-btn-checkout:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 40px rgba(255, 0, 0, 0.8),
        0 0 80px rgba(255, 0, 0, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.15);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 120px;
    right: 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(250, 250, 250, 0.98) 100%);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.08),
        0 5px 20px rgba(255, 0, 0, 0.1);
    z-index: 10001;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

.cart-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.cart-notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-notification-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--swiss-red), var(--swiss-red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiss-white);
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.cart-notification-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--swiss-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        0 1px 2px rgba(255, 0, 0, 0.15),
        0 0 10px rgba(255, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .cart-modal-content {
        padding: 1.5rem;
        width: 95%;
    }
    
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .cart-btn {
        width: 100%;
    }

    .cart-notification {
        right: 1rem;
        left: 1rem;
        transform: translateY(-100px);
    }

    .cart-notification.show {
        transform: translateY(0);
    }
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 28px;
    height: 28px;
}

.whatsapp-button span {
    display: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    .topbar-container {
        height: 100px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        padding: 0 var(--spacing-md) !important;
        margin: 0 auto !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    .logo-container {
        flex-shrink: 0 !important;
        z-index: 1 !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        position: absolute !important;
        right: var(--spacing-md) !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1001 !important;
        flex-shrink: 0 !important;
    }
    
    .topbar-logo {
        height: 80px;
        max-width: 100%;
    }
    
    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        max-width: 100vw;
        height: calc(100vh - 100px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: var(--spacing-lg);
        padding-bottom: var(--spacing-xl);
        gap: var(--spacing-md);
        transition: left var(--transition-normal);
        z-index: 999;
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: var(--bg-dark);
        font-size: 1.3rem;
    }
    
    .nav-menu .cart-icon-wrapper {
        margin-top: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: var(--spacing-md) 0;
    }
    
    .nav-menu .cart-icon {
        width: 80px;
        height: 80px;
        font-size: 3.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiss-red);
        background: rgba(255, 0, 0, 0.1);
        border-radius: 50%;
        border: 3px solid var(--swiss-red);
        transition: all var(--transition-normal);
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    }
    
    .nav-menu .cart-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
        background: rgba(255, 0, 0, 0.15);
    }
    
    .nav-menu .cart-icon-badge {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
        font-weight: 700;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-image-section {
        height: calc(100vh + 100px);
        min-height: calc(100vh + 100px);
        margin-top: -100px;
        padding-top: 100px;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        margin-bottom: -50px;
    }
    
    .header-image-container {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .header-image {
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .header-overlay {
        overflow: visible;
        overflow-x: visible;
        align-items: flex-end;
        padding-bottom: var(--spacing-md);
    }
    
    .header-content {
        padding: var(--spacing-md) var(--spacing-xs);
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: visible;
        overflow-x: visible;
    }
    
    .header-carousel {
        min-height: 280px;
        max-height: 500px;
        padding: var(--spacing-sm) 0;
        overflow: hidden;
    }
    
    .carousel-slide {
        padding: var(--spacing-sm) var(--spacing-xs);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.95);
    }
    
    .carousel-slide.active {
        transform: translate(-50%, -50%) scale(1) !important;
    }
    
    .header-title {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: normal;
        overflow-wrap: normal;
        padding: 0;
        overflow: visible;
        white-space: normal;
        margin-bottom: var(--spacing-xs);
    }
    
    .neon-text {
        letter-spacing: 0.5px;
        white-space: normal;
        word-wrap: normal;
        overflow-wrap: normal;
        display: block;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
        text-overflow: clip;
        padding: 0 10px;
    }
    
    .carousel-description {
        font-size: clamp(0.8rem, 3vw, 1rem);
        padding: 0 var(--spacing-sm);
        margin-top: var(--spacing-sm);
        line-height: 1.6;
        max-width: 95%;
    }
    
    .hero {
        min-height: 60vh;
        padding-top: 100px;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .introduction-section {
        padding: 1rem 0.75rem !important;
        margin: 0 0.75rem 1rem 0.75rem !important;
        width: calc(100% - 1.5rem) !important;
        max-width: calc(100% - 1.5rem) !important;
        box-sizing: border-box;
        border-radius: 15px !important;
        overflow: hidden !important;
        overflow-y: hidden !important;
        overflow-x: hidden !important;
    }
    
    .intro-paragraph {
        text-align: left;
        font-size: clamp(0.85rem, 2.5vw, 1rem) !important;
        line-height: 1.7 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .introduction-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
        padding: 0.5rem 0 !important;
    }
    
    .contact-lights,
    .red-neon-lights.contact-lights {
        height: 200px;
        bottom: -60px;
    }
    
    .contact-lights .spotlight,
    .red-neon-lights.contact-lights .spotlight {
        width: 250px;
        height: 250px;
        filter: blur(40px);
    }
    
    .contact-lights .laser,
    .red-neon-lights.contact-lights .laser {
        height: 180px;
        width: 2px;
    }
    
    .large-logo {
        max-width: 100%;
        width: 100%;
        padding: 0 var(--spacing-sm);
        box-sizing: border-box;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .showcase-text {
        padding: var(--spacing-md) var(--spacing-md) !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-width: 0;
        overflow: hidden !important;
        overflow-y: hidden !important;
        overflow-x: hidden !important;
    }
    
    .showcase-text h3 {
        font-size: clamp(1.1rem, 3.5vw, 1.6rem) !important;
    }
    
    .showcase-text p {
        font-size: clamp(0.8rem, 2vw, 0.95rem) !important;
        line-height: 1.7 !important;
        max-width: 100%;
    }
    
    .showcase-images {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        padding: 0;
        gap: var(--spacing-md);
        box-sizing: border-box;
    }
    
    .image-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
        aspect-ratio: auto;
        min-height: auto;
    }
    
    .image-card img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    
    .contact-section {
        padding: var(--spacing-lg) 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .contact-lights {
        height: 200px;
        bottom: -60px;
    }
    
    .contact-lights .spotlight {
        width: 250px;
        height: 250px;
        filter: blur(40px);
    }
    
    .contact-lights .laser {
        height: 180px;
        width: 2px;
    }
    
    .contact-section .container {
        padding: 0 var(--spacing-sm) !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        gap: var(--spacing-md);
        margin-top: var(--spacing-md);
        padding: 0;
        overflow: hidden !important;
        overflow-y: hidden !important;
        overflow-x: hidden !important;
    }
    
    .contact-info {
        width: 100%;
        max-width: 100%;
        padding: var(--spacing-md) !important;
        box-sizing: border-box;
        margin: 0;
        border-radius: 20px;
        overflow: hidden !important;
        overflow-y: hidden !important;
        overflow-x: hidden !important;
    }
    
    .contact-info {
        padding: var(--spacing-md) !important;
        border-radius: 20px;
    }
    
    .contact-info h3 {
        font-size: clamp(0.8rem, 3vw, 1rem) !important;
        margin-bottom: var(--spacing-sm) !important;
        line-height: 1.25 !important;
        padding: 0.4rem 0.6rem !important;
        letter-spacing: 1px !important;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal !important;
    }
    
    .contact-info::after {
        border-radius: 20px;
    }
    
    .contact-form {
        padding: var(--spacing-md) !important;
        border-radius: 20px;
    }
    
    .contact-form::after {
        border-radius: 20px;
    }
    
    .contact-note {
        font-size: clamp(0.9rem, 2.5vw, 1rem) !important;
        line-height: 1.7 !important;
        margin-bottom: var(--spacing-sm) !important;
    }
    
    .contact-item {
        font-size: clamp(0.8rem, 2vw, 0.9rem) !important;
        flex-wrap: wrap;
        word-break: break-word;
        overflow-wrap: break-word;
        gap: 0.5rem;
        min-width: 0;
    }
    
    .contact-item a {
        font-size: clamp(0.75rem, 1.8vw, 0.85rem) !important;
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .contact-item span:not(.contact-icon) {
        font-size: clamp(0.75rem, 1.8vw, 0.85rem) !important;
    }
    
    .contact-icon {
        font-size: 1.4rem !important;
        flex-shrink: 0;
    }
    
    .contact-form {
        width: 100%;
        max-width: 100%;
        padding: var(--spacing-md) !important;
        box-sizing: border-box;
        margin: 0;
        border-radius: 20px;
    }
    
    .form-group {
        margin-bottom: var(--spacing-sm);
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0.9rem 1rem;
        font-size: clamp(0.95rem, 2.5vw, 1rem);
    }
    
    .form-actions {
        width: 100%;
        box-sizing: border-box;
    }
    
    .whatsapp-link {
        font-size: clamp(0.9rem, 2.5vw, 1rem) !important;
    }
    
    .section-title-main {
        font-size: clamp(1.5rem, 5vw, 2.5rem) !important;
    }
    
    .neon-accent {
        font-size: clamp(0.85rem, 2vw, 1.1rem) !important;
    }
    
    .feature-title {
        font-size: clamp(1.1rem, 3.5vw, 1.5rem) !important;
    }
    
    .feature-text {
        font-size: clamp(0.85rem, 2.5vw, 1rem) !important;
        line-height: 1.7 !important;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .featured-products-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        gap: var(--spacing-md);
    }
    
    .featured-product-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden !important;
        overflow-y: hidden !important;
        overflow-x: hidden !important;
    }
    
    .featured-product-title {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
    }
    
    .featured-price {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
    }
    
    .product-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden !important;
        overflow-y: hidden !important;
        overflow-x: hidden !important;
    }
    
    .product-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }
    
    .product-subtitle {
        font-size: clamp(0.85rem, 3vw, 1rem);
        line-height: 1.6;
    }
    
    .product-info {
        padding: var(--spacing-sm);
    }
    
    .product-description {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        line-height: 1.6;
    }
    
    .product-gallery-thumbnails {
        gap: var(--spacing-xs);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden !important;
        overflow-y: hidden !important;
        overflow-x: hidden !important;
    }
    
    .shipping-info-section {
        padding: var(--spacing-lg) 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .shipping-lights {
        height: 200px;
        bottom: -60px;
    }
    
    .shipping-lights .spotlight {
        width: 250px;
        height: 250px;
    }
    
    .shipping-info-section .container {
        padding: 0 var(--spacing-sm) !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .shipping-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        gap: var(--spacing-md);
        margin-top: var(--spacing-md);
    }
    
    .shipping-item {
        width: 100%;
        max-width: 100%;
        padding: var(--spacing-md) !important;
        box-sizing: border-box;
    }
    
    .shipping-item h4 {
        font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
    }
    
    .shipping-item p {
        color: var(--swiss-red) !important;
        font-size: clamp(0.65rem, 1.6vw, 0.8rem) !important;
        line-height: 1.7 !important;
        letter-spacing: 0.5px !important;
        text-shadow: 0 1px 2px rgba(255, 0, 0, 0.1) !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button svg {
        width: 24px;
        height: 24px;
    }
    
    section {
        padding: var(--spacing-lg) 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 0.75rem !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .topbar {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .webshop-hero {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .products-section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    .topbar-container {
        padding: 0 1rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    .logo-container {
        flex-shrink: 0 !important;
        z-index: 1 !important;
    }
    
    .mobile-menu-toggle {
        right: 1rem !important;
        flex-shrink: 0 !important;
    }
    
    .header-image-section {
        height: calc(100vh + 100px);
        min-height: calc(100vh + 100px);
        margin-top: -100px;
        padding-top: 100px;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        margin-bottom: -50px;
    }
    
    .logo-section {
        padding: var(--spacing-sm) 0 var(--spacing-xs) 0;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .large-logo {
        padding: 0 var(--spacing-xs);
        width: 100%;
        max-width: 90%;
        box-sizing: border-box;
    }
    
    .product-card {
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .showcase-images {
        gap: var(--spacing-sm);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .image-card {
        border-width: 1px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .showcase-text {
        padding: var(--spacing-sm) var(--spacing-sm) !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-width: 0;
    }
    
    .showcase-text h3 {
        font-size: clamp(1rem, 3vw, 1.4rem) !important;
    }
    
    .showcase-text p {
        font-size: clamp(0.75rem, 1.8vw, 0.9rem) !important;
        line-height: 1.6 !important;
    }
    
    .container {
        padding: 0 var(--spacing-xs);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .featured-products-grid {
        gap: var(--spacing-sm);
    }
    
    .featured-product-info {
        padding: var(--spacing-sm);
    }
    
    .contact-info h3 {
        font-size: clamp(0.75rem, 2.5vw, 0.95rem) !important;
        letter-spacing: 0.8px !important;
        padding: 0.35rem 0.5rem !important;
        line-height: 1.2 !important;
    }
    
    .contact-item {
        font-size: clamp(0.7rem, 1.8vw, 0.85rem) !important;
    }
    
    .contact-item a {
        font-size: clamp(0.65rem, 1.6vw, 0.8rem) !important;
        word-break: break-all !important;
    }
    
    .contact-item span:not(.contact-icon) {
        font-size: clamp(0.65rem, 1.6vw, 0.8rem) !important;
    }
    
    .contact-icon {
        font-size: 1.2rem !important;
    }
}

/* ============================================
   SEO & PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Lazy loading for images */
img {
    loading: lazy;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}

/* ============================================
   ADDITIONAL ANIMATIONS
   ============================================ */

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleAnimation 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Print styles */
@media print {
    .topbar,
    .whatsapp-button {
        display: none;
    }
}

/* ============================================
   NEON NOTIFICATION POPUP
   ============================================ */
.neon-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 10000;
    min-width: 320px;
    max-width: 450px;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(10, 10, 10, 0.95), rgba(5, 5, 5, 0.95));
    border: 2px solid var(--swiss-red);
    border-radius: 12px;
    box-shadow: 
        0 0 25px rgba(255, 0, 0, 0.5),
        0 0 50px rgba(255, 0, 0, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.9),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
    animation: neonNotificationEnter 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.neon-notification.show {
    opacity: 1;
    pointer-events: all;
}

.neon-notification.success {
    border-color: #00ff88;
    box-shadow: 
        0 0 25px rgba(0, 255, 136, 0.5),
        0 0 50px rgba(0, 255, 136, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.9),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.neon-notification.success::before {
    background: linear-gradient(45deg, #00ff88, #00cc66, #00ff88, #00ffaa);
}

.neon-notification.error {
    border-color: var(--swiss-red);
    box-shadow: 
        0 0 25px rgba(255, 0, 0, 0.5),
        0 0 50px rgba(255, 0, 0, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.9),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.neon-notification::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--swiss-red), #cc0000, var(--swiss-red), var(--swiss-red-bright));
    background-size: 300% 300%;
    border-radius: 12px;
    z-index: -1;
    opacity: 0.6;
    animation: neonBorderGlow 3s linear infinite;
    filter: blur(1.5px);
}

.neon-notification::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.08) 0%, transparent 60%);
    border-radius: 12px;
    z-index: -1;
    animation: neonPulse 2s ease-in-out infinite;
}

.neon-notification.success::after {
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, transparent 60%);
}

.neon-notification-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    display: block;
    animation: neonIconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px currentColor);
}

.neon-notification.success .neon-notification-icon {
    color: #00ff88;
    text-shadow: 
        0 0 15px #00ff88,
        0 0 30px #00ff88,
        0 0 45px #00ff88,
        2px 2px 4px rgba(0, 0, 0, 0.9);
}

.neon-notification.error .neon-notification-icon {
    color: #ff4444;
    text-shadow: 
        0 0 12px rgba(255, 68, 68, 1),
        0 0 24px rgba(255, 68, 68, 0.7),
        2px 2px 6px rgba(0, 0, 0, 1),
        0 1px 2px rgba(0, 0, 0, 0.9);
}

.neon-notification-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.6),
        0 0 15px rgba(255, 255, 255, 0.4),
        2px 2px 6px rgba(0, 0, 0, 1),
        0 1px 2px rgba(0, 0, 0, 0.9);
}

.neon-notification.success .neon-notification-title {
    color: #00ff88;
    text-shadow: 
        0 0 12px rgba(0, 255, 136, 1),
        0 0 24px rgba(0, 255, 136, 0.7),
        2px 2px 6px rgba(0, 0, 0, 1),
        0 1px 2px rgba(0, 0, 0, 0.9);
}

.neon-notification.error .neon-notification-title {
    color: #ff4444;
    text-shadow: 
        0 0 15px rgba(255, 68, 68, 1),
        0 0 30px rgba(255, 68, 68, 0.8),
        0 0 45px rgba(255, 68, 68, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.9);
}

.neon-notification-message {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ffffff;
    margin-top: 0.5rem;
    text-shadow: 
        0 0 4px rgba(255, 255, 255, 0.4),
        1px 1px 4px rgba(0, 0, 0, 1),
        0 1px 2px rgba(0, 0, 0, 0.9);
    font-weight: 400;
}

.neon-notification-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    line-height: 1;
}

.neon-notification-close:hover {
    background: rgba(255, 0, 0, 0.4);
    border-color: var(--swiss-red);
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
    transform: rotate(90deg);
}

@keyframes neonNotificationEnter {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.7);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes neonNotificationExit {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotate(10deg);
    }
}

@keyframes neonBorderGlow {
    0% { 
        background-position: 0% 50%; 
        opacity: 0.8;
    }
    50% { 
        background-position: 100% 50%; 
        opacity: 1;
    }
    100% { 
        background-position: 0% 50%; 
        opacity: 0.8;
    }
}

@keyframes neonPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes neonIconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px currentColor);
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 22px currentColor);
    }
}

/* Mobile responsive for notifications */
@media (max-width: 768px) {
    .neon-notification {
        min-width: 85%;
        max-width: 85%;
        padding: 1.25rem 1.5rem;
        top: 50%;
    }
    
    .neon-notification-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .neon-notification-title {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }
    
    .neon-notification-message {
        font-size: 0.9rem;
    }
    
    .neon-notification-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 26px;
        height: 26px;
        font-size: 1rem;
    }
}

/* ============================================
   WEBSHOP CART POPUP
   ============================================ */
.webshop-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 10001;
    background: rgba(10, 10, 10, 0.98);
    border: 2px solid var(--swiss-red);
    border-radius: 15px;
    padding: 2rem 2.5rem;
    min-width: 400px;
    max-width: 500px;
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.6),
        0 0 60px rgba(255, 0, 0, 0.4),
        0 0 90px rgba(255, 0, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

.webshop-popup::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--swiss-red), var(--swiss-red-bright), var(--swiss-red), var(--swiss-red-dark));
    border-radius: 15px;
    z-index: -1;
    opacity: 0.8;
    animation: neonBorderPulse 3s ease-in-out infinite;
}

.webshop-popup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
    border-radius: 15px;
    z-index: -1;
}

.webshop-popup.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.webshop-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.webshop-popup-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.webshop-popup-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
    color: var(--swiss-red);
    animation: neonIconPulse 2s ease-in-out infinite;
    text-shadow: 
        0 0 20px rgba(255, 0, 0, 1),
        0 0 40px rgba(255, 0, 0, 0.8),
        0 0 60px rgba(255, 0, 0, 0.6),
        0 0 80px rgba(255, 0, 0, 0.4);
}

.webshop-popup-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--swiss-white);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.9);
}

.webshop-popup-message {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.webshop-popup-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.webshop-popup-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.webshop-popup-contact-item:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: var(--swiss-red);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

.webshop-popup-contact-item a {
    color: var(--swiss-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.webshop-popup-contact-item a:hover {
    color: var(--swiss-white);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5);
}

.webshop-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    color: var(--swiss-white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    line-height: 1;
}

.webshop-popup-close:hover {
    background: rgba(255, 0, 0, 0.4);
    border-color: var(--swiss-red);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    transform: rotate(90deg) scale(1.1);
}

@keyframes neonBorderPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .webshop-popup {
        min-width: 85%;
        max-width: 90%;
        padding: 1.5rem 1.75rem;
    }
    
    .webshop-popup-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .webshop-popup-title {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .webshop-popup-message {
        font-size: 0.9rem;
    }
    
    .webshop-popup-contact-item {
        padding: 0.6rem 0.8rem;
    }
    
    .webshop-popup-contact-item a {
        font-size: 0.9rem;
    }
    }
}

/* ============================================
   ARTICLE STYLING
   ============================================ */

/* Ensure article headings are consistently styled */
.article-body h2,
.article-content h2,
article h2 {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: var(--swiss-red) !important;
    margin-top: var(--spacing-lg) !important;
    margin-bottom: var(--spacing-md) !important;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5) !important;
    line-height: 1.3 !important;
}

.article-body h3,
.article-content h3,
article h3 {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: var(--swiss-white) !important;
    margin-top: var(--spacing-md) !important;
    margin-bottom: var(--spacing-sm) !important;
    line-height: 1.4 !important;
}

/* Article images - ensure proper sizing */
.article-image {
    margin: var(--spacing-lg) 0 !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    border: 2px solid rgba(255, 0, 0, 0.3) !important;
}

.article-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
}

/* Article card images on news page */
.article-image-container {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    overflow: hidden !important;
    background: var(--bg-darker) !important;
}

.article-image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform var(--transition-slow) !important;
    display: block !important;
}

.article-card:hover .article-image-container img {
    transform: scale(1.1) !important;
}

/* Responsive article headings */
@media (max-width: 768px) {
    .article-body h2,
    .article-content h2,
    article h2 {
        font-size: 1.8rem !important;
    }
    
    .article-body h3,
    .article-content h3,
    article h3 {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 480px) {
    .article-body h2,
    .article-content h2,
    article h2 {
        font-size: 1.6rem !important;
    }
    
    .article-body h3,
    .article-content h3,
    article h3 {
        font-size: 1.3rem !important;
    }
}

/* ============================================
   CART MODAL - RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .cart-modal-content {
        padding: 1.5rem;
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
        border-width: 2px;
    }

    .cart-modal-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .cart-modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .cart-item {
        padding: 1rem;
        gap: 1rem;
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
        border-radius: 10px;
    }

    .cart-item-name {
        font-size: 1rem;
    }

    .cart-item-number {
        font-size: 0.75rem;
    }

    .cart-item-price {
        font-size: 1rem;
    }

    .cart-item-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .quantity-control {
        padding: 0.4rem;
    }

    .quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .quantity-value {
        min-width: 35px;
        font-size: 0.9rem;
    }

    .remove-item-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }

    .cart-summary {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .cart-summary-row {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .cart-summary-row.total {
        font-size: 1.1rem;
        padding-top: 0.75rem;
        margin-top: 0.75rem;
    }

    .cart-summary-row.total .amount {
        font-size: 1.3rem;
    }

    .cart-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cart-btn {
        min-width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cart-modal-content {
        padding: 1rem;
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        border-width: 0;
        border-top: 3px solid var(--swiss-red);
    }

    .cart-modal-header {
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }

    .cart-modal-title {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }

    .cart-modal-close {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .cart-item {
        padding: 0.75rem;
        gap: 0.75rem;
        border-radius: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
        border-radius: 8px;
    }

    .cart-item-details {
        width: 100%;
    }

    .cart-item-name {
        font-size: 0.9rem;
    }

    .cart-item-number {
        font-size: 0.7rem;
    }

    .cart-item-price {
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }

    .cart-item-controls {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 0.75rem;
    }

    .quantity-control {
        padding: 0.3rem;
    }

    .quantity-btn {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
    }

    .quantity-value {
        min-width: 30px;
        font-size: 0.85rem;
    }

    .remove-item-btn {
        padding: 0.35rem 0.65rem;
        font-size: 0.8rem;
    }

    .cart-summary {
        padding: 1rem;
        border-radius: 10px;
        margin-bottom: 1rem;
    }

    .cart-summary-row {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .cart-summary-row.total {
        font-size: 1rem;
        padding-top: 0.5rem;
        margin-top: 0.5rem;
    }

    .cart-summary-row.total .amount {
        font-size: 1.2rem;
    }

    .cart-actions {
        gap: 0.5rem;
    }

    .cart-btn {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .cart-empty {
        padding: 2rem 1rem;
    }

    .cart-empty-icon {
        font-size: 3rem;
    }

    .cart-empty-text {
        font-size: 1rem;
    }
}

