:root {
    /* Responsive font sizes */
    --font-size-xs: clamp(0.75rem, 2vw, 0.875rem);
    --font-size-sm: clamp(0.875rem, 2.5vw, 1rem);
    --font-size-base: clamp(1rem, 3vw, 1.125rem);
    --font-size-lg: clamp(1.125rem, 3.5vw, 1.25rem);
    --font-size-xl: clamp(1.25rem, 4vw, 1.5rem);
    --font-size-2xl: clamp(1.5rem, 5vw, 2rem);
    --font-size-3xl: clamp(2rem, 6vw, 3rem);
    --font-size-4xl: clamp(2.5rem, 7vw, 4rem);
    
    /* Responsive spacing */
    --spacing-xs: clamp(0.25rem, 1vw, 0.5rem);
    --spacing-sm: clamp(0.5rem, 2vw, 0.75rem);
    --spacing-md: clamp(0.75rem, 3vw, 1rem);
    --spacing-lg: clamp(1rem, 4vw, 1.5rem);
    --spacing-xl: clamp(1.5rem, 5vw, 2rem);
    --spacing-2xl: clamp(2rem, 6vw, 3rem);
    
    /* Viewport units for accurate mobile sizing */
    --vh: 1vh;
    --vw: 1vw;
    
    /* Container widths */
    --container-sm: 480px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
}

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

/* Hide scrollbar on all devices */
html, body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

html::-webkit-scrollbar, 
body::-webkit-scrollbar { 
    display: none; /* WebKit (Chrome, Safari, Edge) */
}

/* Additional mobile scrollbar hiding and responsive base styles */
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Better box-sizing for all elements */
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    display: none;
}

/* Enhanced responsive image handling */
img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Prevent layout shift during image loading */
    aspect-ratio: attr(width) / attr(height);
}

/* Prevent images from being draggable on touch devices */
@media (pointer: coarse) {
    img {
        -webkit-user-drag: none;
        -webkit-touch-callout: none;
        user-select: none;
    }
}

/* Ensure containers don't overflow and use fluid sizing */
.container, .hero-container, .products-grid, .features-grid, .reviews-grid {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced touch device styles */
.touch-device {
    /* Prevent overscroll bounce on iOS */
    overscroll-behavior: contain;
}

.touch-device button,
.touch-device .buy-button,
.touch-device .more-info-button,
.touch-device .cta-button {
    /* Prevent double-tap zoom */
    touch-action: manipulation;
    /* Smoother animations on touch */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Enhanced responsive display classes with better breakpoints */
.mobile-only {
    display: flex !important;
}

.tablet-only {
    display: none !important;
}

.desktop-only {
    display: none !important;
}

/* Tablet breakpoint */
@media (min-width: 481px) and (max-width: 1024px) {
    .mobile-only {
        display: none !important;
    }
    
    .tablet-only {
        display: flex !important;
    }
    
    .desktop-only {
        display: none !important;
    }
}

/* Desktop breakpoint */
@media (min-width: 1025px) {
    .mobile-only {
        display: none !important;
    }
    
    .tablet-only {
        display: none !important;
    }
    
    .desktop-only {
        display: flex !important;
    }
}

/* Legacy breakpoint for compatibility */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: flex !important;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #0d0d0f;
    min-height: 100vh;
    color: #f2f2f7;
    overflow-x: hidden;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    margin: 0;
    padding: 0;
    /* Enhanced mobile support */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /* Improved touch scrolling */
    -webkit-overflow-scrolling: touch;
    /* Prevent horizontal overflow on all devices */
    max-width: 100vw;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Global Twinkling Stars Container */
.global-twinkling-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.global-twinkling-star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 12px #ffffff, 0 0 24px rgba(255, 255, 255, 0.8), 0 0 36px rgba(255, 255, 255, 0.4);
    animation: globalTwinkle 3s ease-in-out infinite;
}

.global-twinkling-star.size-1 {
    width: 2px;
    height: 2px;
}

.global-twinkling-star.size-2 {
    width: 3px;
    height: 3px;
}

.global-twinkling-star.size-3 {
    width: 4px;
    height: 4px;
}

.global-twinkling-star.blue {
    background: rgba(173, 216, 230, 1);
    box-shadow: 0 0 16px rgba(173, 216, 230, 1), 0 0 32px rgba(173, 216, 230, 0.8), 0 0 48px rgba(173, 216, 230, 0.4);
}

.global-twinkling-star.sky-blue {
    background: rgba(135, 206, 250, 1);
    box-shadow: 0 0 16px rgba(135, 206, 250, 1), 0 0 32px rgba(135, 206, 250, 0.8), 0 0 48px rgba(135, 206, 250, 0.4);
}

.global-twinkling-star.delay-1 { animation-delay: 0.5s; }
.global-twinkling-star.delay-2 { animation-delay: 1s; }
.global-twinkling-star.delay-3 { animation-delay: 1.5s; }
.global-twinkling-star.delay-4 { animation-delay: 2s; }
.global-twinkling-star.delay-5 { animation-delay: 2.5s; }
.global-twinkling-star.delay-6 { animation-delay: 3s; }
.global-twinkling-star.delay-7 { animation-delay: 3.5s; }
.global-twinkling-star.delay-8 { animation-delay: 4s; }

@keyframes globalTwinkle {
    0%, 100% {
        opacity: 0.1;
        transform: scale(0.7);
    }
    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}

/* Global Starfield Background - Layer 3 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(3px 3px at 3% 8%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 13% 33%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(6px 6px at 23% 58%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 33% 83%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(4px 4px at 43% 18%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 53% 43%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 63% 68%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(3px 3px at 73% 93%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(5px 5px at 83% 28%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 93% 53%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(2px 2px at 3% 78%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(4px 4px at 13% 3%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 23% 28%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(3px 3px at 33% 53%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 43% 78%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(6px 6px at 53% 3%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(1px 1px at 63% 28%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(4px 4px at 73% 53%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(2px 2px at 83% 78%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(5px 5px at 93% 3%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 8% 48%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(3px 3px at 18% 73%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(2px 2px at 28% 98%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(4px 4px at 38% 23%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 48% 48%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(6px 6px at 58% 73%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 68% 98%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(3px 3px at 78% 23%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(1px 1px at 88% 48%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(4px 4px at 98% 73%, rgba(173, 216, 230, 1), transparent);
    pointer-events: none;
    z-index: -1;
}

/* Global Starfield Background - Layer 4 */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(4px 4px at 6% 16%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(7px 7px at 16% 41%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 26% 66%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 36% 91%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(5px 5px at 46% 26%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(3px 3px at 56% 51%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 66% 76%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(6px 6px at 76% 1%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 86% 26%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(4px 4px at 96% 51%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(1px 1px at 6% 76%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(5px 5px at 16% 1%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(3px 3px at 26% 26%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(7px 7px at 36% 51%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 46% 76%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(2px 2px at 56% 1%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(4px 4px at 66% 26%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(6px 6px at 76% 51%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(3px 3px at 86% 76%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(1px 1px at 96% 1%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(5px 5px at 11% 36%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(2px 2px at 21% 61%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(4px 4px at 31% 86%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 41% 11%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(3px 3px at 51% 36%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(7px 7px at 61% 61%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 71% 86%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(5px 5px at 81% 11%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(1px 1px at 91% 36%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(4px 4px at 1% 61%, rgba(173, 216, 230, 1), transparent);
    pointer-events: none;
    z-index: -1;
}

/* Global Shooting Stars */
.global-shooting-star {
    position: fixed;
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, #ffffff 0%, rgba(255,255,255,0.9) 40%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    box-shadow: 0 0 4px #ffffff, 0 0 8px rgba(255,255,255,0.6);
}

.global-shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0px;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,1) 0%, 
        rgba(173,216,230,0.8) 50%, 
        transparent 100%);
    transform-origin: 0 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease-out;
}

.global-shooting-star1 {
    top: 15%;
    left: 25%;
    animation: globalShootingParticle1 8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 1s;
}

.global-shooting-star2 {
    top: 60%;
    left: 80%;
    animation: globalShootingParticle2 7s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 15s;
}

.global-shooting-star3 {
    top: 35%;
    left: 10%;
    animation: globalShootingParticle3 9s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 30s;
}

.global-shooting-star4 {
    top: 75%;
    left: 45%;
    animation: globalShootingParticle4 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 45s;
}

.global-shooting-star5 {
    top: 20%;
    left: 70%;
    animation: globalShootingParticle5 8.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 60s;
}

/* Global Shooting Star Animations */
@keyframes globalShootingParticle1 {
    0% {
        opacity: 0;
        transform: scale(0.3) translate(0, 0);
    }
    10% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    10.1% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    40% {
        opacity: 1;
        transform: scale(1) translate(300px, 200px);
    }
    40.1% {
        opacity: 0;
        transform: scale(0.3) translate(300px, 200px);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) translate(0, 0);
    }
}

@keyframes globalShootingParticle2 {
    0% {
        opacity: 0;
        transform: scale(0.3) translate(0, 0);
    }
    15% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    15.1% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    45% {
        opacity: 1;
        transform: scale(1) translate(-400px, 300px);
    }
    45.1% {
        opacity: 0;
        transform: scale(0.3) translate(-400px, 300px);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) translate(0, 0);
    }
}

@keyframes globalShootingParticle3 {
    0% {
        opacity: 0;
        transform: scale(0.3) translate(0, 0);
    }
    8% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    8.1% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    38% {
        opacity: 1;
        transform: scale(1) translate(500px, -100px);
    }
    38.1% {
        opacity: 0;
        transform: scale(0.3) translate(500px, -100px);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) translate(0, 0);
    }
}

@keyframes globalShootingParticle4 {
    0% {
        opacity: 0;
        transform: scale(0.3) translate(0, 0);
    }
    12% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    12.1% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    42% {
        opacity: 1;
        transform: scale(1) translate(-200px, -250px);
    }
    42.1% {
        opacity: 0;
        transform: scale(0.3) translate(-200px, -250px);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) translate(0, 0);
    }
}

@keyframes globalShootingParticle5 {
    0% {
        opacity: 0;
        transform: scale(0.3) translate(0, 0);
    }
    10% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    10.1% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    40% {
        opacity: 1;
        transform: scale(1) translate(150px, 400px);
    }
    40.1% {
        opacity: 0;
        transform: scale(0.3) translate(150px, 400px);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) translate(0, 0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Apple Navigation */
.apple-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(28, 28, 30, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 9999;
    border-bottom: 0.5px solid rgba(84, 84, 88, 0.29);
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Navbar Twinkling Stars */
.apple-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(1px 1px at 8% 30%, #ffffff, transparent),
        radial-gradient(1px 1px at 25% 70%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 45% 20%, #ffffff, transparent),
        radial-gradient(1px 1px at 65% 80%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 85% 40%, #ffffff, transparent),
        radial-gradient(1px 1px at 15% 60%, rgba(173, 216, 230, 0.6), transparent),
        radial-gradient(1px 1px at 35% 90%, rgba(135, 206, 250, 0.7), transparent),
        radial-gradient(1px 1px at 55% 10%, rgba(173, 216, 230, 0.8), transparent),
        radial-gradient(1px 1px at 75% 50%, rgba(135, 206, 250, 0.6), transparent),
        radial-gradient(1px 1px at 95% 25%, rgba(173, 216, 230, 0.9), transparent),
        radial-gradient(1px 1px at 5% 85%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 78% 15%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(1px 1px at 38% 45%, rgba(173, 216, 230, 0.7), transparent),
        radial-gradient(1px 1px at 58% 75%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 88% 65%, rgba(135, 206, 250, 0.9), transparent);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation: navStars1 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.apple-navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(1px 1px at 12% 15%, rgba(173, 216, 230, 0.8), transparent),
        radial-gradient(1px 1px at 32% 85%, rgba(135, 206, 250, 0.6), transparent),
        radial-gradient(1px 1px at 52% 35%, rgba(173, 216, 230, 0.9), transparent),
        radial-gradient(1px 1px at 72% 65%, rgba(135, 206, 250, 0.7), transparent),
        radial-gradient(1px 1px at 92% 55%, rgba(173, 216, 230, 0.5), transparent),
        radial-gradient(1px 1px at 22% 25%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 42% 95%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(1px 1px at 62% 5%, rgba(173, 216, 230, 0.6), transparent),
        radial-gradient(1px 1px at 82% 75%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 2% 45%, rgba(135, 206, 250, 0.7), transparent);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation: navStars2 5.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

@keyframes navStars1 {
    0% { opacity: 0.3; }
    25% { opacity: 0.1; }
    50% { opacity: 0.6; }
    75% { opacity: 0.2; }
    100% { opacity: 0.3; }
}

@keyframes navStars2 {
    0% { opacity: 0.4; }
    20% { opacity: 0.7; }
    40% { opacity: 0.2; }
    60% { opacity: 0.8; }
    80% { opacity: 0.3; }
    100% { opacity: 0.4; }
}

.apple-nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.apple-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 44px;
    position: relative;
    z-index: 2;
    gap: 20px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.probuds-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    min-width: 44px;
    z-index: 10;
}

.probuds-logo:hover {
    opacity: 0.8;
}

.probuds-text {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.022em;
    line-height: 1.0476;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga" 1, "kern" 1;
    transition: all 0.3s ease;
    text-shadow: 
        0 2px 8px rgba(173, 216, 230, 0.4),
        0 4px 16px rgba(135, 206, 250, 0.3),
        0 6px 24px rgba(100, 149, 237, 0.2);
}

.probuds-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #007AFF;
    transition: width 0.3s ease;
}

.probuds-logo:hover .probuds-text::after {
    width: 100%;
}


/* About Us Title - Matching ProBuds styling */
.about-us-title {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
    position: relative;
}

.about-us-title:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.about-us-title:active {
    transform: translateY(0);
    opacity: 0.9;
}

.about-us-text {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.022em;
    line-height: 1.0476;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga" 1, "kern" 1;
    transition: all 0.3s ease;
    position: relative;
}

.about-us-text::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -10px;
    right: -10px;
    bottom: -6px;
    background: radial-gradient(ellipse at center, rgba(173, 216, 230, 0.3) 0%, rgba(135, 206, 250, 0.2) 30%, transparent 70%);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.8;
    filter: blur(6px);
}

.about-us-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #007AFF;
    transition: width 0.3s ease;
}

.about-us-title:hover .about-us-text::after {
    width: 100%;
}

/* Default desktop display for responsive text */
.desktop-text {
    display: inline;
}

.mobile-text {
    display: none;
}

/* Navigation Menu */
.apple-nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hide menu when on hero section */
.navbar-hero-mode .apple-nav-menu {
    opacity: 0;
    visibility: hidden;
}

.nav-link {
    color: #f2f2f7;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.022em;
    line-height: 1.47059;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-link:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.15);
}

/* Special styling for About Us link - Higher specificity */
.apple-nav-menu .nav-link.nav-link-about {
    font-weight: 600 !important;
    color: #87ceeb !important;
    position: relative;
    background: linear-gradient(135deg, rgba(135, 206, 250, 0.15) 0%, rgba(173, 216, 230, 0.15) 100%) !important;
    border: 1px solid rgba(135, 206, 250, 0.4) !important;
    box-shadow: 0 2px 12px rgba(135, 206, 250, 0.3) !important;
    text-shadow: 0 0 8px rgba(135, 206, 250, 0.5) !important;
}

.apple-nav-menu .nav-link.nav-link-about::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #87ceeb 0%, #add8e6 100%);
    border-radius: 1px;
}

.apple-nav-menu .nav-link.nav-link-about:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(135, 206, 250, 0.25) 0%, rgba(173, 216, 230, 0.25) 100%) !important;
    border-color: rgba(135, 206, 250, 0.6) !important;
    box-shadow: 0 4px 20px rgba(135, 206, 250, 0.4) !important;
    transform: translateY(-2px) !important;
    text-shadow: 0 0 12px rgba(135, 206, 250, 0.8) !important;
}

/* Mobile Navigation - Hide menu on small screens */
@media (max-width: 768px) {
    .apple-nav-menu {
        display: none;
    }
    
    .apple-navbar {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .apple-nav-content {
        justify-content: space-between;
    }
    
    .mobile-menu-button {
        padding: 8px;
        border-radius: 8px;
        transition: background-color 0.2s ease;
    }
    
    .mobile-menu-button:active {
        background-color: rgba(255, 255, 255, 0.1);
        transform: scale(0.95);
    }
    
    /* Better mobile hero image handling */
    .hero-image.mobile-only {
        justify-content: center;
        align-items: center;
        margin: 20px 0;
    }
    
    .hero-image.mobile-only .airpods-showcase {
        max-width: 200px;
        width: 100%;
    }
    
    .hero-image.mobile-only .hero-airpods-image {
        width: 100%;
        height: auto;
        max-width: 200px;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 122, 255, 0.3);
    }
}

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

.apple-nav-action {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 44px;
    cursor: pointer;
}

.apple-nav-action:hover {
    opacity: 1;
    transform: scale(1.1);
}

.search-button,
.mobile-menu-button {
    background: none;
    border: none;
    padding: 0;
    width: 24px;
    height: 24px;
}

.search-button svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    fill: none;
    filter: drop-shadow(0 1px 4px rgba(173, 216, 230, 0.4)) 
            drop-shadow(0 2px 8px rgba(135, 206, 250, 0.3))
            drop-shadow(0 3px 12px rgba(100, 149, 237, 0.2));
}

.mobile-menu-button svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    fill: none;
    filter: drop-shadow(0 1px 4px rgba(173, 216, 230, 0.4)) 
            drop-shadow(0 2px 8px rgba(135, 206, 250, 0.3))
            drop-shadow(0 3px 12px rgba(100, 149, 237, 0.2));
}

.mobile-menu-button {
    display: none;
}

/* ==========================================
   MODERN SHOPPING BAG DESIGN
   ========================================== */

.shopping-bag-container {
    position: relative;
}

.shopping-bag-button {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0;
    cursor: pointer;
    transition: all 0.15s ease;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.92);
    min-width: 20px;
    min-height: 20px;
}

.shopping-bag-button:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.shopping-bag-button:active {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(0);
}

.bag-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bag-icon {
    width: 20px;
    height: 20px;
    transition: all 0.2s ease;
    stroke-width: 1;
    color: rgba(255, 255, 255, 0.95);
}

.bag-label {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: none;
    opacity: 0.92;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

.shopping-bag-button:hover .bag-label {
    opacity: 1;
}

.shopping-bag-button:hover .bag-icon {
    transform: scale(1.1);
}

/* Cart Badge Redesign */
.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #ff3b30 0%, #d70015 100%);
    color: white;
    border-radius: 10px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 2px 8px rgba(255, 59, 48, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
}

.cart-badge.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.cart-badge.animate {
    animation: badgeBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.badge-count {
    padding: 0 4px;
    min-width: 12px;
    text-align: center;
}

/* Enhanced Animations */
@keyframes badgeBounce {
    0% { 
        transform: scale(0.8);
        opacity: 0;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Shopping Bag States */
.shopping-bag-button.has-items {
    animation: bagPulse 3s infinite;
}

.shopping-bag-button.cart-item-added {
    animation: bagItemAdded 0.8s ease;
}

.shopping-bag-button.active {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 1);
}

@keyframes bagItemAdded {
    0% { 
        transform: scale(1) translateY(0);
    }
    25% { 
        transform: scale(1.05) translateY(-2px);
        background: rgba(52, 199, 89, 0.15);
    }
    50% { 
        transform: scale(1.02) translateY(-1px);
        background: rgba(52, 199, 89, 0.1);
    }
    100% { 
        transform: scale(1) translateY(0);
        background: rgba(255, 255, 255, 0.08);
    }
}

@keyframes bagPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.92;
    }
    50% { 
        transform: scale(1.02);
        opacity: 1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .shopping-bag-button {
        min-width: 24px;
        min-height: 24px;
        padding: 0;
    }
    
    .bag-icon {
        width: 24px;
        height: 24px;
    }
    
    .bag-label {
        font-size: 9px;
    }
    
    .cart-badge {
        top: -2px;
        right: -2px;
        min-width: 18px;
        height: 18px;
        font-size: 10px;
        border-width: 1px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .shopping-bag-button {
        color: rgba(255, 255, 255, 0.95);
    }
    
    .shopping-bag-button:hover {
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 1);
    }
}


/* ==========================================
   APPLE-INSPIRED SHOPPING CART DESIGN
   ========================================== */

/* Cart Popup Container */
.cart-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cart-popup.show {
    opacity: 1;
    visibility: visible;
}

/* Background Backdrop */
.cart-popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
}

/* Main Cart Content */
.cart-popup-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 90vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-left: 0.5px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        -10px 0 40px rgba(0, 0, 0, 0.1),
        -2px 0 20px rgba(0, 0, 0, 0.05);
}

.cart-popup.show .cart-popup-content {
    transform: translateX(0);
}

/* Cart Header */
.cart-header {
    padding: 0;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
    background: rgba(248, 248, 248, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.cart-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 22px 18px;
}

.cart-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-icon-wrapper {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 2px 8px rgba(0, 122, 255, 0.25),
        0 1px 3px rgba(0, 122, 255, 0.15);
}

.cart-header-icon {
    color: white;
    width: 20px;
    height: 20px;
}

.cart-title-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-title {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
    line-height: 1.16667;
    letter-spacing: 0.009em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

.cart-item-count {
    font-size: 13px;
    font-weight: 400;
    color: #86868b;
    line-height: 1.38462;
    letter-spacing: -0.08em;
}

.cart-close {
    width: 36px;
    height: 36px;
    background: rgba(120, 120, 128, 0.16);
    border: none;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #86868b;
}

.cart-close:hover {
    background: rgba(120, 120, 128, 0.24);
    color: #1d1d1f;
    transform: scale(1.05);
}

/* Cart Content Area */
.cart-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Cart Items Section */
.cart-items-section {
    flex: 1;
    overflow-y: auto;
    padding: 0 22px;
}

.cart-items {
    padding: 16px 0;
}

/* Individual Cart Item */
.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item:hover {
    background: rgba(0, 122, 255, 0.04);
    margin: 0 -22px;
    padding: 20px 22px;
    border-radius: 12px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: #f5f5f7;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.06);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-name {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.23536;
    letter-spacing: -0.022em;
    margin: 0;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 400;
    color: #86868b;
    line-height: 1.33337;
    letter-spacing: -0.024em;
}

.cart-item-quantity {
    font-size: 13px;
    font-weight: 400;
    color: #86868b;
    line-height: 1.38462;
    letter-spacing: -0.08em;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-remove {
    background: none;
    border: none;
    color: #007AFF;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    line-height: 1.38462;
    letter-spacing: -0.08em;
}

.cart-remove:hover {
    background: rgba(0, 122, 255, 0.1);
    color: #0051D5;
}

/* Empty Cart State */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 20px;
    text-align: center;
}

.empty-cart-illustration {
    margin-bottom: 24px;
}

.empty-cart-icon-bg {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f5f5f7 0%, #e5e5ea 100%);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.empty-cart-icon {
    color: #86868b;
    opacity: 0.6;
}

.empty-cart-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 8px;
    line-height: 1.16667;
    letter-spacing: 0.009em;
}

.empty-cart-description {
    font-size: 17px;
    font-weight: 400;
    color: #86868b;
    line-height: 1.47059;
    letter-spacing: -0.022em;
    margin: 0 0 32px;
    max-width: 280px;
}

/* Cart Summary */
.cart-summary {
    padding: 20px 22px;
    border-top: 0.5px solid rgba(0, 0, 0, 0.08);
    background: rgba(248, 248, 248, 0.6);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.summary-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    font-size: 17px;
    font-weight: 400;
    color: #1d1d1f;
    line-height: 1.23536;
    letter-spacing: -0.022em;
}

.summary-value {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.23536;
    letter-spacing: -0.022em;
}

.shipping-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.free-shipping {
    color: #34C759;
}

.shipping-badge {
    background: rgba(52, 199, 89, 0.1);
    color: #34C759;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.summary-divider {
    height: 0.5px;
    background: rgba(0, 0, 0, 0.1);
    margin: 8px 0;
}

.total-row {
    padding-top: 8px;
}

.total-label {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1f;
}

.total-value {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1f;
}

/* Cart Actions */
.cart-actions {
    padding: 20px 22px 32px;
    background: rgba(248, 248, 248, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 0.5px solid rgba(0, 0, 0, 0.08);
}

.cart-actions-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Apple Button Styles */
.apple-button {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.23536;
    letter-spacing: -0.022em;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
}

.apple-button.primary {
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
    color: white;
    box-shadow: 
        0 2px 8px rgba(0, 122, 255, 0.25),
        0 1px 3px rgba(0, 122, 255, 0.15);
}

.apple-button.primary:hover {
    background: linear-gradient(135deg, #0051D5 0%, #003C9B 100%);
    transform: translateY(-1px);
    box-shadow: 
        0 4px 16px rgba(0, 122, 255, 0.3),
        0 2px 8px rgba(0, 122, 255, 0.2);
}

.apple-button.secondary {
    background: rgba(120, 120, 128, 0.12);
    color: #007AFF;
    border: 0.5px solid rgba(0, 122, 255, 0.2);
}

.apple-button.secondary:hover {
    background: rgba(0, 122, 255, 0.1);
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateY(-1px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cart-popup-content {
        width: 100%;
        max-width: 100%;
        border-left: none;
        border-radius: 0;
    }
    
    .cart-title {
        font-size: 20px;
    }
    
    .cart-header-content,
    .cart-items-section,
    .cart-summary,
    .cart-actions {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .cart-item:hover {
        margin: 0 -16px;
        padding: 20px 16px;
    }
    
    .apple-button {
        font-size: 16px;
        min-height: 52px;
        padding: 14px 20px;
    }
}

/* Search Popup */
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-popup.show {
    opacity: 1;
    visibility: visible;
}

.search-popup-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid rgba(60, 60, 67, 0.29);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.search-popup.show .search-popup-content {
    transform: translateY(0);
}

.search-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 22px;
}

.search-input-container {
    display: flex;
    align-items: center;
    height: 44px;
    gap: 12px;
}

.search-icon {
    color: #ffffff;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    background: none;
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    outline: none;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    letter-spacing: -0.022em;
    line-height: 1.23536;
}

.search-input::placeholder {
    color: #a1a1a6;
}

.search-close {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #1d1d1f;
}

.search-suggestions {
    background: rgba(28, 28, 30, 0.95);
    border-radius: 12px;
    margin: 8px 0 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 0.5px solid rgba(84, 84, 88, 0.4);
    overflow: hidden;
}

.search-section {
    padding: 16px 0;
}

.search-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #a1a1a6;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0 16px 8px;
    line-height: 1.38462;
}

.search-suggestion {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    gap: 12px;
}

.search-suggestion:hover {
    background: rgba(255, 255, 255, 0.1);
}

.suggestion-icon {
    color: #ffffff;
    flex-shrink: 0;
}

.search-suggestion span {
    font-size: 17px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.23536;
    letter-spacing: -0.022em;
}

.search-results {
    display: none;
}

.search-results.show {
    display: block;
    border-top: 0.5px solid rgba(60, 60, 67, 0.12);
    padding: 16px 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    gap: 12px;
}

.search-result-item:hover {
    background: #f5f5f7;
}

.result-icon {
    width: 40px;
    height: 40px;
    background: #f5f5f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.result-details {
    flex: 1;
}

.result-title {
    font-size: 17px;
    color: #1d1d1f;
    font-weight: 500;
    line-height: 1.23536;
    letter-spacing: -0.022em;
    margin-bottom: 2px;
}

.result-description {
    font-size: 13px;
    color: #86868b;
    line-height: 1.38462;
    letter-spacing: -0.008em;
}

/* Mobile Search */
@media (max-width: 768px) {
    .search-container {
        padding: 0 16px;
    }
    
    .search-input {
        font-size: 16px;
    }
    
    .search-suggestions {
        margin: 4px 0 16px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 0px;
    background: linear-gradient(180deg, #0d0d0f 0%, #1a1a1c 50%, #1a1a1c 80%, transparent 100%);
    color: #f2f2f7;
    position: relative;
    text-align: center;
    overflow: visible;
}

/* Advanced Starfield with Individual Particles */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -200px;
    background-image: 
        radial-gradient(3px 3px at 5% 10%, #ffffff, transparent),
        radial-gradient(4px 4px at 15% 25%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 25% 40%, #ffffff, transparent),
        radial-gradient(1px 1px at 35% 15%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(5px 5px at 45% 60%, #ffffff, transparent),
        radial-gradient(2px 2px at 55% 30%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 65% 75%, #ffffff, transparent),
        radial-gradient(4px 4px at 75% 20%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 85% 50%, #ffffff, transparent),
        radial-gradient(1px 1px at 95% 35%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(3px 3px at 10% 70%, #ffffff, transparent),
        radial-gradient(2px 2px at 30% 85%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 50% 5%, #ffffff, transparent),
        radial-gradient(3px 3px at 70% 45%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(4px 4px at 90% 80%, #ffffff, transparent),
        radial-gradient(1px 1px at 12% 35%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 22% 60%, #ffffff, transparent),
        radial-gradient(1px 1px at 32% 85%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(3px 3px at 42% 20%, #ffffff, transparent),
        radial-gradient(1px 1px at 52% 45%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 62% 70%, #ffffff, transparent),
        radial-gradient(4px 4px at 72% 95%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 82% 25%, #ffffff, transparent),
        radial-gradient(2px 2px at 92% 50%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(3px 3px at 8% 55%, #ffffff, transparent);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation: star1 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -200px;
    background-image: 
        radial-gradient(2px 2px at 8% 20%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(4px 4px at 18% 55%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(1px 1px at 28% 80%, rgba(173, 216, 230, 0.9), transparent),
        radial-gradient(3px 3px at 38% 35%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(5px 5px at 48% 10%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 58% 65%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(2px 2px at 68% 25%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(4px 4px at 78% 70%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(1px 1px at 88% 40%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(3px 3px at 98% 15%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(2px 2px at 12% 90%, rgba(173, 216, 230, 0.8), transparent),
        radial-gradient(1px 1px at 32% 45%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(3px 3px at 52% 75%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(2px 2px at 72% 5%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(4px 4px at 92% 60%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 4% 45%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(2px 2px at 14% 75%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(3px 3px at 24% 15%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(1px 1px at 34% 50%, rgba(173, 216, 230, 0.9), transparent),
        radial-gradient(4px 4px at 44% 85%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(2px 2px at 54% 25%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 64% 55%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(3px 3px at 74% 90%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(2px 2px at 84% 30%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(1px 1px at 94% 65%, rgba(173, 216, 230, 0.9), transparent);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation: star2 4.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Individual Star Animation Keyframes */
@keyframes star1 {
    0% { opacity: 0; }
    10% { opacity: 0.3; }
    20% { opacity: 0.8; }
    30% { opacity: 0.2; }
    40% { opacity: 0.9; }
    50% { opacity: 0.1; }
    60% { opacity: 0.7; }
    70% { opacity: 0.4; }
    80% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { opacity: 0; }
}

@keyframes star2 {
    0% { opacity: 0.2; }
    15% { opacity: 0.7; }
    25% { opacity: 0.1; }
    35% { opacity: 0.8; }
    45% { opacity: 0.3; }
    55% { opacity: 0.9; }
    65% { opacity: 0.2; }
    75% { opacity: 0.6; }
    85% { opacity: 0.4; }
    95% { opacity: 0.8; }
    100% { opacity: 0.2; }
}

/* Additional Star Layers for More Dense Starfield */
.hero .starfield-layer3 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -200px;
    background-image: 
        radial-gradient(3px 3px at 3% 8%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 13% 33%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(6px 6px at 23% 58%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 33% 83%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(4px 4px at 43% 18%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 53% 43%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 63% 68%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(3px 3px at 73% 93%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(5px 5px at 83% 28%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 93% 53%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(2px 2px at 7% 78%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(4px 4px at 17% 3%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 27% 28%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(3px 3px at 37% 53%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 47% 78%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 57% 3%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(4px 4px at 67% 28%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 77% 53%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 87% 78%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(3px 3px at 97% 23%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 2% 40%, rgba(173, 216, 230, 0.9), transparent),
        radial-gradient(5px 5px at 9% 65%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 19% 90%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(1px 1px at 29% 13%, rgba(173, 216, 230, 0.8), transparent),
        radial-gradient(3px 3px at 39% 38%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(4px 4px at 49% 63%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(1px 1px at 59% 88%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(2px 2px at 69% 13%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(6px 6px at 79% 38%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(1px 1px at 89% 63%, rgba(173, 216, 230, 0.9), transparent);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation: star3 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero .starfield-layer4 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -200px;
    background-image: 
        radial-gradient(4px 4px at 6% 16%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(7px 7px at 16% 41%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 26% 66%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 36% 91%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(5px 5px at 46% 26%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(3px 3px at 56% 51%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 66% 76%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(6px 6px at 76% 1%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 86% 36%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 96% 61%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(4px 4px at 1% 86%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 11% 11%, rgba(173, 216, 230, 0.8), transparent),
        radial-gradient(3px 3px at 21% 36%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(5px 5px at 31% 61%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 41% 86%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 51% 11%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(4px 4px at 61% 36%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 71% 61%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 81% 86%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(6px 6px at 91% 11%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(3px 3px at 4% 44%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 14% 69%, rgba(135, 206, 250, 0.8), transparent),
        radial-gradient(5px 5px at 24% 94%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 34% 19%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(4px 4px at 44% 44%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(1px 1px at 54% 69%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(3px 3px at 64% 94%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(7px 7px at 74% 19%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(2px 2px at 84% 44%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 94% 69%, rgba(173, 216, 230, 1), transparent);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation: star4 7.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes star3 {
    0% { opacity: 0.1; }
    12% { opacity: 0.6; }
    24% { opacity: 0.2; }
    36% { opacity: 0.9; }
    48% { opacity: 0.3; }
    60% { opacity: 0.8; }
    72% { opacity: 0.1; }
    84% { opacity: 0.7; }
    96% { opacity: 0.4; }
    100% { opacity: 0.1; }
}

@keyframes star4 {
    0% { opacity: 0.3; }
    14% { opacity: 0.8; }
    28% { opacity: 0.1; }
    42% { opacity: 0.6; }
    56% { opacity: 0.9; }
    70% { opacity: 0.2; }
    84% { opacity: 0.7; }
    98% { opacity: 0.4; }
    100% { opacity: 0.3; }
}

/* Multi-Directional Shooting Star Particles */
.hero .shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, #ffffff 0%, rgba(255,255,255,0.9) 40%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 4px #ffffff, 0 0 8px rgba(255,255,255,0.6);
}

.hero .shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0px;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,1) 0%, 
        rgba(173,216,230,0.8) 50%, 
        transparent 100%);
    transform-origin: 0 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease-out;
}

/* Starting positions scattered across screen */
.hero .shooting-star1 {
    top: 15%;
    left: 25%;
    animation: shootingParticle1 4.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 1.5s;
}

.hero .shooting-star2 {
    top: 60%;
    left: 80%;
    animation: shootingParticle2 3.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 6.3s;
}

.hero .shooting-star3 {
    top: 35%;
    left: 10%;
    animation: shootingParticle3 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 11.7s;
}

.hero .shooting-star4 {
    top: 75%;
    left: 45%;
    animation: shootingParticle4 4.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 17.2s;
}

.hero .shooting-star5 {
    top: 20%;
    left: 70%;
    animation: shootingParticle5 3.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 23.8s;
}

.hero .shooting-star6 {
    top: 85%;
    left: 15%;
    animation: shootingParticle6 4.0s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 29.4s;
}

.hero .shooting-star7 {
    top: 45%;
    left: 90%;
    animation: shootingParticle7 3.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 35.9s;
}

.hero .shooting-star8 {
    top: 8%;
    left: 55%;
    animation: shootingParticle8 3.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 42.1s;
}

.hero .shooting-star9 {
    top: 65%;
    left: 30%;
    animation: shootingParticle9 4.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 48.6s;
}

.hero .shooting-star10 {
    top: 25%;
    left: 5%;
    animation: shootingParticle10 3.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 54.2s;
}

/* Multi-Directional Particle Animations */
@keyframes shootingParticle1 {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    15% {
        transform: scale(1.2) translateX(5vw) translateY(-3vh);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) translateX(45vw) translateY(-25vh) rotate(320deg);
    }
}

@keyframes shootingParticle2 {
    0% {
        opacity: 0;
        transform: scale(0.4);
    }
    8% {
        opacity: 1;
        transform: scale(1.1);
    }
    12% {
        transform: scale(1.3) translateX(-4vw) translateY(2vh);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) translateX(-50vw) translateY(30vh) rotate(210deg);
    }
}

@keyframes shootingParticle3 {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    12% {
        opacity: 1;
        transform: scale(1);
    }
    18% {
        transform: scale(1.4) translateX(6vw) translateY(4vh);
    }
    100% {
        opacity: 0;
        transform: scale(0.4) translateX(55vw) translateY(35vh) rotate(135deg);
    }
}

@keyframes shootingParticle4 {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    15% {
        opacity: 1;
        transform: scale(1.2);
    }
    20% {
        transform: scale(1.1) translateX(-3vw) translateY(-5vh);
    }
    100% {
        opacity: 0;
        transform: scale(0.6) translateX(-40vw) translateY(-35vh) rotate(60deg);
    }
}

@keyframes shootingParticle5 {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    9% {
        opacity: 1;
        transform: scale(1);
    }
    14% {
        transform: scale(1.3) translateX(-7vw) translateY(-2vh);
    }
    100% {
        opacity: 0;
        transform: scale(0.2) translateX(-65vw) translateY(-20vh) rotate(280deg);
    }
}

@keyframes shootingParticle6 {
    0% {
        opacity: 0;
        transform: scale(0.4);
    }
    11% {
        opacity: 1;
        transform: scale(1.1);
    }
    16% {
        transform: scale(1.4) translateX(8vw) translateY(-6vh);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) translateX(60vw) translateY(-40vh) rotate(45deg);
    }
}

@keyframes shootingParticle7 {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    7% {
        opacity: 1;
        transform: scale(1.2);
    }
    13% {
        transform: scale(1) translateX(-5vw) translateY(3vh);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) translateX(-55vw) translateY(25vh) rotate(165deg);
    }
}

@keyframes shootingParticle8 {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    10% {
        opacity: 1;
        transform: scale(1.3);
    }
    17% {
        transform: scale(1.1) translateX(4vw) translateY(7vh);
    }
    100% {
        opacity: 0;
        transform: scale(0.4) translateX(35vw) translateY(45vh) rotate(110deg);
    }
}

@keyframes shootingParticle9 {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    13% {
        opacity: 1;
        transform: scale(1);
    }
    19% {
        transform: scale(1.2) translateX(-6vw) translateY(-4vh);
    }
    100% {
        opacity: 0;
        transform: scale(0.2) translateX(-45vw) translateY(-30vh) rotate(240deg);
    }
}

@keyframes shootingParticle10 {
    0% {
        opacity: 0;
        transform: scale(0.4);
    }
    8% {
        opacity: 1;
        transform: scale(1.4);
    }
    15% {
        transform: scale(1) translateX(9vw) translateY(-1vh);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) translateX(70vw) translateY(-15vh) rotate(75deg);
    }
}

/* Products Section Shooting Stars */
.products-shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, #ffffff 0%, rgba(255,255,255,0.9) 40%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 4px #ffffff, 0 0 8px rgba(255,255,255,0.6);
}

.products-shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, transparent 100%);
    border-radius: 2px;
    z-index: -1;
    transform-origin: 0 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease-out;
}

.products-shooting-star1 {
    top: 20%;
    left: 10%;
    animation: productsShootingParticle1 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 2s;
}

.products-shooting-star2 {
    top: 70%;
    left: 85%;
    animation: productsShootingParticle2 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 8s;
}

.products-shooting-star3 {
    top: 40%;
    left: 5%;
    animation: productsShootingParticle3 4.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 14s;
}

.products-shooting-star4 {
    top: 85%;
    left: 50%;
    animation: productsShootingParticle4 4.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 20s;
}

.products-shooting-star5 {
    top: 15%;
    left: 75%;
    animation: productsShootingParticle5 4.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 26s;
}

/* Features Section Shooting Stars */
.features-shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, #ffffff 0%, rgba(255,255,255,0.9) 40%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 4px #ffffff, 0 0 8px rgba(255,255,255,0.6);
}

.features-shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, transparent 100%);
    border-radius: 2px;
    z-index: -1;
    transform-origin: 0 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease-out;
}

.features-shooting-star1 {
    top: 25%;
    left: 15%;
    animation: featuresShootingParticle1 5.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 3s;
}

.features-shooting-star2 {
    top: 75%;
    left: 80%;
    animation: featuresShootingParticle2 4.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 9s;
}

.features-shooting-star3 {
    top: 35%;
    left: 8%;
    animation: featuresShootingParticle3 4.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 15s;
}

.features-shooting-star4 {
    top: 90%;
    left: 45%;
    animation: featuresShootingParticle4 4.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 21s;
}

.features-shooting-star5 {
    top: 10%;
    left: 70%;
    animation: featuresShootingParticle5 4.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 27s;
}

/* Reviews Section Shooting Stars */
.reviews-shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, #ffffff 0%, rgba(255,255,255,0.9) 40%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 4px #ffffff, 0 0 8px rgba(255,255,255,0.6);
}

.reviews-shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, transparent 100%);
    border-radius: 2px;
    z-index: -1;
    transform-origin: 0 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease-out;
}

.reviews-shooting-star1 {
    top: 30%;
    left: 12%;
    animation: reviewsShootingParticle1 5.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 4s;
}

.reviews-shooting-star2 {
    top: 80%;
    left: 88%;
    animation: reviewsShootingParticle2 4.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 10s;
}

.reviews-shooting-star3 {
    top: 45%;
    left: 6%;
    animation: reviewsShootingParticle3 4.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 16s;
}

.reviews-shooting-star4 {
    top: 95%;
    left: 55%;
    animation: reviewsShootingParticle4 4.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 22s;
}

.reviews-shooting-star5 {
    top: 5%;
    left: 65%;
    animation: reviewsShootingParticle5 4.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 28s;
}

/* Products Shooting Star Animations */
@keyframes productsShootingParticle1 {
    0% { opacity: 0; transform: scale(0.3); }
    10% { opacity: 1; transform: scale(1); }
    15% { transform: scale(1.2) translateX(8vw) translateY(-5vh); }
    100% { opacity: 0; transform: scale(0.5) translateX(50vw) translateY(-30vh) rotate(310deg); }
}

@keyframes productsShootingParticle2 {
    0% { opacity: 0; transform: scale(0.4); }
    8% { opacity: 1; transform: scale(1.1); }
    12% { transform: scale(1) translateX(-6vw) translateY(-4vh); }
    100% { opacity: 0; transform: scale(0.4) translateX(-45vw) translateY(-25vh) rotate(225deg); }
}

@keyframes productsShootingParticle3 {
    0% { opacity: 0; transform: scale(0.3); }
    12% { opacity: 1; transform: scale(1.3); }
    18% { transform: scale(1) translateX(10vw) translateY(-2vh); }
    100% { opacity: 0; transform: scale(0.6) translateX(55vw) translateY(-20vh) rotate(340deg); }
}

@keyframes productsShootingParticle4 {
    0% { opacity: 0; transform: scale(0.5); }
    9% { opacity: 1; transform: scale(1.2); }
    14% { transform: scale(1) translateX(-4vw) translateY(-7vh); }
    100% { opacity: 0; transform: scale(0.3) translateX(-35vw) translateY(-40vh) rotate(200deg); }
}

@keyframes productsShootingParticle5 {
    0% { opacity: 0; transform: scale(0.4); }
    11% { opacity: 1; transform: scale(1.1); }
    16% { transform: scale(1) translateX(7vw) translateY(-6vh); }
    100% { opacity: 0; transform: scale(0.5) translateX(48vw) translateY(-35vh) rotate(315deg); }
}

/* Features Shooting Star Animations */
@keyframes featuresShootingParticle1 {
    0% { opacity: 0; transform: scale(0.3); }
    10% { opacity: 1; transform: scale(1); }
    15% { transform: scale(1.2) translateX(9vw) translateY(-4vh); }
    100% { opacity: 0; transform: scale(0.5) translateX(52vw) translateY(-28vh) rotate(320deg); }
}

@keyframes featuresShootingParticle2 {
    0% { opacity: 0; transform: scale(0.4); }
    8% { opacity: 1; transform: scale(1.1); }
    12% { transform: scale(1) translateX(-7vw) translateY(-3vh); }
    100% { opacity: 0; transform: scale(0.4) translateX(-42vw) translateY(-22vh) rotate(235deg); }
}

@keyframes featuresShootingParticle3 {
    0% { opacity: 0; transform: scale(0.3); }
    12% { opacity: 1; transform: scale(1.3); }
    18% { transform: scale(1) translateX(11vw) translateY(-5vh); }
    100% { opacity: 0; transform: scale(0.6) translateX(58vw) translateY(-32vh) rotate(330deg); }
}

@keyframes featuresShootingParticle4 {
    0% { opacity: 0; transform: scale(0.5); }
    9% { opacity: 1; transform: scale(1.2); }
    14% { transform: scale(1) translateX(-5vw) translateY(-6vh); }
    100% { opacity: 0; transform: scale(0.3) translateX(-38vw) translateY(-38vh) rotate(210deg); }
}

@keyframes featuresShootingParticle5 {
    0% { opacity: 0; transform: scale(0.4); }
    11% { opacity: 1; transform: scale(1.1); }
    16% { transform: scale(1) translateX(6vw) translateY(-7vh); }
    100% { opacity: 0; transform: scale(0.5) translateX(45vw) translateY(-38vh) rotate(305deg); }
}

/* Reviews Shooting Star Animations */
@keyframes reviewsShootingParticle1 {
    0% { opacity: 0; transform: scale(0.3); }
    10% { opacity: 1; transform: scale(1); }
    15% { transform: scale(1.2) translateX(8vw) translateY(-6vh); }
    100% { opacity: 0; transform: scale(0.5) translateX(49vw) translateY(-33vh) rotate(325deg); }
}

@keyframes reviewsShootingParticle2 {
    0% { opacity: 0; transform: scale(0.4); }
    8% { opacity: 1; transform: scale(1.1); }
    12% { transform: scale(1) translateX(-8vw) translateY(-2vh); }
    100% { opacity: 0; transform: scale(0.4) translateX(-47vw) translateY(-18vh) rotate(240deg); }
}

@keyframes reviewsShootingParticle3 {
    0% { opacity: 0; transform: scale(0.3); }
    12% { opacity: 1; transform: scale(1.3); }
    18% { transform: scale(1) translateX(12vw) translateY(-4vh); }
    100% { opacity: 0; transform: scale(0.6) translateX(60vw) translateY(-26vh) rotate(335deg); }
}

@keyframes reviewsShootingParticle4 {
    0% { opacity: 0; transform: scale(0.5); }
    9% { opacity: 1; transform: scale(1.2); }
    14% { transform: scale(1) translateX(-3vw) translateY(-8vh); }
    100% { opacity: 0; transform: scale(0.3) translateX(-32vw) translateY(-42vh) rotate(215deg); }
}

@keyframes reviewsShootingParticle5 {
    0% { opacity: 0; transform: scale(0.4); }
    11% { opacity: 1; transform: scale(1.1); }
    16% { transform: scale(1) translateX(5vw) translateY(-8vh); }
    100% { opacity: 0; transform: scale(0.5) translateX(42vw) translateY(-40vh) rotate(300deg); }
}


@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    max-width: 760px;
    margin: 0 auto 40px;
    z-index: 3;
    position: relative;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.07143;
    letter-spacing: -0.005em;
    white-space: nowrap;
    color: #f2f2f7;
    text-shadow: 0 0 20px rgba(173, 216, 230, 0.8),
                 0 0 40px rgba(135, 206, 250, 0.6),
                 0 0 60px rgba(135, 206, 250, 0.4);
}

.hero-quality-text {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #87ceeb;
    text-align: center;
    text-shadow: 0 0 10px rgba(135, 206, 250, 0.6);
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.14286;
    letter-spacing: 0.004em;
    color: #86868b;
}

.cta-button {
    background: #424245;
    color: white;
    border: none;
    padding: 12px 23px;
    font-size: 17px;
    font-weight: 400;
    border-radius: 980px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.23536;
    letter-spacing: -0.022em;
    margin: 0 8px 8px 0;
    display: inline-block;
    box-shadow: 
        0 2px 8px rgba(173, 216, 230, 0.4),
        0 4px 16px rgba(135, 206, 250, 0.3),
        0 6px 24px rgba(100, 149, 237, 0.2);
    text-shadow: 
        0 1px 4px rgba(173, 216, 230, 0.3),
        0 2px 8px rgba(135, 206, 250, 0.2),
        0 3px 12px rgba(100, 149, 237, 0.1);
}

.cta-button:hover {
    background: #515154;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 4px 12px rgba(173, 216, 230, 0.6),
        0 8px 24px rgba(135, 206, 250, 0.5),
        0 12px 36px rgba(100, 149, 237, 0.4);
    text-shadow: 
        0 2px 6px rgba(173, 216, 230, 0.5),
        0 4px 12px rgba(135, 206, 250, 0.4),
        0 6px 18px rgba(100, 149, 237, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.airpods-showcase {
    width: 450px;
    height: 450px;
    position: relative;
    animation: slideInRight 1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero AirPods Image Styling */
.hero-airpods-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(173, 216, 230, 0.5)) 
            drop-shadow(0 30px 60px rgba(135, 206, 250, 0.4))
            drop-shadow(0 45px 100px rgba(100, 149, 237, 0.3));
    animation: airpodsFloat 6s ease-in-out infinite;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.hero-airpods-image:hover {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 15px 40px rgba(135, 206, 250, 0.4));
}

@keyframes airpodsFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(3deg);
    }
}

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

/* Hero Video Container */
.hero-video-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.hero-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 70% 50% at 50% 50%, 
            rgba(173, 216, 230, 0.25) 0%,
            rgba(135, 206, 250, 0.18) 25%,
            rgba(230, 245, 255, 0.12) 50%,
            rgba(245, 250, 255, 0.08) 70%,
            transparent 85%);
    z-index: 0;
    border-radius: 20px;
    animation: blueGlow 8s ease-in-out infinite;
}

@keyframes blueGlow {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.05); 
    }
}

.hero-airpods-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(1.2) contrast(1.1) saturate(0.9);
    animation: videoFloat 4s ease-in-out infinite;
    mix-blend-mode: screen;
    opacity: 0.15;
    position: relative;
    z-index: 2;
}

@keyframes videoFloat {
    0%, 100% { transform: scale(1) translateY(0px); }
    50% { transform: scale(1.02) translateY(-10px); }
}

/* Video overlay for seamless background integration */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 50% 50%, 
            rgba(135, 206, 250, 0.05) 0%,
            rgba(173, 216, 230, 0.03) 20%,
            rgba(100, 149, 237, 0.02) 40%,
            rgba(28, 28, 30, 0.1) 60%,
            rgba(28, 28, 30, 0.2) 80%,
            rgba(28, 28, 30, 0.4) 95%,
            transparent 100%);
    pointer-events: none;
    border-radius: 20px;
    animation: overlayPulse 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.4; }
}

/* Fallback Hero AirPods Styling */
.hero-airpods {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    50% { transform: translateY(-20px) scale(1.02) rotate(2deg); }
}

.airpods-case {
    position: relative;
    width: 200px;
    height: 120px;
    perspective: 1000px;
}

.airpods-lid {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 50px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 248, 250, 0.8) 20%,
        rgba(240, 240, 245, 0.6) 50%,
        rgba(230, 230, 235, 0.4) 80%,
        rgba(220, 220, 225, 0.2) 100%);
    border-radius: 25px 25px 15px 15px;
    border: 1px solid rgba(200, 200, 210, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    animation: lidFloat 4s ease-in-out infinite;
}

@keyframes lidFloat {
    0%, 100% { transform: translateX(-50%) rotateX(0deg); }
    50% { transform: translateX(-50%) rotateX(-5deg); }
}

.airpods-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 80px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(250, 250, 252, 0.9) 20%,
        rgba(245, 245, 248, 0.7) 50%,
        rgba(235, 235, 240, 0.5) 80%,
        rgba(225, 225, 230, 0.3) 100%);
    border-radius: 15px 15px 25px 25px;
    border: 1px solid rgba(200, 200, 210, 0.4);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 15px 20px;
}

.airpod {
    position: relative;
    width: 25px;
    height: 50px;
    animation: airpodBob 3s ease-in-out infinite;
}

.left-airpod {
    animation-delay: -0.5s;
}

.right-airpod {
    animation-delay: -1s;
}

@keyframes airpodBob {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

.airpod-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 248, 250, 0.85) 30%,
        rgba(240, 240, 245, 0.7) 60%,
        rgba(230, 230, 235, 0.5) 90%,
        rgba(220, 220, 225, 0.3) 100%);
    border-radius: 50% 50% 40% 40%;
    border: 1px solid rgba(200, 200, 210, 0.4);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.airpod-head::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, 
        rgba(50, 50, 60, 0.8) 0%,
        rgba(30, 30, 40, 0.6) 50%,
        rgba(0, 0, 0, 0.3) 100%);
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.airpod-stem {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 35px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 248, 250, 0.8) 20%,
        rgba(240, 240, 245, 0.6) 50%,
        rgba(230, 230, 235, 0.4) 80%,
        rgba(220, 220, 225, 0.2) 100%);
    border-radius: 4px 4px 8px 8px;
    border: 1px solid rgba(200, 200, 210, 0.3);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

/* Background fade effect */
.hero-airpods::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(248, 248, 250, 0.08) 20%,
        rgba(240, 240, 245, 0.05) 40%,
        rgba(230, 230, 235, 0.03) 60%,
        rgba(220, 220, 225, 0.01) 80%,
        transparent 100%);
    border-radius: 50%;
    z-index: -1;
    animation: bgPulse 6s ease-in-out infinite;
}

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

/* Seamless integration with hero background */
.hero-airpods::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.01) 30%,
        transparent 70%);
    border-radius: 50%;
    z-index: -2;
    animation: seamlessFade 8s ease-in-out infinite;
}

@keyframes seamlessFade {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

/* Floating AirPods Animation */
.floating-airpods {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.floating-airpod {
    position: absolute;
    opacity: 0.7;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.airpod-emoji {
    font-size: 32px;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.floating-airpod-1 {
    top: 10%;
    left: 5%;
    animation: float1 6s ease-in-out infinite;
}

.floating-airpod-2 {
    top: 20%;
    right: 8%;
    animation: float2 7s ease-in-out infinite;
}

.floating-airpod-3 {
    bottom: 25%;
    left: 8%;
    animation: float3 5s ease-in-out infinite;
}

.floating-airpod-4 {
    bottom: 15%;
    right: 12%;
    animation: float4 6.5s ease-in-out infinite;
}

.floating-airpod-5 {
    top: 35%;
    left: 15%;
    animation: float5 8s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
        opacity: 0.7; 
    }
    25% { 
        transform: translateY(-20px) translateX(10px) rotate(5deg); 
        opacity: 0.9; 
    }
    50% { 
        transform: translateY(-15px) translateX(-5px) rotate(-3deg); 
        opacity: 0.8; 
    }
    75% { 
        transform: translateY(-25px) translateX(15px) rotate(7deg); 
        opacity: 0.9; 
    }
}

@keyframes float2 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); 
        opacity: 0.6; 
    }
    33% { 
        transform: translateY(-30px) translateX(-15px) rotate(-8deg) scale(1.1); 
        opacity: 0.8; 
    }
    66% { 
        transform: translateY(-10px) translateX(8px) rotate(4deg) scale(0.9); 
        opacity: 0.7; 
    }
}

@keyframes float3 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
        opacity: 0.8; 
    }
    20% { 
        transform: translateY(-18px) translateX(12px) rotate(6deg); 
        opacity: 0.9; 
    }
    40% { 
        transform: translateY(-35px) translateX(-8px) rotate(-4deg); 
        opacity: 0.7; 
    }
    60% { 
        transform: translateY(-22px) translateX(18px) rotate(9deg); 
        opacity: 0.8; 
    }
    80% { 
        transform: translateY(-12px) translateX(-3px) rotate(-2deg); 
        opacity: 0.9; 
    }
}

@keyframes float4 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); 
        opacity: 0.7; 
    }
    25% { 
        transform: translateY(-25px) translateX(-10px) rotate(-6deg) scale(1.05); 
        opacity: 0.9; 
    }
    50% { 
        transform: translateY(-40px) translateX(5px) rotate(3deg) scale(0.95); 
        opacity: 0.6; 
    }
    75% { 
        transform: translateY(-15px) translateX(-20px) rotate(-9deg) scale(1.1); 
        opacity: 0.8; 
    }
}

@keyframes float5 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
        opacity: 0.6; 
    }
    16% { 
        transform: translateY(-20px) translateX(8px) rotate(4deg); 
        opacity: 0.8; 
    }
    32% { 
        transform: translateY(-35px) translateX(-12px) rotate(-7deg); 
        opacity: 0.9; 
    }
    48% { 
        transform: translateY(-28px) translateX(15px) rotate(8deg); 
        opacity: 0.7; 
    }
    64% { 
        transform: translateY(-45px) translateX(-5px) rotate(-3deg); 
        opacity: 0.8; 
    }
    80% { 
        transform: translateY(-10px) translateX(20px) rotate(10deg); 
        opacity: 0.9; 
    }
}

/* Hover effect for floating airpods */
.airpods-showcase:hover .floating-airpod {
    animation-play-state: paused;
    transform: scale(1.2);
    opacity: 1;
    transition: all 0.3s ease;
}

/* Responsive floating airpods */
@media (max-width: 768px) {
    .floating-airpod {
        opacity: 0.5;
    }
    
    .airpod-emoji {
        font-size: 24px;
    }
    
    .floating-airpod-5 {
        display: none;
    }
}

/* Transparent AirPods Animation */
.transparent-airpods {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.transparent-airpod {
    position: absolute;
    opacity: 0.15;
    filter: blur(0.5px);
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

/* Individual Transparent AirPods */
.transparent-airpod-1 {
    top: 10%;
    left: 5%;
    animation: transparentFloat1 12s infinite;
}

.transparent-airpod-2 {
    top: 20%;
    right: 10%;
    animation: transparentFloat2 15s infinite;
}

.transparent-airpod-3 {
    bottom: 30%;
    left: 15%;
    animation: transparentFloat3 10s infinite;
}

.transparent-airpod-4 {
    bottom: 20%;
    right: 5%;
    animation: transparentFloat4 14s infinite;
}

.transparent-airpod-5 {
    top: 40%;
    left: 45%;
    animation: transparentFloat5 18s infinite;
}

.transparent-airpod-6 {
    top: 60%;
    right: 25%;
    animation: transparentFloat6 16s infinite;
}

/* Transparent AirPod SVG Styling */
.transparent-airpod-svg {
    width: 90px;
    height: 120px;
    fill: rgba(255, 255, 255, 0.3);
    stroke: rgba(173, 216, 230, 0.2);
    stroke-width: 1;
    filter: drop-shadow(0 0 15px rgba(135, 206, 250, 0.15));
}

/* Animation Keyframes for Transparent AirPods */
@keyframes transparentFloat1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.15;
    }
    25% {
        transform: translateY(-60px) translateX(30px) rotate(20deg) scale(1.2);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) translateX(-15px) rotate(-15deg) scale(0.8);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-80px) translateX(45px) rotate(35deg) scale(1.15);
        opacity: 0.35;
    }
}

@keyframes transparentFloat2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.18;
    }
    30% {
        transform: translateY(-70px) translateX(-40px) rotate(-25deg) scale(1.25);
        opacity: 0.32;
    }
    60% {
        transform: translateY(-25px) translateX(25px) rotate(12deg) scale(0.75);
        opacity: 0.25;
    }
    90% {
        transform: translateY(-50px) translateX(-10px) rotate(-8deg) scale(1.18);
        opacity: 0.28;
    }
}

@keyframes transparentFloat3 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.14;
    }
    20% {
        transform: translateY(-30px) translateX(25px) rotate(18deg) scale(1.2);
        opacity: 0.24;
    }
    40% {
        transform: translateY(-70px) translateX(-15px) rotate(-12deg) scale(0.8);
        opacity: 0.16;
    }
    80% {
        transform: translateY(-45px) translateX(35px) rotate(22deg) scale(1.1);
        opacity: 0.28;
    }
}

@keyframes transparentFloat4 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.13;
    }
    25% {
        transform: translateY(-55px) translateX(-20px) rotate(-15deg) scale(1.12);
        opacity: 0.23;
    }
    50% {
        transform: translateY(-25px) translateX(10px) rotate(12deg) scale(0.88);
        opacity: 0.19;
    }
    75% {
        transform: translateY(-80px) translateX(-35px) rotate(-25deg) scale(1.18);
        opacity: 0.26;
    }
}

@keyframes transparentFloat5 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.08;
    }
    16% {
        transform: translateY(-35px) translateX(15px) rotate(10deg) scale(1.05);
        opacity: 0.18;
    }
    32% {
        transform: translateY(-65px) translateX(-20px) rotate(-18deg) scale(0.92);
        opacity: 0.14;
    }
    48% {
        transform: translateY(-40px) translateX(25px) rotate(20deg) scale(1.08);
        opacity: 0.21;
    }
    64% {
        transform: translateY(-85px) translateX(-10px) rotate(-8deg) scale(0.95);
        opacity: 0.16;
    }
    80% {
        transform: translateY(-20px) translateX(30px) rotate(28deg) scale(1.15);
        opacity: 0.25;
    }
}

@keyframes transparentFloat6 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.11;
    }
    33% {
        transform: translateY(-45px) translateX(-30px) rotate(-22deg) scale(1.14);
        opacity: 0.21;
    }
    66% {
        transform: translateY(-75px) translateX(12px) rotate(16deg) scale(0.86);
        opacity: 0.17;
    }
}


/* Products Section */
.products-section {
    padding: 120px 20px 0px;
    background: linear-gradient(180deg, transparent 0%, #0d0d0f 100%);
    color: #f2f2f7;
    position: relative;
    overflow: hidden;
    margin-top: -60px;
}

/* Products Section Twinkling Stars */
.products-twinkling-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.products-twinkling-star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 12px #ffffff, 0 0 24px rgba(255, 255, 255, 0.8), 0 0 36px rgba(255, 255, 255, 0.4);
    animation: productsTwinkle 3s ease-in-out infinite;
}

.products-twinkling-star.size-1 {
    width: 2px;
    height: 2px;
}

.products-twinkling-star.size-2 {
    width: 3px;
    height: 3px;
}

.products-twinkling-star.size-3 {
    width: 4px;
    height: 4px;
}

.products-twinkling-star.blue {
    background: rgba(173, 216, 230, 1);
    box-shadow: 0 0 16px rgba(173, 216, 230, 1), 0 0 32px rgba(173, 216, 230, 0.8), 0 0 48px rgba(173, 216, 230, 0.4);
}

.products-twinkling-star.sky-blue {
    background: rgba(135, 206, 250, 1);
    box-shadow: 0 0 16px rgba(135, 206, 250, 1), 0 0 32px rgba(135, 206, 250, 0.8), 0 0 48px rgba(135, 206, 250, 0.4);
}

@keyframes productsTwinkle {
    0%, 100% {
        opacity: 0.1;
        transform: scale(0.7);
    }
    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}

.products-twinkling-star.delay-1 { animation-delay: 0.3s; }
.products-twinkling-star.delay-2 { animation-delay: 0.8s; }
.products-twinkling-star.delay-3 { animation-delay: 1.3s; }
.products-twinkling-star.delay-4 { animation-delay: 1.8s; }
.products-twinkling-star.delay-5 { animation-delay: 2.3s; }
.products-twinkling-star.delay-6 { animation-delay: 2.8s; }
.products-twinkling-star.delay-7 { animation-delay: 3.3s; }
.products-twinkling-star.delay-8 { animation-delay: 3.8s; }

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f2f2f7;
    line-height: 1.08349;
    letter-spacing: -0.003em;
    position: relative;
    z-index: 3;
    text-shadow: 0 0 16px rgba(173, 216, 230, 0.8),
                 0 0 32px rgba(135, 206, 250, 0.6),
                 0 0 48px rgba(135, 206, 250, 0.4);
}

.section-title .line-break {
    display: block;
}

/* Product Image Slider */
.product-image-slider {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 16px;
}

.simple-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: #2a2a2c;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide-image.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 2;
}

.simple-slider:hover .slider-btn {
    opacity: 1;
}

.prev-btn {
    left: 8px;
}

.next-btn {
    right: 8px;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 2;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

/* Starfield for all sections */
.products-section .starfield-layer3,
.features-section .starfield-layer3,
.reviews-section .starfield-layer3 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(3px 3px at 3% 8%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 13% 33%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(6px 6px at 23% 58%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 33% 83%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(4px 4px at 43% 8%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(2px 2px at 53% 33%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(5px 5px at 63% 58%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(1px 1px at 73% 83%, rgba(173, 216, 230, 0.9), transparent),
        radial-gradient(3px 3px at 83% 8%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 93% 33%, rgba(135, 206, 250, 1), transparent);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation: star3 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.products-section .starfield-layer4,
.features-section .starfield-layer4,
.reviews-section .starfield-layer4 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(4px 4px at 6% 16%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(7px 7px at 16% 41%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 26% 66%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(6px 6px at 36% 91%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(1px 1px at 46% 16%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(5px 5px at 56% 41%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(3px 3px at 66% 66%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(2px 2px at 76% 91%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(4px 4px at 86% 16%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 96% 41%, rgba(135, 206, 250, 0.9), transparent);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation: star4 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: #3a3a3c;
    border-radius: 18px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(173, 216, 230, 0.4),
                0 0 50px rgba(135, 206, 250, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(84, 84, 88, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(20px);
    z-index: 10;
}


.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 
                0 16px 64px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.08),
                0 0 40px rgba(173, 216, 230, 0.6),
                0 0 70px rgba(135, 206, 250, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.product-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.product-png-image {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(173, 216, 230, 0.3)) 
            drop-shadow(0 6px 20px rgba(135, 206, 250, 0.2))
            drop-shadow(0 8px 28px rgba(100, 149, 237, 0.1));
}

.product-card:hover .product-png-image {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 16px rgba(173, 216, 230, 0.4)) 
            drop-shadow(0 8px 24px rgba(135, 206, 250, 0.3))
            drop-shadow(0 12px 32px rgba(100, 149, 237, 0.2));
}

.airpods-visual {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.airpods-pro-1 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.airpods-pro-1::before {
    content: '';
    position: absolute;
    width: 58px;
    height: 78px;
    background: linear-gradient(145deg, #ffffff 0%, #f1f3f4 50%, #e8eaed 100%);
    border-radius: 29px 29px 14px 14px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.airpods-pro-1::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 23px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f3f4 100%);
    border-radius: 3.5px;
    bottom: 16px;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.airpods-pro-2 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.airpods-pro-2::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 80px;
    background: linear-gradient(145deg, #ffffff 0%, #f1f3f4 50%, #e8eaed 100%);
    border-radius: 30px 30px 15px 15px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.airpods-pro-2::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 25px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f3f4 100%);
    border-radius: 4px;
    bottom: 15px;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}


.airpods-max {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.airpods-max::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 60px;
    background: linear-gradient(145deg, #5d6d7e 0%, #515a6b 50%, #424a5a 100%);
    border-radius: 35px;
    box-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.airpods-max::after {
    content: '';
    position: absolute;
    top: -5px;
    width: 80px;
    height: 8px;
    background: linear-gradient(90deg, #5d6d7e 0%, #515a6b 50%, #424a5a 100%);
    border-radius: 4px;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.watch-ultra {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.watch-ultra::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #4a4a4a 0%, #3a3a3a 50%, #2a2a2a 100%);
    border-radius: 16px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border: 2px solid #5a5a5a;
}

.watch-ultra::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #1a1a1a 0%, #000000 100%);
    border-radius: 12px;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Add digital crown and action button details */
.watch-ultra {
    position: relative;
}

.watch-ultra:hover::before {
    transform: scale(1.02);
}

.watch-ultra:hover::after {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
}

.product-card:hover .airpods-visual {
    transform: scale(1.1) rotate(10deg);
}

.product-name {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.14286;
    letter-spacing: 0.007em;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    text-shadow: 0 0 12px rgba(173, 216, 230, 0.8),
                 0 0 24px rgba(135, 206, 250, 0.6),
                 0 0 36px rgba(135, 206, 250, 0.4);
}

.product-description {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 21px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.42105;
    letter-spacing: -0.022em;
    font-weight: 400;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
}

.feature-item span:not(.feature-icon) {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: -0.01em;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.feature-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.feature {
    background: rgba(0, 113, 227, 0.08);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: #ffffff;
    border: 1px solid rgba(0, 113, 227, 0.15);
    line-height: 1.38462;
    letter-spacing: -0.01em;
    font-weight: 500;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    color: #ffac33;
    font-size: 16px;
}

.rating-text {
    font-size: 15px;
    color: #86868b;
    margin-left: 8px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.product-pricing {
    margin-bottom: 24px;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.original-price {
    font-size: 18px;
    color: #86868b;
    text-decoration: line-through;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.current-price {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.discount {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.product-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    position: relative;
    z-index: 12;
}

.product-price {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.14286;
    letter-spacing: 0.007em;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.buy-button {
    background: #0071e3;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    width: 100%;
    position: relative;
    z-index: 15;
    pointer-events: auto;
    line-height: 1.23536;
    letter-spacing: -0.022em;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.3);
}

.buy-button:hover {
    background: #0077ed;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 113, 227, 0.4);
}

.buy-button:active {
    transform: translateY(0);
}

.product-buttons {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.more-info-button {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    flex: 1;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.more-info-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

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


.buy-button {
    flex: 1;
}

/* ==========================================
   MODERN SHOPPING CART PAGE DESIGN
   ========================================== */

.modern-cart-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d0d0f 0%, #1a1a1c 50%, #0d0d0f 100%);
    position: relative;
    overflow-x: hidden;
}

/* Cart Hero Section */
.cart-hero {
    position: relative;
    padding: 60px 0 40px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.cart-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.cart-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.cart-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-back-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

.cart-back-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    color: rgba(255, 255, 255, 1);
}

.cart-hero-info {
    text-align: center;
    color: white;
}

.cart-hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    margin: 0 0 8px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

.cart-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* Main Cart Content */
.cart-main {
    padding: 60px 0 80px;
}

.cart-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

/* Cart Items Section */
.cart-items-wrapper {
    position: relative;
}

.cart-items-section {
    position: relative;
}

.cart-items-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Individual Cart Item */
.cart-page-item {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.cart-page-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-page-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 122, 255, 0.1);
}

.cart-page-item:hover::before {
    opacity: 1;
}

.cart-page-item-image-container {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    position: relative;
}

.cart-page-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.cart-page-item-emoji {
    font-size: 56px;
}

.cart-page-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-page-item-name {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

.cart-page-item-price {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0;
}

.cart-page-item-quantity {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.cart-page-quantity-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.cart-page-quantity-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.cart-page-quantity {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    min-width: 50px;
    text-align: center;
}

.cart-page-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.cart-page-item-total {
    text-align: right;
}

.cart-page-item-total-price {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

.cart-page-remove {
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.3);
    color: #007AFF;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.3);
}

.cart-page-remove:hover {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.5);
    color: #0056CC;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.5), 0 0 30px rgba(0, 122, 255, 0.3);
}

/* Empty Cart State */
.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 40px;
    min-height: 400px;
}

.empty-state-visual {
    margin-bottom: 40px;
    position: relative;
}

.empty-state-icon {
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.empty-state-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.empty-state-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.empty-state-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.empty-state-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.empty-state-content {
    max-width: 400px;
}

.empty-state-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

.empty-state-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0 0 40px;
}

.explore-btn {
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 
        0 8px 32px rgba(0, 122, 255, 0.3),
        0 2px 8px rgba(0, 122, 255, 0.2);
}

.explore-btn:hover {
    background: linear-gradient(135deg, #0051D5 0%, #003C9B 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 122, 255, 0.4),
        0 4px 16px rgba(0, 122, 255, 0.3);
}

/* Cart Summary Sidebar */
.cart-summary-sidebar {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.summary-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

.summary-security {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.summary-details {
    margin-bottom: 32px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.summary-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
}

.summary-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.shipping-value {
    display: flex;
    align-items: center;
    gap: 8px;
}

.free-shipping {
    color: #34C759;
}

.shipping-badge {
    background: rgba(52, 199, 89, 0.15);
    color: #34C759;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 24px 0;
}

.total-line {
    padding-top: 8px;
}

.total-line .summary-label {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.total-line .summary-value {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.summary-actions {
    margin-bottom: 32px;
}

.checkout-btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
    border: none;
    color: white;
    padding: 18px 24px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 122, 255, 0.3),
        0 2px 8px rgba(0, 122, 255, 0.2);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.checkout-btn-primary:hover {
    background: linear-gradient(135deg, #0051D5 0%, #003C9B 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 122, 255, 0.4),
        0 4px 16px rgba(0, 122, 255, 0.3);
}

.checkout-btn-primary:hover .btn-shine {
    left: 100%;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
}

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.summary-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
}

.benefit-item svg {
    color: #34C759;
    flex-shrink: 0;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .cart-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cart-summary-sidebar {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .cart-hero {
        padding: 40px 0 30px;
    }
    
    .cart-hero-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .cart-main {
        padding: 40px 0 60px;
    }
    
    .cart-container {
        padding: 0 16px;
        gap: 32px;
    }
    
    .modern-cart-page {
        min-height: auto;
        padding-bottom: 0;
    }
    
    footer {
        padding: 15px 20px 0px 20px;
        margin-bottom: 0;
    }
    
    footer p {
        margin: 0;
        padding: 0;
    }
    
    .cart-page-item {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cart-page-item-image-container {
        width: 100px;
        height: 100px;
    }
    
    .cart-page-item-details {
        width: 100%;
    }
    
    .cart-page-item-actions {
        align-items: center;
        width: 100%;
    }
    
    .summary-card {
        padding: 24px;
    }
    
    .empty-state-title {
        font-size: 28px;
    }
    
    .empty-state-description {
        font-size: 16px;
    }
}

/* Legacy Shopping Cart Page */
.cart-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d0d0f 0%, #1a1a1c 100%);
    color: #ffffff;
    padding: 20px 0;
}

.cart-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cart-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.cart-page-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.cart-page-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.cart-page-content {
    margin-bottom: 40px;
}

.cart-page-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-page-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.cart-page-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.cart-page-item-image-container {
    width: 80px;
    height: 80px;
    margin-right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
}

.cart-page-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.cart-page-item-emoji {
    font-size: 40px;
}

.cart-page-item-details {
    flex: 1;
}

.cart-page-item-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.cart-page-item-price {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px 0;
    font-size: 16px;
}

.cart-page-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-page-item-total {
    text-align: right;
}

.item-total-price {
    font-size: 24px;
    font-weight: 600;
    color: #007AFF;
    margin-bottom: 12px;
}

.cart-page-remove {
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.3);
    color: #007AFF;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.3);
}

.cart-page-remove:hover {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.5);
    color: #0056CC;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.5), 0 0 30px rgba(0, 122, 255, 0.3);
}

.cart-page-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.empty-cart-illustration {
    font-size: 80px;
    margin-bottom: 24px;
}

.cart-page-empty h2 {
    font-size: 28px;
    margin: 0 0 12px 0;
    color: #ffffff;
}

.cart-page-empty p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin: 0 0 32px 0;
}

.cart-page-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.cart-page-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.cart-page-actions {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.continue-shopping-button {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.continue-shopping-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.checkout-button-main {
    flex: 2;
    background: linear-gradient(135deg, #007AFF, #00D4FF);
    border: none;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-button-main:hover {
    background: linear-gradient(135deg, #0051d5, #00b8ff);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.6);
}

/* Mobile responsiveness for cart page */
@media (max-width: 768px) {
    .cart-page-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cart-page-title {
        font-size: 24px;
    }
    
    .cart-page-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cart-page-item-image-container {
        margin: 0;
    }
    
    .cart-page-item-details {
        width: 100%;
    }
    
    .cart-page-actions {
        flex-direction: column;
    }
}

/* Fullscreen Image Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    /* Mobile optimizations */
    -webkit-overflow-scrolling: touch;
    touch-action: manipulation;
    overscroll-behavior: contain;
}

.fullscreen-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fullscreen-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: background 0.3s ease;
}

.fullscreen-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.fullscreen-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.3s ease;
}

.fullscreen-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.fullscreen-prev {
    left: 30px;
}

.fullscreen-next {
    right: 30px;
}

.fullscreen-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    z-index: 10000;
}

/* Mobile-specific fullscreen styles */
@media (max-width: 768px) {
    .fullscreen-modal {
        /* Ensure fullscreen on mobile */
        width: 100vw;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile browsers */
        background-color: rgba(0, 0, 0, 0.98);
    }
    
    .fullscreen-img {
        max-width: 95%;
        max-height: 85%;
        /* Ensure touch-friendly on mobile */
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .fullscreen-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 24px;
        /* Larger touch target for mobile */
        min-width: 44px;
        min-height: 44px;
    }
    
    .fullscreen-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
        /* Larger touch targets for mobile */
        min-width: 50px;
        min-height: 50px;
    }
    
    .fullscreen-prev {
        left: 15px;
    }
    
    .fullscreen-next {
        right: 15px;
    }
    
    .fullscreen-counter {
        bottom: 20px;
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Payment Modal */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.payment-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin: 20px auto;
    padding: 0;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideIn 0.4s ease-out;
}

.payment-header {
    background: linear-gradient(135deg, #007AFF 0%, #0056CC 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.payment-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.payment-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.payment-body {
    padding: 30px;
}

.payment-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-summary h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.payment-cart-items {
    margin-bottom: 20px;
}

.payment-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.payment-cart-item:last-child {
    border-bottom: none;
}

.payment-item-info {
    flex: 1;
}

.payment-item-name {
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 5px;
}

.payment-item-quantity {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.payment-item-price {
    font-weight: 600;
    font-size: 16px;
    color: #007AFF;
}

.payment-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

.payment-total-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.payment-total-amount {
    font-size: 22px;
    font-weight: 700;
    color: #007AFF;
}

.payment-section {
    margin-bottom: 30px;
}

.payment-section h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #007AFF;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.card-element {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.card-element:focus-within {
    border-color: #007AFF;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.card-errors {
    color: #ff3b30;
    font-size: 14px;
    margin-top: 10px;
    min-height: 20px;
}

.shipping-toggle {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #007AFF;
    border-color: #007AFF;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.shipping-section {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.shipping-section.show {
    opacity: 1;
    max-height: 800px;
}

.payment-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cancel-payment-button {
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-payment-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.complete-payment-button {
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #007AFF 0%, #0056CC 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 180px;
}

.complete-payment-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
}

.complete-payment-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.payment-button-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Payment Modal Styles */
@media (max-width: 768px) {
    .payment-modal-content {
        margin: 10px;
        width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
        overflow-y: auto;
    }
    
    .payment-header {
        padding: 20px;
    }
    
    .payment-header h2 {
        font-size: 20px;
    }
    
    .payment-body {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .payment-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .cancel-payment-button,
    .complete-payment-button {
        width: 100%;
        padding: 18px;
        font-size: 16px;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Product Info Modal */
.product-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-info-modal.show {
    opacity: 1;
    visibility: visible;
}

.product-info-modal-content {
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 0.5px solid rgba(60, 60, 67, 0.29);
    border-radius: 18px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 
                0 0 20px rgba(255, 255, 255, 0.3),
                0 0 40px rgba(255, 255, 255, 0.2),
                0 0 80px rgba(255, 255, 255, 0.1);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.product-info-modal.show .product-info-modal-content {
    transform: scale(1);
}

.product-info-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 22px;
}

.product-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 44px;
    padding: 12px 0;
}

.product-info-header h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 8px rgba(173, 216, 230, 0.8),
                 0 0 16px rgba(135, 206, 250, 0.6),
                 0 0 24px rgba(135, 206, 250, 0.4);
}

.product-info-close {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.product-info-body {
    padding: 16px 0 24px;
    text-align: center;
}

.modal-product-description {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.47059;
    letter-spacing: -0.022em;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 100px 20px 100px;
    background: linear-gradient(180deg, #0d0d0f 0%, #1a1a1c 50%, #0d0d0f 80%, transparent 100%);
    position: relative;
    margin-top: -80px;
    overflow: hidden;
}

/* Features Section Twinkling Stars */
.features-twinkling-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.features-twinkling-star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 12px #ffffff, 0 0 24px rgba(255, 255, 255, 0.8), 0 0 36px rgba(255, 255, 255, 0.4);
    animation: featuresTwinkle 3s ease-in-out infinite;
}

.features-twinkling-star.size-1 {
    width: 2px;
    height: 2px;
}

.features-twinkling-star.size-2 {
    width: 3px;
    height: 3px;
}

.features-twinkling-star.size-3 {
    width: 4px;
    height: 4px;
}

.features-twinkling-star.blue {
    background: rgba(173, 216, 230, 1);
    box-shadow: 0 0 16px rgba(173, 216, 230, 1), 0 0 32px rgba(173, 216, 230, 0.8), 0 0 48px rgba(173, 216, 230, 0.4);
}

.features-twinkling-star.sky-blue {
    background: rgba(135, 206, 250, 1);
    box-shadow: 0 0 16px rgba(135, 206, 250, 1), 0 0 32px rgba(135, 206, 250, 0.8), 0 0 48px rgba(135, 206, 250, 0.4);
}

@keyframes featuresTwinkle {
    0%, 100% {
        opacity: 0.1;
        transform: scale(0.7);
    }
    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}

.features-twinkling-star.delay-1 { animation-delay: 0.3s; }
.features-twinkling-star.delay-2 { animation-delay: 0.8s; }
.features-twinkling-star.delay-3 { animation-delay: 1.3s; }
.features-twinkling-star.delay-4 { animation-delay: 1.8s; }
.features-twinkling-star.delay-5 { animation-delay: 2.3s; }
.features-twinkling-star.delay-6 { animation-delay: 2.8s; }
.features-twinkling-star.delay-7 { animation-delay: 3.3s; }
.features-twinkling-star.delay-8 { animation-delay: 3.8s; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    max-width: 800px;
    margin: 30px auto 0;
    grid-template-rows: 1fr;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 18px;
    background: #3a3a3c;
    transition: all 0.3s ease;
    border: 1px solid rgba(84, 84, 88, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(173, 216, 230, 0.4),
                0 0 50px rgba(135, 206, 250, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(173, 216, 230, 0.6),
                0 0 70px rgba(135, 206, 250, 0.5);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #424245;
}

.feature-card h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f2f2f7;
    line-height: 1.19048;
    letter-spacing: 0.011em;
    text-shadow: 0 0 10px rgba(173, 216, 230, 0.8),
                 0 0 20px rgba(135, 206, 250, 0.6),
                 0 0 30px rgba(135, 206, 250, 0.4);
}

.feature-card p {
    color: #86868b;
    line-height: 1.47059;
    font-size: 17px;
    letter-spacing: -0.022em;
    font-weight: 400;
}

/* Reviews Section */
.reviews-section {
    padding: 50px 20px 80px;
    background: linear-gradient(180deg, transparent 0%, #0d0d0f 20%, #1a1a1c 50%, #0d0d0f 100%);
    position: relative;
    overflow: hidden;
    margin-top: -100px;
}

/* Reviews Section Twinkling Stars */
.reviews-twinkling-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.reviews-twinkling-star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 12px #ffffff, 0 0 24px rgba(255, 255, 255, 0.8), 0 0 36px rgba(255, 255, 255, 0.4);
    animation: reviewsTwinkle 3s ease-in-out infinite;
}

.reviews-twinkling-star.size-1 {
    width: 2px;
    height: 2px;
}

.reviews-twinkling-star.size-2 {
    width: 3px;
    height: 3px;
}

.reviews-twinkling-star.size-3 {
    width: 4px;
    height: 4px;
}

.reviews-twinkling-star.blue {
    background: rgba(173, 216, 230, 1);
    box-shadow: 0 0 16px rgba(173, 216, 230, 1), 0 0 32px rgba(173, 216, 230, 0.8), 0 0 48px rgba(173, 216, 230, 0.4);
}

.reviews-twinkling-star.sky-blue {
    background: rgba(135, 206, 250, 1);
    box-shadow: 0 0 16px rgba(135, 206, 250, 1), 0 0 32px rgba(135, 206, 250, 0.8), 0 0 48px rgba(135, 206, 250, 0.4);
}

@keyframes reviewsTwinkle {
    0%, 100% {
        opacity: 0.1;
        transform: scale(0.7);
    }
    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}

.reviews-twinkling-star.delay-1 { animation-delay: 0.3s; }
.reviews-twinkling-star.delay-2 { animation-delay: 0.8s; }
.reviews-twinkling-star.delay-3 { animation-delay: 1.3s; }
.reviews-twinkling-star.delay-4 { animation-delay: 1.8s; }
.reviews-twinkling-star.delay-5 { animation-delay: 2.3s; }
.reviews-twinkling-star.delay-6 { animation-delay: 2.8s; }
.reviews-twinkling-star.delay-7 { animation-delay: 3.3s; }
.reviews-twinkling-star.delay-8 { animation-delay: 3.8s; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: #3a3a3c;
    border-radius: 18px;
    padding: 12px 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(173, 216, 230, 0.4),
                0 0 50px rgba(135, 206, 250, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(84, 84, 88, 0.4);
}


.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(173, 216, 230, 0.6),
                0 0 70px rgba(135, 206, 250, 0.5);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

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

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #007AFF, #0051D0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 17px;
    font-weight: 600;
    color: #f2f2f7;
    margin: 0 0 4px 0;
    line-height: 1.23536;
    letter-spacing: -0.022em;
    text-shadow: 0 0 8px rgba(173, 216, 230, 0.8),
                 0 0 16px rgba(135, 206, 250, 0.6),
                 0 0 24px rgba(135, 206, 250, 0.4);
}

.reviewer-location {
    font-size: 15px;
    color: #86868b;
    margin: 0;
    line-height: 1.33337;
    letter-spacing: -0.016em;
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 16px;
    color: #86868b;
    transition: all 0.3s ease;
    line-height: 1;
}

.star.filled {
    color: #FFD60A;
    text-shadow: 0 1px 2px rgba(255, 214, 10, 0.3);
    animation: starGlow 3s ease-in-out infinite;
}

@keyframes starGlow {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 2px rgba(255, 214, 10, 0.5)); 
    }
    50% { 
        filter: brightness(1.2) drop-shadow(0 0 4px rgba(255, 214, 10, 0.8)); 
    }
}

.review-content {
    margin-bottom: 20px;
}

.review-content p {
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -0.022em;
    color: #f2f2f7;
    margin: 0;
    font-weight: 400;
    font-style: italic;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(84, 84, 88, 0.3);
}

.review-product {
    font-size: 13px;
    font-weight: 500;
    color: #007AFF;
    background: rgba(0, 122, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    line-height: 1.38462;
    letter-spacing: -0.008em;
}

.review-date {
    font-size: 13px;
    color: #86868b;
    line-height: 1.38462;
    letter-spacing: -0.008em;
}

/* Footer */
footer {
    background: #0d0d0f;
    color: #86868b;
    padding: 20px;
    text-align: center;
    border-top: none;
    margin-top: 0px;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: linear-gradient(45deg, #34C759, #30D158);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(52, 199, 89, 0.3);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1001;
}

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


/* Mobile Menu Popup */
.mobile-menu-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.mobile-menu-popup.show {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-popup.show .mobile-menu-content {
    transform: scale(1);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 30px;
    position: relative;
    width: 320px;
    max-width: 90vw;
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 16px;
    border: 0.5px solid rgba(84, 84, 88, 0.4);
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(173, 216, 230, 0.3),
        0 6px 24px rgba(135, 206, 250, 0.2);
}

/* Desktop styling for mobile menu */
@media (min-width: 768px) {
    .mobile-menu-content {
        width: 420px;
        padding: 40px;
        border-radius: 20px;
    }
}

.mobile-menu-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 4px rgba(173, 216, 230, 0.4)) 
            drop-shadow(0 2px 8px rgba(135, 206, 250, 0.3))
            drop-shadow(0 3px 12px rgba(100, 149, 237, 0.2));
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    margin-top: 12px;
}

.mobile-menu-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: -0.022em;
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    border-top: 0.5px solid rgba(84, 84, 88, 0.3);
    padding-top: 16px;
}

.mobile-cta-button {
    background: #424245;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 980px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 2px 8px rgba(173, 216, 230, 0.4),
        0 4px 16px rgba(135, 206, 250, 0.3),
        0 6px 24px rgba(100, 149, 237, 0.2);
    text-shadow: 
        0 1px 4px rgba(173, 216, 230, 0.3),
        0 2px 8px rgba(135, 206, 250, 0.2),
        0 3px 12px rgba(100, 149, 237, 0.1);
}

.mobile-cta-button:hover {
    background: #515154;
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        0 4px 12px rgba(173, 216, 230, 0.6),
        0 8px 24px rgba(135, 206, 250, 0.5),
        0 12px 36px rgba(100, 149, 237, 0.4);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .search-button {
        display: flex;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .probuds-text {
        font-size: 20px;
        text-shadow: 
            0 1px 4px rgba(173, 216, 230, 0.4),
            0 2px 8px rgba(135, 206, 250, 0.3),
            0 3px 12px rgba(100, 149, 237, 0.2);
    }
    
    .probuds-logo {
        padding: 8px;
        margin-left: -8px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .search-button {
        display: flex;
    }
    
    .mobile-menu-button {
        display: flex;
    }
}

/* Desktop Layout Improvements */
@media (min-width: 769px) {
    .hero {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 120px 60px 60px;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .hero-content {
        flex: 1;
        max-width: 600px;
        margin-right: 60px;
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 72px;
        line-height: 1.05;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 32px;
        margin-bottom: 32px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 19px;
        margin-top: 16px;
    }
    
    .hero-image {
        flex: 1;
        margin-top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .airpods-showcase {
        width: 550px;
        height: 550px;
    }
    
    .products-section {
        padding: 160px 60px 60px;
        margin-top: -120px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 40px;
        margin-top: 60px;
        max-width: 1200px;
    }
    
    .features-section {
        padding: 120px 60px 120px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 50px;
        margin-top: 60px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .reviews-section {
        padding: 80px 60px 100px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 40px;
        margin-top: 60px;
        max-width: 1400px;
    }
    
    .section-title {
        font-size: 56px;
        margin-bottom: 24px;
        white-space: nowrap;
    }
    
    .mobile-break {
        display: none;
    }
    
    .section-title .line-break {
        display: inline;
    }
    
    .container {
        max-width: 1400px;
    }
    
    /* Enhanced desktop button styling */
    .product-actions {
        margin-top: 24px;
    }
    
    .buy-button.primary {
        background: linear-gradient(135deg, #007AFF, #00D4FF);
        border: none;
        color: white;
        cursor: pointer;
        font-weight: 600;
        letter-spacing: -0.015em;
        box-shadow: 0 3px 15px rgba(0, 122, 255, 0.4);
        transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    }
    
    .buy-button.primary:hover {
        background: linear-gradient(135deg, #0051d5, #00b8ff);
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(0, 122, 255, 0.6);
    }
    
    .buy-button.primary:active {
        transform: translateY(0);
        box-shadow: 0 3px 12px rgba(0, 122, 255, 0.5);
    }
    
    /* Enhanced desktop More Info button styling */
    .more-info-button {
        position: relative;
        z-index: 15;
        pointer-events: auto;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
        border: 1.5px solid rgba(255, 255, 255, 0.4);
    }
    
    .more-info-button:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
    }
    
    .more-info-button:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    }
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .product-card {
        padding: 25px 20px;
        background: linear-gradient(135deg, #3a3a3c 0%, #2c2c2e 100%);
        border: 1px solid rgba(84, 84, 88, 0.6);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }
    
    .product-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
                    0 0 50px rgba(173, 216, 230, 0.6),
                    0 0 100px rgba(135, 206, 250, 0.3);
        border-color: rgba(135, 206, 250, 0.8);
    }
    
    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, 
            rgba(135, 206, 250, 0.1) 0%, 
            rgba(173, 216, 230, 0.05) 50%, 
            transparent 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
    }
    
    .product-card:hover::before {
        opacity: 1;
    }
    
    .product-info {
        position: relative;
        z-index: 2;
    }
    
    .product-name {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .product-price {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .product-buttons {
        gap: 16px;
    }
    
    .more-info-button, .buy-button {
        padding: 14px 28px;
        font-size: 16px;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .feature-card {
        padding: 60px 40px;
        background: linear-gradient(135deg, #3a3a3c 0%, #2c2c2e 100%);
        border: 1px solid rgba(84, 84, 88, 0.6);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }
    
    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                    0 0 40px rgba(173, 216, 230, 0.5);
        border-color: rgba(135, 206, 250, 0.7);
    }
    
    .feature-icon {
        font-size: 48px;
        margin-bottom: 24px;
    }
    
    .feature-card h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .feature-card p {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .review-card {
        padding: 36px 32px;
        background: linear-gradient(135deg, #3a3a3c 0%, #2c2c2e 100%);
        border: 1px solid rgba(84, 84, 88, 0.6);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .review-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                    0 0 30px rgba(173, 216, 230, 0.4);
        border-color: rgba(135, 206, 250, 0.6);
    }
    
    .reviewer-avatar {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    
    .reviewer-name {
        font-size: 20px;
    }
    
    .reviewer-location {
        font-size: 16px;
    }
    
    .review-content p {
        font-size: 18px;
        line-height: 1.6;
    }
    
    .star {
        font-size: 20px;
    }
    
    /* Desktop Navbar Improvements */
    .apple-navbar {
        padding: 0 60px;
    }
    
    .apple-nav-content {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .probuds-text {
        font-size: 24px;
    }
    
    .about-us-text {
        font-size: 18px;
    }
    
    .apple-nav-menu {
        gap: 32px;
    }
    
    .nav-link {
        font-size: 17px;
        padding: 8px 16px;
    }
    
    /* Desktop Footer */
    footer {
        padding: 30px 20px;
        text-align: center;
        background: linear-gradient(180deg, #0d0d0f 0%, #000000 100%);
        border-top: 1px solid rgba(84, 84, 88, 0.3);
    }
    
    footer .container {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    footer p {
        font-size: 16px;
        color: #86868b;
    }
    
    /* Desktop Modal Improvements */
    .about-us-modal-content {
        max-width: 900px;
        max-height: 85vh;
        margin: 5vh auto;
    }
    
    .about-us-modal-header {
        padding: 40px 50px 20px;
    }
    
    .about-us-modal-title {
        font-size: 42px;
    }
    
    .about-us-modal-body {
        padding: 0 50px 50px;
    }
    
    .about-section-title {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .about-paragraph {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .about-features {
        gap: 32px;
        margin-top: 40px;
    }
    
    .about-feature {
        padding: 32px;
    }
    
    .about-feature h4 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .about-feature p {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* Tablet styles (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 90%;
        padding: 0 32px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .hero-feature {
        font-size: 14px;
    }
    
    .apple-navbar {
        padding: 0 24px;
    }
}

/* Small tablet styles (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        max-width: 95%;
        padding: 0 24px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.15;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    
    .product-card {
        min-height: 380px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        padding: 16px 32px;
    }
}

/* Mobile Responsive Design */
@media (max-width: 480px) {
    
    /* Mobile navbar adjustments */
    .about-us-text {
        font-size: 16px;
    }
    
    .container {
        max-width: 100%;
        padding: 0 var(--spacing-md);
        margin: 0 auto;
    }
    
    /* Use CSS clamp for fluid typography */
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-sm);
    }
    
    /* Better mobile spacing */
    section {
        padding-top: var(--spacing-2xl);
        padding-bottom: var(--spacing-2xl);
    }
    
    .hero {
        min-height: 70vh;
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero-quality-text {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .hero-feature {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        min-height: 420px;
        margin: 0 auto;
        max-width: 320px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        min-height: auto;
        padding: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .review-card {
        margin: 0 auto;
        max-width: 320px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .apple-navbar {
        padding: 0 16px;
    }
    
    .apple-nav-container {
        height: 44px;
    }
    
    .probuds-text {
        font-size: 18px;
    }
    
    .desktop-text {
        display: none;
    }
    
    .mobile-text {
        display: inline;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        min-height: 85vh;
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        padding: 0 10px;
    }
    
    .hero-quality-text {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .mobile-break {
        display: block;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .feature-card {
        min-height: 180px;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .more-info-button, .buy-button {
        padding: 8px 16px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .product-image-slider {
        height: 220px;
    }
    
    /* Adjust ProBuds 2nd Gen image positioning on mobile */
    .product-card[data-product="airpods-pro-2"] .slide-image {
        object-position: center top;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .airpods-showcase {
        width: 350px;
        height: 350px;
        margin-top: -20px;
    }
    
    .hero-airpods-image {
        max-width: 90%;
        max-height: 90%;
    }
    
    .transparent-airpod-svg {
        width: 70px;
        height: 95px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 24px 20px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 2s infinite;
}

/* About Us Page Styles */
.about-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(180deg, #000000 0%, #1a1a1c 50%, #0d0d0f 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-twinkling-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.about-shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, #ffffff, #87ceeb);
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
}

.about-shooting-star1 {
    top: 20%;
    left: 10%;
    animation: shootingStar 8s linear infinite;
    animation-delay: 0s;
}

.about-shooting-star2 {
    top: 60%;
    left: 80%;
    animation: shootingStar 6s linear infinite;
    animation-delay: 3s;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #87ceeb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-story {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0d0d0f 0%, #1a1a1c 50%, #0d0d0f 100%);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    z-index: 2;
    position: relative;
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1a1a1c 0%, #2a2a2c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-emoji {
    font-size: 8rem;
}

.about-process {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0d0d0f 0%, #1a1a1c 50%, #0d0d0f 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #1a1a1c 0%, #2a2a2c 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(135, 206, 250, 0.2);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #87ceeb 0%, #4169e1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 20px;
}

.process-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.process-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.about-values {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0d0d0f 0%, #1a1a1c 50%, #0d0d0f 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #1a1a1c 0%, #2a2a2c 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(135, 206, 250, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.value-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.about-cta {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0d0d0f 0%, #1a1a1c 50%, #0d0d0f 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #87ceeb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .about-emoji {
        font-size: 5rem;
    }
    
    .process-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* Floating Earbuds Animation */
.floating-earbuds {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 1;
    animation: floatEarbuds 8s ease-in-out infinite;
}

.floating-earbuds1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.floating-earbuds2 {
    top: 70%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.floating-earbuds3 {
    top: 40%;
    right: 25%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.floating-earbuds4 {
    top: 20%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.floating-earbuds5 {
    top: 80%;
    left: 5%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.floating-earbuds6 {
    top: 25%;
    right: 10%;
    animation-delay: 5s;
    animation-duration: 7s;
}

.floating-earbuds7 {
    top: 60%;
    left: 15%;
    animation-delay: 2.5s;
    animation-duration: 8s;
}

@keyframes floatEarbuds {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.4;
    }
}

/* Mobile responsive for floating earbuds */
@media (max-width: 768px) {
    .floating-earbuds {
        font-size: 1.5rem;
    }
    
    .floating-earbuds1 {
        top: 10%;
        left: 5%;
    }
    
    .floating-earbuds2 {
        top: 75%;
        right: 10%;
    }
    
    .floating-earbuds3 {
        top: 45%;
        right: 20%;
    }
    
    .floating-earbuds4 {
        top: 15%;
        left: 75%;
    }
    
    .floating-earbuds5 {
        top: 85%;
        left: 10%;
    }
    
    .floating-earbuds6 {
        top: 30%;
        right: 5%;
    }
    
    .floating-earbuds7 {
        top: 65%;
        left: 20%;
    }
}

/* Floating AirPods Animation */
.floating-airpods {
    position: absolute;
    font-size: 1.8rem;
    color: rgba(135, 206, 250, 0.4);
    pointer-events: none;
    z-index: 1;
    animation: floatAirpods 10s ease-in-out infinite;
}

.floating-airpods1 {
    top: 25%;
    left: 20%;
    animation-delay: 1.5s;
    animation-duration: 7s;
}

.floating-airpods2 {
    top: 60%;
    right: 30%;
    animation-delay: 3.5s;
    animation-duration: 9s;
}

.floating-airpods3 {
    top: 35%;
    left: 70%;
    animation-delay: 0.5s;
    animation-duration: 8s;
}

.floating-airpods4 {
    top: 75%;
    right: 20%;
    animation-delay: 4s;
    animation-duration: 6s;
}

.floating-airpods5 {
    top: 45%;
    left: 25%;
    animation-delay: 2s;
    animation-duration: 7.5s;
}

.floating-airpods6 {
    top: 55%;
    right: 40%;
    animation-delay: 5s;
    animation-duration: 8.5s;
}

@keyframes floatAirpods {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.3;
    }
    20% {
        transform: translateY(-15px) translateX(10px) rotate(72deg);
        opacity: 0.5;
    }
    40% {
        transform: translateY(-30px) translateX(-5px) rotate(144deg);
        opacity: 0.4;
    }
    60% {
        transform: translateY(-20px) translateX(15px) rotate(216deg);
        opacity: 0.5;
    }
    80% {
        transform: translateY(-10px) translateX(-10px) rotate(288deg);
        opacity: 0.4;
    }
}

/* Mobile responsive for floating airpods */
@media (max-width: 768px) {
    .floating-airpods {
        font-size: 1.3rem;
    }
    
    .floating-airpods1 {
        top: 20%;
        left: 15%;
    }
    
    .floating-airpods2 {
        top: 65%;
        right: 25%;
    }
    
    .floating-airpods3 {
        top: 40%;
        left: 65%;
    }
    
    .floating-airpods4 {
        top: 80%;
        right: 15%;
    }
    
    .floating-airpods5 {
        top: 50%;
        left: 20%;
    }
    
    .floating-airpods6 {
        top: 60%;
        right: 35%;
    }
}

/* About Us Page Starfield Effects - Matching main site style */
.about-starfield-layer3 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(3px 3px at 3% 8%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 13% 33%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(6px 6px at 23% 58%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 33% 83%, rgba(135, 206, 250, 0.9), transparent),
        radial-gradient(4px 4px at 43% 8%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(2px 2px at 53% 33%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(5px 5px at 63% 58%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(1px 1px at 73% 83%, rgba(173, 216, 230, 0.9), transparent),
        radial-gradient(3px 3px at 83% 8%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 93% 33%, rgba(135, 206, 250, 1), transparent);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 1;
    animation: breathe 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.about-starfield-layer4 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(4px 4px at 6% 16%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(7px 7px at 16% 41%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 26% 66%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(6px 6px at 36% 91%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(1px 1px at 46% 16%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(5px 5px at 56% 41%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(3px 3px at 66% 66%, rgba(135, 206, 250, 1), transparent),
        radial-gradient(2px 2px at 76% 91%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(4px 4px at 86% 16%, rgba(173, 216, 230, 1), transparent),
        radial-gradient(1px 1px at 96% 41%, rgba(135, 206, 250, 0.9), transparent);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 1;
    animation: breathe 8s ease-in-out infinite;
    animation-delay: 1s;
    pointer-events: none;
    z-index: 1;
}

/* About Us twinkling container */
.about-twinkling-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.about-twinkling-star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 12px #ffffff, 0 0 24px rgba(255, 255, 255, 0.8), 0 0 36px rgba(255, 255, 255, 0.4);
    animation: aboutTwinkle 3s ease-in-out infinite;
}

.about-twinkling-star.size-1 {
    width: 2px;
    height: 2px;
}

.about-twinkling-star.size-2 {
    width: 3px;
    height: 3px;
}

.about-twinkling-star.size-3 {
    width: 4px;
    height: 4px;
}

.about-twinkling-star.blue {
    background: rgba(173, 216, 230, 1);
    box-shadow: 0 0 16px rgba(173, 216, 230, 1), 0 0 32px rgba(173, 216, 230, 0.8), 0 0 48px rgba(173, 216, 230, 0.4);
}

.about-twinkling-star.sky-blue {
    background: rgba(135, 206, 250, 1);
    box-shadow: 0 0 16px rgba(135, 206, 250, 1), 0 0 32px rgba(135, 206, 250, 0.8), 0 0 48px rgba(135, 206, 250, 0.4);
}

@keyframes aboutTwinkle {
    0%, 100% {
        opacity: 0.1;
        transform: scale(0.7);
    }
    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}

.about-twinkling-star.delay-1 { animation-delay: 0.3s; }
.about-twinkling-star.delay-2 { animation-delay: 0.8s; }
.about-twinkling-star.delay-3 { animation-delay: 1.3s; }
.about-twinkling-star.delay-4 { animation-delay: 1.8s; }
.about-twinkling-star.delay-5 { animation-delay: 2.3s; }
.about-twinkling-star.delay-6 { animation-delay: 2.8s; }
.about-twinkling-star.delay-7 { animation-delay: 3.3s; }
.about-twinkling-star.delay-8 { animation-delay: 3.8s; }

/* About Us Modal Styles */
.about-us-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-us-modal.show {
    opacity: 1;
}

.about-us-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(135deg, #1a1a1c 0%, #2a2a2c 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-us-modal.show .about-us-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.about-us-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-us-modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #87ceeb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-us-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.about-us-modal-body {
    padding: 30px;
}

.about-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #87ceeb;
    margin-bottom: 16px;
    margin-top: 24px;
}

.about-section-title:first-child {
    margin-top: 0;
}

.about-paragraph {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(135, 206, 250, 0.1) 0%, rgba(173, 216, 230, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(135, 206, 250, 0.2);
}

.about-feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.about-feature-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.about-feature-content p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Mobile responsive for About Us modal */
@media (max-width: 768px) {
    .about-us-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .about-us-modal-header {
        padding: 20px 24px 16px;
    }
    
    .about-us-modal-body {
        padding: 24px;
    }
    
    .about-us-modal-title {
        font-size: 20px;
    }
    
    .about-features {
        gap: 16px;
    }
    
    .about-feature {
        padding: 16px;
    }
}

/* Write Review Button and Modal */
.reviews-footer {
    text-align: center;
    margin-top: 40px;
}

.write-review-button {
    background: #424245;
    color: white;
    border: none;
    padding: 12px 23px;
    font-size: 17px;
    font-weight: 400;
    border-radius: 980px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.23536;
    letter-spacing: -0.022em;
    outline: none;
    box-shadow: 
        0 2px 8px rgba(173, 216, 230, 0.4),
        0 4px 16px rgba(135, 206, 250, 0.3),
        0 6px 24px rgba(100, 149, 237, 0.2);
    text-shadow: 
        0 1px 4px rgba(173, 216, 230, 0.3),
        0 2px 8px rgba(135, 206, 250, 0.2),
        0 3px 12px rgba(100, 149, 237, 0.1);
}

.write-review-button:hover {
    background: #515154;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 4px 12px rgba(173, 216, 230, 0.6),
        0 8px 24px rgba(135, 206, 250, 0.5),
        0 12px 36px rgba(100, 149, 237, 0.4);
    text-shadow: 
        0 2px 6px rgba(173, 216, 230, 0.5),
        0 4px 12px rgba(135, 206, 250, 0.4),
        0 6px 18px rgba(100, 149, 237, 0.3);
}

/* Payment Modal */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.payment-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.payment-modal-content {
    background: linear-gradient(135deg, #1c1c1e 0%, #2c2c2e 100%);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(84, 84, 88, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.payment-container {
    padding: 0;
}

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(84, 84, 88, 0.3);
}

.payment-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.payment-close {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.payment-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.payment-body {
    padding: 32px;
}

.order-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-summary h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.payment-cart-items {
    margin-bottom: 16px;
}

.payment-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-cart-item:last-child {
    border-bottom: none;
}

.payment-item-info {
    flex: 1;
}

.payment-item-name {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 4px;
}

.payment-item-quantity {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.payment-item-price {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.payment-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 0 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.payment-total .total-amount {
    color: #ffffff !important;
}

.payment-total .total-label {
    color: #ffffff !important;
}

.payment-section {
    margin-bottom: 32px;
}

.payment-section h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.payment-form .form-group {
    margin-bottom: 20px;
}

.payment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.payment-form label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.payment-form input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.payment-form input:focus {
    outline: none;
    border-color: #007AFF;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.2);
}

.payment-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.payment-actions {
    display: flex;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(84, 84, 88, 0.3);
}

.cancel-payment-button {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-payment-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.complete-payment-button {
    flex: 2;
    padding: 16px 24px;
    background: linear-gradient(135deg, #007AFF, #00D4FF);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.complete-payment-button:hover {
    background: linear-gradient(135deg, #0051d5, #00b8ff);
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.complete-payment-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.payment-button-loading {
    display: none;
}

/* Enhanced mobile experience for all screen sizes */
@media (max-width: 480px) {
    /* Improved touch targets */
    .buy-button, .more-info-button {
        min-height: 44px;
        font-size: 14px;
        padding: 12px 20px;
    }
    
    /* Better modal sizing */
    .product-info-modal-content,
    .about-us-modal-content,
    .write-review-modal-content {
        width: 95vw;
        max-height: 90vh;
        margin: 5vh 2.5vw;
        border-radius: 16px;
    }
    
    /* Improved form inputs */
    input:not([type="hidden"]), textarea, select {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 16px;
        border-radius: 8px;
    }
    
    /* Better spacing for mobile */
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    /* Optimized cart popup */
    .cart-popup-content {
        width: 95vw;
        max-height: 90vh;
        margin: 5vh 2.5vw;
        border-radius: 16px;
    }
    
    .cart-item {
        padding: 12px;
        gap: 12px;
    }
    
    .cart-item-image {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    /* Improved slider controls */
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
        border-radius: 18px;
    }
    
    .slider-dots {
        gap: 8px;
        margin-top: 12px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Better responsive grid for hero features */
    .hero-features {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-bottom: 24px !important;
    }
}

/* Tablet-specific improvements */
@media (min-width: 481px) and (max-width: 768px) {
    .product-card {
        min-height: 420px;
    }
    
    .product-actions {
        flex-direction: row;
        gap: 12px;
    }
    
    .buy-button, .more-info-button {
        flex: 1;
        min-height: 44px;
    }
    
    /* Better tablet hero features layout */
    .hero-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
}

/* Mobile responsiveness for payment modal */
@media (max-width: 768px) {
    .payment-modal-content {
        width: 95%;
        margin: 20px;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .payment-header {
        padding: 20px 24px;
    }
    
    .payment-body {
        padding: 24px;
    }
    
    .payment-form .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .cancel-payment-button,
    .complete-payment-button {
        flex: none;
    }
}

.write-review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.write-review-modal.show {
    opacity: 1;
}

.write-review-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.write-review-container {
    padding: 0;
}

.write-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.write-review-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.write-review-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.write-review-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.write-review-body {
    padding: 32px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007AFF;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.star-rating-input {
    display: flex;
    gap: 5px;
    margin: 5px 0;
}

.star-input {
    font-size: 24px;
    color: #ffd700;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.star-input:hover {
    transform: scale(1.2);
}

.star-input.inactive {
    color: rgba(255, 255, 255, 0.3);
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

.cancel-button {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-button:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.submit-review-button {
    background: linear-gradient(135deg, #007AFF 0%, #0051D0 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-review-button:hover {
    background: linear-gradient(135deg, #0051D0 0%, #007AFF 100%);
    transform: translateY(-1px);
}

/* Mobile responsive for Write Review Modal */
@media (max-width: 768px) {
    .write-review-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .write-review-header {
        padding: 20px 24px 16px;
    }
    
    .write-review-body {
        padding: 24px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .cancel-button,
    .submit-review-button {
        width: 100%;
        justify-content: center;
    }
}

/* NEW LAYOUT CSS STYLES */

/* Hero Container - Side by Side Layout */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 60px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #d1d1d6;
}

.feature-icon {
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.cta-button.secondary {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Mobile Hero Layout */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .airpods-showcase {
        width: 300px;
        height: 300px;
    }
    
    .hero-airpods-image {
        max-width: 90%;
        max-height: 90%;
    }
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #007AFF, #00D4FF);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: #8e8e93;
    margin-top: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Products Grid Enhanced */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.product-card.featured {
    transform: scale(1.02);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #FF6B35, #FF9500);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.product-header {
    padding: 0 24px 16px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.product-rating .star {
    color: #FFD60A;
    font-size: 16px;
}

.rating-text {
    font-size: 14px;
    color: #8e8e93;
}

.product-features {
    padding: 0 24px 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #d1d1d6;
}

.feature-item .feature-icon {
    font-size: 16px;
}

.product-pricing {
    padding: 0 24px 20px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.original-price {
    font-size: 16px;
    color: #8e8e93;
    text-decoration: line-through;
}

.current-price {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.discount {
    background: linear-gradient(135deg, #34C759, #30D158);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.product-actions {
    padding: 0 24px 24px;
    display: flex;
    gap: 12px;
}

.buy-button.primary {
    background: linear-gradient(135deg, #007AFF, #00D4FF);
    flex: 2;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 122, 255, 0.3);
    z-index: 20;
    pointer-events: auto;
    cursor: pointer;
}

.buy-button.primary:hover {
    background: linear-gradient(135deg, #0051d5, #00b8ff);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.5);
}

.buy-button.primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.4);
}

.more-info-button {
    flex: 1;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 12px 20px;
    position: relative;
    z-index: 15;
    pointer-events: auto;
    cursor: pointer;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.more-info-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Features Grid Enhanced */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.feature-card.highlight {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(0, 122, 255, 0.3);
    transform: scale(1.02);
}

.feature-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    margin-bottom: 20px;
}

.feature-card .feature-icon {
    font-size: 28px;
}

.feature-stats {
    margin-top: 16px;
}

.stat {
    display: inline-block;
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Reviews Enhanced */
.review-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-details {
    margin-top: 8px;
}

.stat-stars {
    color: #FFD60A;
    font-size: 16px;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #8e8e93;
}

/* Reviews Statistics */
.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007AFF;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(0, 122, 255, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: #8e8e93;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verified-customer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #007AFF 0%, #00D4FF 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.review-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(0, 122, 255, 0.3);
}

.review-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #34C759, #30D158);
    color: white;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.reviewer-verified {
    font-size: 12px;
    color: #34C759;
    margin-top: 4px;
}

.review-quote {
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
}

.reviews-footer {
    text-align: center;
    margin-top: 60px;
}

.reviews-note {
    margin-top: 16px;
    font-size: 14px;
    color: #8e8e93;
}

/* Large screens (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: 4rem;
        line-height: 1.05;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .product-card {
        min-height: 500px;
    }
    
    .feature-card {
        min-height: 280px;
    }
}

/* Ultra-wide screens (1920px+) */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .products-grid {
        gap: 40px;
    }
    
    .features-grid {
        gap: 40px;
    }
}

/* Mobile Responsive for New Layout */
@media (max-width: 480px) {
    .hero-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 0 16px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card.highlight {
        transform: none;
    }
    
    .review-stats {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .review-card.featured {
        grid-column: span 1;
    }
    
    .stat-item {
        padding: 0 20px;
    }
    
    /* Mobile navbar scroll states - Override hero mode hiding */
    .apple-navbar.mobile-scrolled {
        transform: translateY(0);
        opacity: 1;
    }
    
    .apple-navbar.mobile-scrolled .apple-nav-menu {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-link.active {
        color: #87ceeb !important;
        background: linear-gradient(135deg, rgba(135, 206, 250, 0.2) 0%, rgba(173, 216, 230, 0.2) 100%) !important;
        border: 1px solid rgba(135, 206, 250, 0.5) !important;
        box-shadow: 0 2px 12px rgba(135, 206, 250, 0.4) !important;
        text-shadow: 0 0 8px rgba(135, 206, 250, 0.6) !important;
        font-weight: 600 !important;
        animation: popUpText 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
    
    @keyframes popUpText {
        0% {
            transform: scale(0.8) translateY(10px);
            opacity: 0;
        }
        50% {
            transform: scale(1.1) translateY(-5px);
            opacity: 0.8;
        }
        100% {
            transform: scale(1) translateY(0);
            opacity: 1;
        }
    }
    
    /* Product glow effect when added to cart */
    .product-card.added-to-cart {
        box-shadow: 0 0 20px rgba(135, 206, 250, 0.6), 0 0 40px rgba(135, 206, 250, 0.4) !important;
        border: 2px solid rgba(135, 206, 250, 0.8) !important;
        animation: productGlow 2s ease-in-out;
    }
    
    @keyframes productGlow {
        0%, 100% {
            box-shadow: 0 0 20px rgba(135, 206, 250, 0.6), 0 0 40px rgba(135, 206, 250, 0.4);
        }
        50% {
            box-shadow: 0 0 30px rgba(135, 206, 250, 0.8), 0 0 60px rgba(135, 206, 250, 0.6);
        }
    }
    
    /* Cart navbar link - always white with blue glow like hero text */
    .cart-nav-link {
        color: #f2f2f7 !important;
        text-shadow: 0 0 20px rgba(173, 216, 230, 0.8), 0 0 40px rgba(135, 206, 250, 0.6), 0 0 60px rgba(135, 206, 250, 0.4) !important;
        font-weight: 600 !important;
    }
    
    /* Enhanced glow when items added */
    .cart-nav-link.has-items {
        background: linear-gradient(135deg, rgba(135, 206, 250, 0.2) 0%, rgba(173, 216, 230, 0.2) 100%) !important;
        border: 1px solid rgba(135, 206, 250, 0.5) !important;
        box-shadow: 0 2px 12px rgba(135, 206, 250, 0.4) !important;
        border-radius: 8px !important;
        padding: 8px 12px !important;
    }
    
    /* Mobile cart link glow when items added */
    .cart-mobile-link.has-items {
        color: #f2f2f7 !important;
        background: linear-gradient(135deg, rgba(135, 206, 250, 0.2) 0%, rgba(173, 216, 230, 0.2) 100%) !important;
        border: 1px solid rgba(135, 206, 250, 0.5) !important;
        box-shadow: 0 2px 12px rgba(135, 206, 250, 0.4) !important;
        text-shadow: 0 0 20px rgba(173, 216, 230, 0.8), 0 0 40px rgba(135, 206, 250, 0.6) !important;
        font-weight: 600 !important;
    }
    
    /* Cart item name white text with blue glow background effect */
    .cart-item-name {
        color: #f2f2f7 !important;
        text-shadow: 0 0 20px rgba(173, 216, 230, 0.8), 0 0 40px rgba(135, 206, 250, 0.6), 0 0 60px rgba(135, 206, 250, 0.4) !important;
        font-weight: 600 !important;
        background: radial-gradient(ellipse at center, rgba(135, 206, 250, 0.2) 0%, transparent 70%);
        padding: 4px 8px;
        border-radius: 6px;
    }
    
    /* Cart item price white text with blue glow effect */
    .cart-item-price {
        color: #f2f2f7 !important;
        text-shadow: 0 0 15px rgba(173, 216, 230, 0.6), 0 0 30px rgba(135, 206, 250, 0.4) !important;
        font-weight: 500 !important;
        background: radial-gradient(ellipse at center, rgba(135, 206, 250, 0.15) 0%, transparent 70%);
        padding: 2px 6px;
        border-radius: 4px;
    }
    
    /* Enhanced cart item background */
    .cart-item {
        background: linear-gradient(135deg, rgba(135, 206, 250, 0.05) 0%, rgba(173, 216, 230, 0.03) 100%) !important;
        border-radius: 8px !important;
        padding: 12px 8px !important;
        margin: 4px 0 !important;
        border: 1px solid rgba(135, 206, 250, 0.1) !important;
    }
    
    
}

/* New Modern Cart Styles */
.cart-title-section h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 4px 0;
    letter-spacing: -0.022em;
}

.cart-item-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
}

.cart-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.cart-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px;
}

.cart-items {
    padding: 20px 0;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    height: 100%;
}

.empty-cart-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.cart-empty h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.cart-empty p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 24px 0;
}

.continue-shopping-btn {
    background: linear-gradient(135deg, #007AFF, #00D4FF);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.4);
}

.cart-summary {
    background: rgba(255, 255, 255, 0.05);
    margin: 0 24px 20px 24px;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
}

.summary-amount {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.shipping-free {
    color: #30d158;
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 16px 0;
}

.total-row .summary-label,
.total-row .summary-amount {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.cart-footer {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid rgba(84, 84, 88, 0.3);
    flex-shrink: 0;
}

.continue-shopping-button {
    flex: 1;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.continue-shopping-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.checkout-button {
    flex: 2;
    background: linear-gradient(135deg, #007AFF, #00D4FF);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-button:hover {
    background: linear-gradient(135deg, #0051d5, #00b8ff);
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

/* Enhanced Cart Item Styling */
.cart-item {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 16px;
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 24px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.cart-item-price {
    color: #007AFF;
    font-size: 18px;
    font-weight: 700;
}

.cart-remove {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 8px;
    color: #ff3b30;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-remove:hover {
    background: rgba(255, 59, 48, 0.2);
    border-color: rgba(255, 59, 48, 0.5);
}

/* Stripe Elements Styling */
.stripe-card-element {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.stripe-card-element:focus-within {
    border-color: #007AFF;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.stripe-error-message {
    color: #ff3b30;
    font-size: 14px;
    margin-top: 8px;
    min-height: 20px;
    display: flex;
    align-items: center;
}

/* Stripe Element styling */
.StripeElement {
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.StripeElement--focus {
    color: white;
}

.StripeElement--invalid {
    color: #ff3b30;
}

.StripeElement::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Address Toggle Styling */
.address-toggle-section {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: white;
    user-select: none;
}

.checkbox-container input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    cursor: pointer;
}

.checkmark {
    height: 24px;
    width: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 20px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-container:hover .checkmark {
    border-color: #007AFF;
    background: rgba(0, 122, 255, 0.1);
}

.checkbox-container input:checked ~ .checkmark {
    background: #007AFF;
    border-color: #007AFF;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-text {
    margin-left: 8px;
    line-height: 1.4;
}

/* Shipping Section Animation */
.shipping-section {
    overflow: hidden;
    transition: all 0.4s ease;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
}

.shipping-section.show {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    display: block !important;
}