/* Video setup reset: No mobile-specific overrides for .video-container or iframe. */
@media (max-width: 600px) {
    .mobile-menu-toggle {
        width: 56px;
        height: 56px;
        font-size: 2rem;
        top: 0.5rem;
        left: 0.5rem;
        border-radius: 16px;
        z-index: 2000;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.25);
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: background 0.2s, box-shadow 0.2s;
    }
    .mobile-menu-toggle:active, .mobile-menu-toggle.active {
        background: rgba(0,201,215,0.25);
        box-shadow: 0 4px 16px rgba(0,201,215,0.12);
    }
    .mobile-menu-toggle .toggle-icon {
        font-size: 2.2rem;
        line-height: 1;
        color: #fff;
        pointer-events: none;
    }
}
@media (max-width: 600px) {
    .shop-header-image, .shop-header img, .shop-header-banner, .shop-header-banner img {
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 100vw !important;
        margin-left: calc(-1 * (50vw - 50%)) !important;
        border-radius: 0 !important;
        display: block;
    }
    .shop-header {
        padding: 0 !important;
        margin: 0 !important;
        background: none !important;
        box-shadow: none !important;
    }
}
@media (max-width: 600px) {
    .window-header.aero-window-header {
        padding-right: 0.5rem;
        min-height: 40px;
        height: 48px;
        align-items: center;
    }
    .aero-window-controls {
        gap: 2px;
        margin: 0;
        padding: 0;
        height: 32px;
    }
    .aero-window-dot {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        font-size: 12px !important;
        margin: 0 1px;
        box-shadow: none;
    }
    .window-header .aero-window-controls {
        position: absolute;
        top: 8px;
        right: 8px;
        z-index: 2;
    }
    .window-header .aero-window-title {
        font-size: 1.1rem;
        padding-left: 0.5rem;
    }
}
/* New Main Layout Styles for 1/4 + 3/4 Design */

/* Ensure HTML and body are transparent */
html {
    background: transparent !important;
    margin: 0;
    padding: 0;
}

/* Ensure HTML and body are transparent */
html {
    background: transparent !important;
    margin: 0;
    padding: 0;
}

/* Background Container - Industry Standard Implementation */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    z-index: -1;
    overflow: hidden;
    /* Performance optimizations */
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    /* Accessibility considerations */
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Professional fallback gradient matching Frutiger Aero aesthetic */
    background: linear-gradient(135deg, #87CEEB 0%, #98D8E8 20%, #4682B4 40%, #5F9EA0 60%, #2E8B57 80%, #228B22 100%);
    /* Primary background image with optimized loading */
    background-image: url('/assets/backgrounds/frutiger_aero_bg.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* Modern CSS properties for better rendering */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    /* Performance optimizations */
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    /* Subtle animation for dynamic feel */
    animation: frutigerBackgroundFlow 25s ease-in-out infinite;
    z-index: -2; /* Base background layer */
}

/* Background Wind Animation */
@keyframes backgroundWindSway {
    0%, 100% {
        transform: scale(1.02) translateX(0px) translateY(0px);
        filter: brightness(1) blur(0px);
    }
    25% {
        transform: scale(1.05) translateX(10px) translateY(-5px);
        filter: brightness(1.05) blur(0.5px);
    }
    50% {
        transform: scale(1.03) translateX(-8px) translateY(8px);
        filter: brightness(0.98) blur(0.3px);
    }
    75% {
        transform: scale(1.06) translateX(15px) translateY(-3px);
        filter: brightness(1.02) blur(0.8px);
    }
}

/* Frutiger Aero Background Animation */
@keyframes frutigerBackgroundFlow {
    0% {
        transform: scale(1.0) rotate(0deg);
        filter: brightness(1.0) contrast(1.0) hue-rotate(0deg);
        opacity: 1.0;
    }
    20% {
        transform: scale(1.05) rotate(0.5deg);
        filter: brightness(1.1) contrast(1.05) hue-rotate(3deg);
        opacity: 0.95;
    }
    40% {
        transform: scale(1.08) rotate(-0.3deg);
        filter: brightness(1.15) contrast(1.1) hue-rotate(-2deg);
        opacity: 0.9;
    }
    60% {
        transform: scale(1.03) rotate(0.8deg);
        filter: brightness(1.05) contrast(1.08) hue-rotate(5deg);
        opacity: 0.92;
    }
    80% {
        transform: scale(1.06) rotate(-0.2deg);
        filter: brightness(1.12) contrast(1.03) hue-rotate(-1deg);
        opacity: 0.94;
    }
    100% {
        transform: scale(1.0) rotate(0deg);
        filter: brightness(1.0) contrast(1.0) hue-rotate(0deg);
        opacity: 1.0;
    }
}

/* Secondary Frutiger Aero Background - STEP 2: Basic version */
.frutiger-wind-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0.8;
    z-index: -1;
}

/* Frutiger Aero Wind Animation */
@keyframes frutiger_aero_wind {
    0%, 100% {
        transform: scale(1.15) translateX(0px) translateY(0px) rotate(0deg);
        filter: brightness(1.2) contrast(1.1) blur(0px);
        opacity: 0.9;
    }
    20% {
        transform: scale(1.25) translateX(40px) translateY(-25px) rotate(3deg);
        filter: brightness(1.4) contrast(1.3) blur(2px);
        opacity: 1.0;
    }
    40% {
        transform: scale(1.1) translateX(-30px) translateY(35px) rotate(-2deg);
        filter: brightness(0.8) contrast(0.9) blur(1px);
        opacity: 0.8;
    }
    60% {
        transform: scale(1.3) translateX(50px) translateY(-15px) rotate(4deg);
        filter: brightness(1.5) contrast(1.4) blur(3px);
        opacity: 1.0;
    }
    80% {
        transform: scale(1.05) translateX(-40px) translateY(30px) rotate(-3deg);
        filter: brightness(0.7) contrast(0.8) blur(1.5px);
        opacity: 0.85;
    }
}

/* Floating Bubble Effect for Frutiger Aero */
@keyframes floatingBubbles {
    0% {
        transform: translateY(100vh) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) scale(1.2) rotate(360deg);
        opacity: 0;
    }
}

@keyframes bubblesFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(15px) scale(1.1) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) translateX(-10px) scale(0.9) rotate(180deg);
        opacity: 1.0;
    }
    75% {
        transform: translateY(-30px) translateX(20px) scale(1.05) rotate(270deg);
        opacity: 0.7;
    }
}

/* Create floating bubble elements */
body::before,
body::after {
    content: '';
    position: fixed;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle, rgba(78, 199, 212, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    animation: floatingBubbles 15s infinite linear;
}

body::before {
    width: 60px;
    height: 60px;
    left: 10%;
    animation-delay: 0s;
}

body::after {
    width: 40px;
    height: 40px;
    left: 80%;
    animation-delay: 8s;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.mobile-menu-toggle .toggle-icon {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active .toggle-icon {
    transform: rotate(90deg);
}

/* Universal Reset for Full Coverage */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background: transparent !important; /* Remove any default grey backgrounds */
}

/* Global Body Styles */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #4EC7D4 url('/assets/images/blue-abstract-background.jpg') center center/cover fixed no-repeat !important;
    color: white;
    min-height: 100vh;
    width: 100vw;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Main Layout Container */
.main-layout-container {
    display: flex;
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
    background: transparent !important; /* Ensure no background interference */
}

/* Navigation Sidebar (1/4 screen) */
.navigation-sidebar {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: transparent !important;
    z-index: 5;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-nav {
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: transparent;
}

/* Custom Sidebar Styles - Glossy Transparent Design */
.sidebar {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 200px;
    height: calc(100vh - 40px);
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 0;
    overflow: hidden;
    z-index: 6;
}

.sidebar .logo {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 1rem 1.5rem;
    font-size: 1.3em;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.sidebar nav {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

/* Frutiger Aero Navigation Bar with Blue Abstract Background */
.frutiger_aero_nav_bar,
.sidebar.frutiger_aero_nav_bar {
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    width: 200px !important;
    height: calc(100vh - 40px) !important;
    background: linear-gradient(135deg, 
        rgba(78, 199, 212, 0.8) 0%,
        rgba(0, 201, 215, 0.7) 25%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(78, 199, 212, 0.7) 75%,
        rgba(0, 153, 255, 0.8) 100%
    ),
    url('/assets/images/blue-abstract-background.jpg') !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay !important;
    backdrop-filter: blur(25px) saturate(1.2) !important;
    border: 3px solid rgba(78, 199, 212, 0.9) !important;
    border-radius: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(78, 199, 212, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.3) !important;
    padding: 0 !important;
    overflow: hidden !important;
    z-index: 6 !important;
    animation: frutigerNavFlow 20s infinite ease-in-out !important;
}

/* Frutiger Aero Navigation Animation */
@keyframes frutigerNavFlow {
    0%, 100% {
        background-position: 0% 50%, center;
        filter: brightness(1.0) contrast(1.1) hue-rotate(0deg);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.4),
            0 4px 16px rgba(78, 199, 212, 0.2),
            inset 0 1px 2px rgba(255, 255, 255, 0.2);
    }
    25% {
        background-position: 25% 25%, center top;
        filter: brightness(1.2) contrast(1.2) hue-rotate(15deg);
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.5),
            0 6px 20px rgba(78, 199, 212, 0.4),
            inset 0 1px 3px rgba(255, 255, 255, 0.3);
    }
    50% {
        background-position: 50% 0%, center bottom;
        filter: brightness(1.1) contrast(1.3) hue-rotate(30deg);
        box-shadow: 
            0 10px 36px rgba(0, 0, 0, 0.45),
            0 5px 18px rgba(0, 201, 215, 0.3),
            inset 0 1px 2px rgba(255, 255, 255, 0.25);
    }
    75% {
        background-position: 75% 75%, center;
        filter: brightness(1.3) contrast(1.1) hue-rotate(45deg);
        box-shadow: 
            0 14px 44px rgba(0, 0, 0, 0.4),
            0 7px 22px rgba(0, 153, 255, 0.3),
            inset 0 1px 4px rgba(255, 255, 255, 0.2);
    }
}

/* Frutiger Aero Navigation Bar Elements */
.frutiger_aero_nav_bar .logo {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(78, 199, 212, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 100%
    ) !important;
    padding: 1rem 1.5rem;
    font-size: 1.3em;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    border-bottom: 2px solid rgba(78, 199, 212, 0.3);
    backdrop-filter: blur(15px) saturate(1.3);
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(78, 199, 212, 0.3);
    animation: logoGlow 8s infinite ease-in-out;
}

@keyframes logoGlow {
    0%, 100% {
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(78, 199, 212, 0.3);
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.15) 0%,
            rgba(78, 199, 212, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 100%
        ) !important;
    }
    50% {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 6px rgba(78, 199, 212, 0.6);
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.2) 0%,
            rgba(78, 199, 212, 0.3) 50%,
            rgba(0, 201, 215, 0.2) 100%
        ) !important;
    }
}

.frutiger_aero_nav_bar nav {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.frutiger_aero_nav_bar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frutiger_aero_nav_bar nav ul li {
    margin: 0;
    border-bottom: 1px solid rgba(78, 199, 212, 0.1);
    position: relative;
    overflow: hidden;
}

.frutiger_aero_nav_bar nav ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(78, 199, 212, 0.2) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.frutiger_aero_nav_bar nav ul li:hover::before {
    left: 100%;
}

.frutiger_aero_nav_bar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    border-left: 3px solid transparent;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.frutiger_aero_nav_bar .nav-link:hover {
    background: linear-gradient(135deg, 
        rgba(78, 199, 212, 0.25) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(0, 201, 215, 0.2) 100%
    ) !important;
    border-left: 3px solid rgba(78, 199, 212, 0.8);
    color: #ffffff !important;
    transform: translateX(5px);
    box-shadow: 
        0 4px 15px rgba(78, 199, 212, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 0 8px rgba(78, 199, 212, 0.4);
}

.frutiger_aero_nav_bar .nav-link.active {
    background: linear-gradient(135deg, 
        rgba(78, 199, 212, 0.4) 0%,
        rgba(0, 201, 215, 0.3) 50%,
        rgba(0, 153, 255, 0.25) 100%
    ) !important;
    border-left: 3px solid rgba(78, 199, 212, 1);
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: 
        0 6px 20px rgba(78, 199, 212, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.25);
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar nav ul li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar nav ul li:last-child {
    border-bottom: none;
}

.sidebar nav ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1em;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    transition: all 0.3s ease;
    background: transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.sidebar nav ul li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.sidebar nav ul li a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.sidebar .icon {
    margin-right: 10px;
    font-size: 1.1em;
}

.sidebar .utilities {
    background: rgba(173, 216, 230, 0.2) !important;
    padding: 1rem;
    border-top: 1px solid rgba(135, 206, 235, 0.4);
    display: flex;
    justify-content: space-around;
    backdrop-filter: blur(10px);
}

.sidebar .utilities a {
    color: #2F4F4F;
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sidebar .utilities a:hover {
    color: #20B2AA;
    background: rgba(173, 216, 230, 0.3);
}

/* Frutiger Aero Navigation Bar Utilities */
.frutiger_aero_nav_bar .utilities {
    background: linear-gradient(135deg, 
        rgba(78, 199, 212, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(0, 201, 215, 0.15) 100%
    ) !important;
    padding: 1rem;
    border-top: 2px solid rgba(78, 199, 212, 0.3);
    display: flex;
    justify-content: space-around;
    backdrop-filter: blur(15px) saturate(1.2);
    position: relative;
    overflow: hidden;
}

.frutiger_aero_nav_bar .utilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(78, 199, 212, 0.6) 50%,
        transparent 100%
    );
}

.frutiger_aero_nav_bar .utilities a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 199, 212, 0.2);
    font-size: 1.1em;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.frutiger_aero_nav_bar .utilities a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(78, 199, 212, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.frutiger_aero_nav_bar .utilities a:hover::before {
    width: 100px;
    height: 100px;
}

.frutiger_aero_nav_bar .utilities a:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, 
        rgba(78, 199, 212, 0.4) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(0, 201, 215, 0.3) 100%
    );
    border: 1px solid rgba(78, 199, 212, 0.6);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(78, 199, 212, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 0 8px rgba(78, 199, 212, 0.5);
}

.frutiger_aero_nav_bar .utilities a .icon {
    position: relative;
    z-index: 2;
}

/* Main Content Panel adjustments to accommodate window-style sidebar */
.main-content-panel {
    margin-left: 240px; /* Account for sidebar width + gap */
    position: relative;
    z-index: 1; /* Above background, below sidebar */
}

/* Remove duplicate sidebar utilities styles - already defined above */

/* Simple Content Styling */
.simple-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    max-width: 800px;
}

.simple-content h1 {
    color: #00ffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.simple-content h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
}

.simple-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.simple-content ul {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-left: 1rem;
}

.simple-content li {
    margin-bottom: 0.5rem;
}

.quick-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Content Window System */
.content-window {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    height: 85vh;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 5; /* Above floating elements (z-index: 2) but below dynamic content (z-index: 10) */
}

.window-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.window-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00ffff;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.window-dot:hover {
    opacity: 0.8;
}

.window-dot.close {
    background: #ff5f57;
}

.window-dot.minimize {
    background: #ffbd2e;
}

.window-dot.maximize {
    background: #28ca42;
}

.window-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 6; /* Ensure window content is properly layered */
    position: relative;
}

/* Dynamic Content Container - Ensure Responsiveness */
.dynamic-content {
    width: 100%;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    z-index: 10; /* High enough to be above floating elements */
    pointer-events: auto !important;
    min-height: 200px;
    padding: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 201, 215, 0.6) rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar Styling for Webkit Browsers */
.dynamic-content::-webkit-scrollbar {
    width: 8px;
}

.dynamic-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.dynamic-content::-webkit-scrollbar-thumb {
    background: rgba(0, 201, 215, 0.6);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dynamic-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 201, 215, 0.8);
}

/* Home Page Specific Styling */
.home-page {
    max-width: 1200px;
    margin: 0 auto;
}

.home-page .hero-section {
    text-align: center;
    margin-bottom: 3rem;
}

.home-page .page-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.home-page .page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

/* Video Showcase Sizing */
.home-page .video-showcase {
    margin: 2rem 0 3rem 0;
    text-align: center;
}

.home-page .video-container {
    display: inline-block;
    max-width: 680px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.home-page .showcase-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Entertainment Content Section */
.home-page .entertainment-content-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
}

.home-page .entertainment-content-section .section-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.home-page .entertainment-content-section .entertainment-message p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* Feature Grid Responsive Sizing */
.home-page .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.home-page .feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-page .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 201, 215, 0.2);
}

.home-page .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.home-page .feature-card h3 {
    color: #00C9D7;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.home-page .feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Stats Section */
.home-page .quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(0, 201, 215, 0.1);
    border-radius: 12px;
    text-align: center;
}

.home-page .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #00C9D7;
    margin-bottom: 0.5rem;
}

.home-page .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Entertainment Window Styles */
.entertainment-window {
    position: fixed;
    top: calc(75vh + 3rem);
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 5;
}

.entertainment-window .window-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.entertainment-window .window-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.entertainment-window .window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.entertainment-window .window-dot.close {
    background: #ff6b6b;
}

.entertainment-window .window-dot.minimize {
    background: #ffbd2e;
}

.entertainment-window .window-dot.maximize {
    background: #28ca42;
}

.entertainment-window .window-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-align: center;
    flex: 1;
    margin-left: -80px; /* Center title accounting for controls */
}

.entertainment-window .window-content {
    padding: 2rem;
}

.entertainment-window .entertainment-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    margin: 0;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.home-page .cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin: 3rem 0;
}

.home-page .cta-section h2 {
    color: #00C9D7;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.home-page .cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-page .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.home-page .cta-buttons a {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.home-page .btn-primary {
    background: #00C9D7;
    color: white;
}

.home-page .btn-primary:hover {
    background: #00a8b5;
    transform: translateY(-2px);
}

.home-page .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.home-page .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.home-page .btn-accent {
    background: linear-gradient(45deg, #00C9D7, #00a8b5);
    color: white;
}

.home-page .btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 201, 215, 0.3);
}

/* Responsive Design for Home Page */
@media (max-width: 768px) {
    .home-page {
        padding: 0.5rem;
    }
    
    .home-page .page-title {
        font-size: 2.5rem;
    }
    
    .home-page .page-subtitle {
        font-size: 1.1rem;
    }
    
    .home-page .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .home-page .feature-card {
        padding: 1.5rem;
    }
    
    .home-page .quick-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .home-page .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .home-page .cta-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .home-page .video-container {
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .home-page .page-title {
        font-size: 2rem;
    }
    
    .home-page .page-subtitle {
        font-size: 1rem;
    }
    
    .home-page .feature-card {
        padding: 1rem;
    }
    
    .home-page .quick-stats {
        padding: 1rem;
    }
    
    .home-page .cta-section {
        padding: 2rem 1rem;
    }
}

/* Ensure all interactive elements in dynamic content are accessible */
.dynamic-content * {
    pointer-events: auto;
}

/* Fix any potential blocking issues with content elements */
.dynamic-content button,
.dynamic-content a,
.dynamic-content input,
.dynamic-content textarea,
.dynamic-content video {
    position: relative;
    z-index: 11; /* Above dynamic content */
    pointer-events: auto !important;
}

/* Ensure video controls and overlays don't block other content */
.dynamic-content .video-overlay {
    z-index: 12;
    pointer-events: auto;
}

/* Make sure video overlay controls are accessible */
.dynamic-content .video-overlay button {
    z-index: 13;
    pointer-events: auto !important;
}

.content-area {
    max-width: 100%;
    animation: slideIn 0.3s ease-out;
}

.content-area h1 {
    color: #00ffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-area p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

.card-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.card-content h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Content Styles */
.simple-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.list-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.list-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateX(5px);
}

.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.placeholder-item {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

.contact-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.contact-details h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 1rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.settings-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.setting-value {
    color: #00ffff;
    font-weight: 600;
}

/* Sidebar Header */
.sidebar-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    border-radius: 12px;
    background: linear-gradient(135deg, #00C9D7, #0070d1);
    padding: 8px;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
    letter-spacing: -0.02em;
}

.brand-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-style: italic;
}

/* Navigation Section */
.nav-section {
    flex: 1;
}

.nav-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.main-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 201, 215, 0.2);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(0, 201, 215, 0.3), rgba(0, 112, 209, 0.3));
    color: white;
    border: 1px solid rgba(0, 201, 215, 0.4);
    box-shadow: 0 4px 16px rgba(0, 201, 215, 0.25);
}

.nav-icon {
    font-size: 1.25rem;
    min-width: 24px;
}

.nav-label {
    font-size: 0.95rem;
}

/* Dropdown Navigation Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    position: relative;
}

.dropdown-arrow {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 8;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0;
    border-radius: 0;
    font-size: 0.9rem;
    border: none;
    background: transparent !important;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.dropdown-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateX(4px);
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    color: #ffffff !important;
    backdrop-filter: blur(10px);
}

.dropdown-menu .nav-link::before {
    display: none;
}

/* Prevent dropdown from covering the next menu item */
.dropdown:hover + li,
.dropdown.active + li {
    margin-top: 8rem;
    transition: margin-top 0.3s ease;
}

/* Responsive Dropdown for Mobile */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        width: 100%;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        margin-top: 0.5rem;
        margin-left: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-menu .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {
    .dropdown-menu {
        margin-left: 0.5rem;
        width: calc(100% - 1rem);
    }
    
    .dropdown-menu .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .dropdown-arrow {
        font-size: 0.7rem;
        margin-left: 0.3rem;
    }
}

/* Profile Widget */
.profile-widget {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.status-indicator {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid white;
}

.status-indicator.online {
    background: #00ff7f;
    box-shadow: 0 0 8px rgba(0, 255, 127, 0.5);
}

.profile-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.25rem 0;
}

.profile-status {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Tools Section */
.tools-section {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.tool-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tool-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tool-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.tool-icon {
    font-size: 1.1rem;
}

/* Main Content Panel (3/4 screen) */
.main-content-panel {
    width: calc(100% - 220px);
    margin-left: 220px;
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    
    /* Clean background without image */
    background: transparent;
    position: relative;
}

/* Background overlay removed for clean design */
.main-content-panel::before {
    display: none;
}

@keyframes backgroundFlow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }
    33% {
        transform: translate(20px, -15px) rotate(1deg);
        opacity: 0.7;
    }
    66% {
        transform: translate(-15px, 10px) rotate(-0.5deg);
        opacity: 0.6;
    }
}

/* Alternative Background Styles - Removed Frutiger images */

/* Image-focused background (no image) */
.main-content-panel.image-focus {
    background: transparent;
}

/* Pure transparent background */
.main-content-panel.image-only {
    background: transparent;
}

/* Transparent background with subtle tint */
.main-content-panel.image-tinted {
    background: transparent;
}

/* Content Sections */
.content-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-section.active {
    display: flex;
}

/* Content Header */
.content-header {
    padding: 2rem;
    border-radius: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.time-display {
    text-align: right;
}

.current-time {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: white;
    line-height: 1;
}

.current-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Section Styling */
.featured-section,
.services-section,
.stats-section {
    padding: 2rem;
    border-radius: 20px;
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin: 0;
}

.title-icon {
    font-size: 1.25rem;
}

/* Featured Content */
.feature-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.feature-visual {
    width: 120px;
    height: 120px;
    position: relative;
}

.floating-orb {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #00d4ff, #0070d1);
    border-radius: 50%;
    box-shadow: 
        0 8px 32px rgba(0, 112, 209, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: orbFloat 4s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin: 0 0 1rem 0;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.feature-btn {
    background: linear-gradient(135deg, #00C9D7, #0070d1);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 201, 215, 0.4);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 112, 209, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.service-icon.development {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

.service-icon.design {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.service-icon.media {
    background: linear-gradient(135deg, #a8e6cf, #7fcdcd);
}

.service-icon.consulting {
    background: linear-gradient(135deg, #ffd93d, #ff8c42);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    margin: 0 0 0.75rem 0;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navigation-sidebar {
        width: 280px;
        min-width: 280px;
    }
    
    .main-content-panel {
        margin-left: 280px;
        width: calc(100% - 280px);
    }
}

@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease, visibility 0.3s ease;
        width: 220px;
        position: fixed;
        z-index: 1000;
        visibility: hidden;
        pointer-events: none;
    }
    
    .sidebar.open,
    .sidebar.mobile-open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }
    
    .main-content-panel {
        margin-left: 0 !important;
        width: 100% !important;
        padding: 1rem;
    }
    
    /* Show mobile menu toggle at tablet breakpoint */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .main-content-panel {
        padding: 1rem 0.5rem;
    }
    
    .services-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .current-time {
        font-size: 1.5rem;
    }
    
    /* Mobile menu toggle positioning */
    .mobile-menu-toggle {
        top: 0.5rem;
        left: 0.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Sidebar Left */
.sidebar-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 2rem;
}

/* Main Panel */
.main-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Glass Panel Base */
.glass-panel {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 4px 16px rgba(0, 112, 209, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 24px rgba(0, 112, 209, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Profile Card */
.profile-card {
    padding: 1.5rem;
    text-align: center;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.profile-avatar {
    position: relative;
    width: 80px;
    height: 80px;
}

.avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.status-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: #00ff7f;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 255, 127, 0.5);
}

.profile-name {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
    color: white;
}

.profile-status {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Sidebar Navigation */
.sidebar-nav {
    padding: 1.5rem;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 400;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.nav-item.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-icon {
    font-size: 1.125rem;
    width: 20px;
    text-align: center;
}

/* Welcome Section */
.welcome-card {
    padding: 2rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: -0.03em;
    color: white;
    margin: 0;
}

.time-widget {
    text-align: right;
}

.current-time {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    color: white;
}

.current-date {
    display: block;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.65);
}

/* Intro Content */
.intro-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.intro-heading {
    font-size: 1.875rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: white;
}

.intro-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0;
}

.intro-visual {
    position: relative;
    width: 80px;
    height: 80px;
}

.floating-orb {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #00d4ff, #0070d1);
    border-radius: 50%;
    box-shadow: 
        0 8px 32px rgba(0, 112, 209, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: orbFloat 4s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

/* Services Section */
.services-section {
    margin-bottom: 2rem;
}

.section-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.service-tile {
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-tile:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 32px rgba(0, 112, 209, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-icon {
    position: relative;
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon.development .icon-bg {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

.service-icon.design .icon-bg {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.service-icon.media .icon-bg {
    background: linear-gradient(135deg, #a8e6cf, #7fcdcd);
}

.service-icon.consulting .icon-bg {
    background: linear-gradient(135deg, #ffd93d, #ff8c42);
}

.service-icon .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: white;
}

.service-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
}

/* Stats Overview */
.stats-overview {
    padding: 2rem;
}

.stats-header {
    margin-bottom: 1.5rem;
}

.stats-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0;
}

.stats-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.25rem;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
}

/* Media Player */
.media-player {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    min-width: 400px;
    padding: 1rem 1.5rem;
    z-index: 1001;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 6px;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.player-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.play-pause {
    background: linear-gradient(135deg, #00d4ff, #0070d1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.progress-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #00d4ff, #0070d1);
    width: 8%;
    transition: width 0.1s ease;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.player-actions {
    display: flex;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 280px 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sidebar-left {
        order: 2;
        position: static;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
    }
    
    .sidebar-left > * {
        flex-shrink: 0;
        min-width: 280px;
    }
    
    .main-panel {
        order: 1;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 1rem;
    }
    
    .welcome-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }
    
    .services-grid,
    .stats-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .media-player {
        left: 1rem;
        right: 1rem;
        min-width: 300px;
        transform: none;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar-left > * {
        min-width: 200px;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .intro-heading {
        font-size: 1.5rem;
    }
    
    /* Additional mobile-specific adjustments */
    .main-content-panel {
        padding: 0.5rem;
    }
    
    /* Overlay for mobile menu */
    .mobile-overlay,
    .mobile-overlay.active {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* ========================================
   FRUTIGER AERO WIND EFFECTS SYSTEM
   ======================================== */

/* Floating Elements Container - Works with existing HTML structure */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 2; /* Above background, below content */
    overflow: hidden;
}

/* Enhanced Bubble Animations with Dynamic Wind */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.3), 
        rgba(0, 255, 255, 0.15),
        rgba(135, 206, 235, 0.1));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: enhancedWindFloat 12s ease-in-out infinite;
    box-shadow: 
        0 8px 32px rgba(0, 255, 255, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.bubble-1 {
    width: 120px;
    height: 120px;
    left: 8%;
    top: 15%;
    animation-delay: 0s;
    animation: enhancedWindFloat 8s ease-in-out infinite, windGlow 4s ease-in-out infinite alternate;
}

.bubble-2 {
    width: 150px;
    height: 150px;
    left: 85%;
    top: 70%;
    animation-delay: -2s;
    animation: enhancedWindFloat 10s ease-in-out infinite, windGlow 5s ease-in-out infinite alternate;
}

.bubble-3 {
    width: 90px;
    height: 90px;
    right: 15%;
    top: 8%;
    animation-delay: -4s;
    animation: enhancedWindFloat 7s ease-in-out infinite, windGlow 3s ease-in-out infinite alternate;
}

.bubble-4 {
    width: 110px;
    height: 110px;
    left: 25%;
    bottom: 25%;
    animation-delay: -6s;
    animation: enhancedWindFloat 11s ease-in-out infinite, windGlow 6s ease-in-out infinite alternate;
}

.bubble-5 {
    width: 100px;
    height: 100px;
    right: 8%;
    top: 45%;
    animation-delay: -3s;
    animation: enhancedWindFloat 9s ease-in-out infinite, windGlow 4s ease-in-out infinite alternate;
}

/* Enhanced Wind Float Animation */
@keyframes enhancedWindFloat {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    20% {
        transform: translateX(80px) translateY(-60px) rotate(72deg) scale(1.1);
        opacity: 0.9;
    }
    40% {
        transform: translateX(-50px) translateY(45px) rotate(144deg) scale(0.9);
        opacity: 0.7;
    }
    60% {
        transform: translateX(100px) translateY(-30px) rotate(216deg) scale(1.2);
        opacity: 1;
    }
    80% {
        transform: translateX(-70px) translateY(70px) rotate(288deg) scale(0.8);
        opacity: 0.8;
    }
}

/* Wind Glow Effect */
@keyframes windGlow {
    0% {
        box-shadow: 
            0 8px 32px rgba(0, 255, 255, 0.2),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 16px 64px rgba(0, 255, 255, 0.4),
            inset 0 0 40px rgba(255, 255, 255, 0.3),
            0 0 80px rgba(135, 206, 235, 0.3);
    }
}

/* Enhanced Wind Particle System */
.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(0, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 
        0 0 8px rgba(0, 255, 255, 0.6),
        15px 8px 0 rgba(0, 255, 255, 0.4),
        35px -3px 0 rgba(255, 255, 255, 0.3),
        -12px 20px 0 rgba(0, 200, 255, 0.5),
        55px 12px 0 rgba(255, 255, 255, 0.2),
        -20px -8px 0 rgba(0, 255, 255, 0.3),
        70px -10px 0 rgba(135, 206, 235, 0.4),
        -35px 35px 0 rgba(0, 255, 255, 0.2),
        90px 25px 0 rgba(255, 255, 255, 0.3),
        -50px -20px 0 rgba(0, 200, 255, 0.4);
    animation: enhancedWindParticles 30s linear infinite;
}

.floating-elements::before {
    top: 15%;
    left: -80px;
    animation-delay: 0s;
}

.floating-elements::after {
    top: 65%;
    left: -80px;
    animation-delay: -15s;
}

/* Enhanced Wind Particles Animation */
@keyframes enhancedWindParticles {
    0% {
        transform: translateX(0) translateY(0) scale(0);
        opacity: 0;
    }
    5% {
        transform: translateX(30px) translateY(-10px) scale(1);
        opacity: 1;
    }
    25% {
        transform: translateX(25vw) translateY(-30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateX(50vw) translateY(-50px) scale(1.5);
        opacity: 0.9;
    }
    75% {
        transform: translateX(75vw) translateY(-70px) scale(1.1);
        opacity: 0.6;
    }
    95% {
        transform: translateX(100vw) translateY(-90px) scale(0.8);
        opacity: 0.3;
    }
    100% {
        transform: translateX(120vw) translateY(-110px) scale(0);
        opacity: 0;
    }
}

/* Wind Flow Animation Keyframes */
@keyframes windFloat {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateX(60px) translateY(-50px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-45px) translateY(35px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translateX(70px) translateY(-25px) rotate(270deg);
        opacity: 0.9;
    }
}

/* Intense Wind Particles */
.wind-particle {
    position: absolute;
    background: linear-gradient(135deg, 
        rgba(0, 201, 215, 0.6), 
        rgba(55, 255, 255, 0.4), 
        rgba(255, 255, 255, 0.7));
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 201, 215, 0.5);
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.wind-particle-1 {
    width: 8px;
    height: 8px;
    left: -20px;
    top: 20%;
    animation: windDrift 4s infinite;
    animation-delay: 0s;
}

.wind-particle-2 {
    width: 12px;
    height: 12px;
    left: -20px;
    top: 40%;
    animation: windDrift 5s infinite;
    animation-delay: -1s;
}

.wind-particle-3 {
    width: 6px;
    height: 6px;
    left: -20px;
    top: 60%;
    animation: windDrift 3.5s infinite;
    animation-delay: -2s;
}

.wind-particle-4 {
    width: 10px;
    height: 10px;
    left: -20px;
    top: 80%;
    animation: windDrift 4.5s infinite;
    animation-delay: -0.5s;
}

.wind-particle-5 {
    width: 14px;
    height: 14px;
    left: -20px;
    top: 15%;
    animation: windDrift 6s infinite;
    animation-delay: -3s;
}

.wind-particle-6 {
    width: 9px;
    height: 9px;
    left: -20px;
    top: 70%;
    animation: windDrift 3.8s infinite;
    animation-delay: -1.5s;
}

/* Additional Enhanced Wind Particles */
.wind-particle-7 {
    width: 16px;
    height: 16px;
    left: -30px;
    top: 10%;
    animation: windDrift 7s infinite;
    animation-delay: -2.5s;
}

.wind-particle-8 {
    width: 11px;
    height: 11px;
    left: -25px;
    top: 85%;
    animation: windDrift 4.2s infinite;
    animation-delay: -4s;
}

.wind-particle-9 {
    width: 7px;
    height: 7px;
    left: -15px;
    top: 35%;
    animation: windDrift 3.2s infinite;
    animation-delay: -0.8s;
}

.wind-particle-10 {
    width: 13px;
    height: 13px;
    left: -35px;
    top: 55%;
    animation: windDrift 5.5s infinite;
    animation-delay: -3.7s;
}

@keyframes windDrift {
    0% {
        transform: translateX(0) translateY(0) scale(0);
        opacity: 0;
    }
    10% {
        transform: translateX(50px) translateY(-20px) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(50vw) translateY(-40px) scale(1.2);
        opacity: 0.8;
    }
    90% {
        transform: translateX(90vw) translateY(-60px) scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: translateX(110vw) translateY(-80px) scale(0);
        opacity: 0;
    }
}

@keyframes windParticles {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw) translateY(-100px);
        opacity: 0;
    }
}

/* Enhance main content area with wind effects */
.main-content-panel {
    position: relative;
}

/* Additional Wind Layers for Main Content Area */
.main-content-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 30%, rgba(0, 255, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(0, 200, 255, 0.03) 0%, transparent 35%),
        radial-gradient(circle at 75% 25%, rgba(135, 206, 235, 0.04) 0%, transparent 28%),
        radial-gradient(circle at 25% 80%, rgba(0, 255, 255, 0.02) 0%, transparent 32%);
    background-size: 600px 600px, 450px 450px, 750px 750px, 500px 500px, 400px 400px;
    animation: enhancedWindBreeze 35s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Enhanced Wind Breeze Animation */
@keyframes enhancedWindBreeze {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1) rotate(0deg);
        opacity: 0.4;
    }
    20% {
        transform: translateX(60px) translateY(-20px) scale(1.15) rotate(5deg);
        opacity: 0.7;
    }
    40% {
        transform: translateX(-40px) translateY(30px) scale(0.9) rotate(-3deg);
        opacity: 0.5;
    }
    60% {
        transform: translateX(80px) translateY(-10px) scale(1.1) rotate(7deg);
        opacity: 0.8;
    }
    80% {
        transform: translateX(-50px) translateY(25px) scale(0.95) rotate(-5deg);
        opacity: 0.6;
    }
}

/* Atmospheric Wind Overlay */
.background-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
            transparent 0%, 
            rgba(0, 255, 255, 0.02) 25%, 
            transparent 50%, 
            rgba(255, 255, 255, 0.01) 75%, 
            transparent 100%),
        linear-gradient(-45deg, 
            transparent 0%, 
            rgba(135, 206, 235, 0.015) 30%, 
            transparent 60%, 
            rgba(0, 200, 255, 0.02) 90%, 
            transparent 100%);
    background-size: 200% 200%, 150% 150%;
    animation: atmosphericWind 40s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes atmosphericWind {
    0%, 100% {
        background-position: 0% 0%, 100% 100%;
        opacity: 0.3;
    }
    25% {
        background-position: 50% 25%, 75% 50%;
        opacity: 0.6;
    }
    50% {
        background-position: 100% 50%, 25% 25%;
        opacity: 0.4;
    }
    75% {
        background-position: 25% 75%, 50% 75%;
        opacity: 0.7;
    }
}

/* Frutiger Aero Wind Streaks - TEMPORARILY DISABLED */
.frutiger-wind-bg::before {
    display: none; /* Temporarily disable */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(120deg, 
            transparent 0%, 
            rgba(0, 255, 255, 0.25) 15%, 
            transparent 30%,
            rgba(255, 255, 255, 0.2) 45%, 
            transparent 60%,
            rgba(135, 206, 235, 0.3) 75%, 
            transparent 90%),
        radial-gradient(ellipse at 20% 30%, 
            rgba(0, 200, 255, 0.15) 0%, 
            transparent 40%),
        radial-gradient(ellipse at 80% 70%, 
            rgba(255, 255, 255, 0.12) 0%, 
            transparent 50%);
    background-size: 300% 100%, 500px 300px, 400px 250px;
    animation: frutigerWindStreaks 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.frutiger-wind-bg::after {
    display: none; /* Temporarily disable */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        conic-gradient(from 45deg at 25% 25%, 
            transparent, 
            rgba(0, 255, 255, 0.15) 25%, 
            transparent 50%),
        conic-gradient(from 225deg at 75% 75%, 
            transparent, 
            rgba(255, 255, 255, 0.1) 25%, 
            transparent 50%);
    background-size: 600px 600px, 400px 400px;
    animation: frutigerWindRotation 25s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Frutiger Aero Wind Animations */
@keyframes frutigerWindStreaks {
    0%, 100% {
        background-position: -100% 0%, 0% 0%, 100% 100%;
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        background-position: 0% 0%, 30% 20%, 80% 70%;
        transform: rotate(5deg) scale(1.1);
        opacity: 1.0;
    }
    50% {
        background-position: 100% 0%, 60% 40%, 20% 30%;
        transform: rotate(-3deg) scale(0.95);
        opacity: 0.9;
    }
    75% {
        background-position: 200% 0%, 90% 60%, 50% 80%;
        transform: rotate(7deg) scale(1.15);
        opacity: 1.0;
    }
}

@keyframes frutigerWindRotation {
    0% {
        transform: rotate(0deg) scale(1);
        background-position: 0% 0%, 100% 100%;
        opacity: 0.7;
    }
    25% {
        transform: rotate(90deg) scale(1.2);
        background-position: 25% 25%, 75% 75%;
        opacity: 1.0;
    }
    50% {
        transform: rotate(180deg) scale(0.9);
        background-position: 50% 50%, 50% 50%;
        opacity: 0.8;
    }
    75% {
        transform: rotate(270deg) scale(1.1);
        background-position: 75% 75%, 25% 25%;
        opacity: 0.9;
    }
    100% {
        transform: rotate(360deg) scale(1);
        background-position: 100% 100%, 0% 0%;
        opacity: 0.7;
    }
}

/* Responsive wind effects */
@media (max-width: 768px) {
    .bubble {
        animation-duration: 15s;
    }
    
    .floating-elements::before,
    .floating-elements::after {
        animation-duration: 20s;
    }
    
    .frutiger-wind-bg {
        animation-duration: 35s;
    }
    
    .frutiger-wind-bg::before,
    .frutiger-wind-bg::after {
        animation-duration: 45s, 55s;
    }
    
    .bubble-1, .bubble-2 {
        width: 40px;
        height: 40px;
    }
    
    .bubble-3, .bubble-5 {
        width: 30px;
        height: 30px;
    }
    
    .bubble-4 {
        width: 50px;
        height: 50px;
    }
}

/* Accessibility: Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .bubble,
    .floating-elements::before,
    .floating-elements::after,
    .main-content-panel::after,
    .frutiger-wind-bg,
    .frutiger-wind-bg::before,
    .frutiger-wind-bg::after {
        animation: none;
    }
    
    .bubble {
        opacity: 0.2;
    }
}

/* Entertainment Pages Styling */

/* TV Page */
.tv-page .page-title,
.music-player-page .page-title,
.videos-page .page-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tv-page .page-subtitle,
.music-player-page .page-subtitle,
.videos-page .page-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Content Grids */
.show-grid,
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.show-card,
.video-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.show-card:hover,
.video-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 201, 215, 0.2);
}

.show-thumbnail,
.video-thumbnail {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    background: rgba(0, 201, 215, 0.2);
    border-radius: 8px;
    padding: 1rem;
    position: relative;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0.8;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.show-info h3,
.video-info h3 {
    color: #00C9D7;
    margin-bottom: 0.5rem;
}

.show-info p,
.video-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Video Categories */
.music-player {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.album-art {
    width: 80px;
    height: 80px;
    background: rgba(0, 201, 215, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.track-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.track-artist {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.control-btn {
    background: rgba(0, 201, 215, 0.2);
    border: 1px solid rgba(0, 201, 215, 0.4);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(0, 201, 215, 0.4);
    transform: scale(1.1);
}

.play-pause {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.progress-bar {
    margin-bottom: 1rem;
}

.progress-track {
    background: rgba(255, 255, 255, 0.2);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    background: linear-gradient(90deg, #00C9D7, #0070D1);
    height: 100%;
    width: 30%;
    border-radius: 3px;
}

.time-display {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Service Lists */
.service-list,
.playlist-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.service-item,
.playlist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover,
.playlist-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 201, 215, 0.3);
}

.service-icon,
.playlist-icon {
    font-size: 1.5rem;
    width: 40px;
    display: flex;
    justify-content: center;
}

.service-name,
.playlist-info h4 {
    color: white;
    font-weight: 500;
}

.playlist-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Video Categories */
.video-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: rgba(0, 201, 215, 0.3);
    border-color: rgba(0, 201, 215, 0.5);
    color: white;
}

/* ===== SHOP PAGE STYLES ===== */

/* Breadcrumbs */
.shop-page .breadcrumbs {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.shop-page .breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop-page .breadcrumb-link:hover {
    color: #00C9D7;
}

.shop-page .breadcrumb-separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.shop-page .breadcrumb-current {
    color: white;
    font-weight: 500;
}

/* Product Container */
.shop-page .product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Product Images */
.shop-page .product-images {
    position: relative;
}

.shop-page .main-image-container {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-page .main-product-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.shop-page .main-product-image:hover {
    transform: scale(1.1);
}

.shop-page .zoom-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shop-page .main-image-container:hover .zoom-indicator {
    opacity: 1;
}

.shop-page .product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.shop-page .badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-page .badge.new {
    background: linear-gradient(45deg, #00C9D7, #0099ff);
    color: white;
}

.shop-page .badge.sale {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: white;
}

/* Thumbnail Gallery */
.shop-page .thumbnail-gallery {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.shop-page .thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.shop-page .thumbnail:hover,
.shop-page .thumbnail.active {
    border-color: #00C9D7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 201, 215, 0.3);
}

/* Product Info */
.shop-page .product-info {
    padding: 1rem 0;
}

.shop-page .product-header {
    margin-bottom: 1.5rem;
}

.shop-page .product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #00C9D7, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-page .product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shop-page .stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.shop-page .star.filled {
    color: #ffd700;
}

.shop-page .star {
    color: rgba(255, 255, 255, 0.3);
}

.shop-page .rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Price Section */
.shop-page .price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.shop-page .current-price {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.shop-page .original-price {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.shop-page .discount-percent {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Product Description */
.shop-page .product-description {
    margin-bottom: 2rem;
}

.shop-page .product-description p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Product Options */
.shop-page .product-options {
    margin-bottom: 2rem;
}

.shop-page .option-group {
    margin-bottom: 1.5rem;
}

.shop-page .option-label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Size Selector */
.shop-page .size-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.shop-page .size-btn {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 50px;
    text-align: center;
}

.shop-page .size-btn:hover,
.shop-page .size-btn.active {
    border-color: #00C9D7;
    background: rgba(0, 201, 215, 0.2);
    color: white;
    transform: translateY(-2px);
}

.shop-page .size-guide-btn {
    background: none;
    border: none;
    color: #00C9D7;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.shop-page .size-guide-btn:hover {
    color: #0099ff;
}

/* Color Selector */
.shop-page .color-selector {
    display: flex;
    gap: 0.75rem;
}

.shop-page .color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.shop-page .color-btn:hover,
.shop-page .color-btn.active {
    border-color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Inventory Status */
.shop-page .inventory-status {
    margin-bottom: 1.5rem;
}

.shop-page .stock-indicator {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.9rem;
}

.shop-page .stock-indicator.low-stock {
    color: #ffb84d;
}

.shop-page .stock-indicator.in-stock {
    color: #51cf66;
}

/* Add to Cart Section */
.shop-page .add-to-cart-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.shop-page .quantity-selector {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shop-page .qty-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-page .qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.shop-page .qty-input {
    background: none;
    border: none;
    color: white;
    text-align: center;
    width: 60px;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.shop-page .add-to-cart-btn {
    flex: 1;
    background: linear-gradient(45deg, #00C9D7, #0099ff);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}

.shop-page .add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 201, 215, 0.4);
}

.shop-page .buy-now-btn {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-height: 60px;
}

.shop-page .buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.4);
}

/* Product Features */
.shop-page .product-features {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.shop-page .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.shop-page .feature-icon {
    font-size: 1.2rem;
}

/* Product Details Tabs */
.shop-page .product-details-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin-bottom: 4rem;
}

.shop-page .tab-navigation {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-page .tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border-bottom: 3px solid transparent;
}

.shop-page .tab-btn:hover,
.shop-page .tab-btn.active {
    color: white;
    background: rgba(0, 201, 215, 0.1);
    border-bottom-color: #00C9D7;
}

.shop-page .tab-content {
    padding: 2rem;
}

.shop-page .tab-panel {
    display: none;
}

.shop-page .tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.shop-page .tab-panel h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.shop-page .tab-panel p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.shop-page .tab-panel ul {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.5rem;
}

.shop-page .tab-panel li {
    margin-bottom: 0.5rem;
}

/* Materials Grid */
.shop-page .materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.shop-page .material-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-page .material-item strong {
    color: #00C9D7;
    display: block;
    margin-bottom: 0.5rem;
}

/* Shipping Info */
.shop-page .shipping-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.shop-page .info-section h4 {
    color: #00C9D7;
    margin-bottom: 1rem;
}

/* Reviews */
.shop-page .reviews-summary {
    margin-bottom: 2rem;
}

.shop-page .rating-breakdown {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-page .overall-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shop-page .rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.shop-page .rating-stars {
    font-size: 1.5rem;
    color: #ffd700;
}

.shop-page .review-count {
    color: rgba(255, 255, 255, 0.7);
}

.shop-page .review-placeholder {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Upsell Section */
.shop-page .upsell-section {
    margin-bottom: 4rem;
}

.shop-page .upsell-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.shop-page .related-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.shop-page .related-product {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.shop-page .related-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 201, 215, 0.2);
}

.shop-page .related-product img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.shop-page .related-product h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.shop-page .related-product .price {
    color: #00C9D7;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
}

.shop-page .quick-add-btn {
    background: linear-gradient(45deg, #00C9D7, #0099ff);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.shop-page .quick-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 201, 215, 0.4);
}

/* Sticky Mobile Cart */
.shop-page .sticky-mobile-cart {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    z-index: 1000;
}

.shop-page .mobile-cart-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 500px;
    margin: 0 auto;
}

.shop-page .mobile-price {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.shop-page .mobile-add-cart {
    background: linear-gradient(45deg, #00C9D7, #0099ff);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
}

/* Size Guide Modal */
.shop-page .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.shop-page .modal-overlay.active {
    display: flex;
}

.shop-page .modal-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: auto;
}

.shop-page .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-page .modal-header h3 {
    color: white;
    margin: 0;
}

.shop-page .modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-page .modal-body {
    padding: 1.5rem;
}

.shop-page .size-chart {
    width: 100%;
    border-collapse: collapse;
}

.shop-page .size-chart th,
.shop-page .size-chart td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.shop-page .size-chart th {
    color: #00C9D7;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-page .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .shop-page .product-title {
        font-size: 2rem;
    }
    
    .shop-page .add-to-cart-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .shop-page .add-to-cart-btn,
    .shop-page .buy-now-btn {
        width: 100%;
    }
    
    .shop-page .tab-navigation {
        flex-wrap: wrap;
    }
    
    .shop-page .tab-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .shop-page .related-products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-page .sticky-mobile-cart {
        display: block;
    }
    
    .shop-page .add-to-cart-section {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .shop-page .related-products {
        grid-template-columns: 1fr;
    }
    
    .shop-page .size-selector {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .shop-page .materials-grid,
    .shop-page .shipping-info {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* SHOP CATALOG STYLES - Magazine Layout */
.shop-catalog {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(0, 201, 215, 0.05) 0%, 
        rgba(138, 43, 226, 0.08) 50%, 
        rgba(255, 20, 147, 0.05) 100%);
    min-height: 100vh;
}

.shop-catalog .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.shop-catalog .breadcrumb-link {
    color: #00C9D7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-catalog .breadcrumb-link:hover {
    color: #ff1493;
    text-shadow: 0 0 5px rgba(255, 20, 147, 0.5);
}

.shop-catalog .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.shop-catalog .breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Shop Header */
.shop-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shop-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00c9d7, #ff1493, #8a2be2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 201, 215, 0.3);
}

.shop-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Shop Controls */
.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, #00c9d7, #0099ff);
    border-color: #00c9d7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 201, 215, 0.4);
}

.sort-select {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-size: 0.95rem;
    min-width: 180px;
}

.sort-select option {
    background: #1a1a1a;
    color: white;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 201, 215, 0.2);
    border-color: rgba(0, 201, 215, 0.3);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(45deg, rgba(0, 201, 215, 0.1), rgba(255, 20, 147, 0.1));
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.badge.new {
    background: linear-gradient(45deg, #00ff88, #00c9d7);
    color: white;
}

.badge.sale {
    background: linear-gradient(45deg, #ff1493, #ff6b35);
    color: white;
}

.badge.featured {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #1a1a1a;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-actions {
    display: flex;
    gap: 0.5rem;
}

.quick-view-btn,
.add-to-cart-quick {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quick-view-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.add-to-cart-quick {
    background: linear-gradient(45deg, #00c9d7, #0099ff);
    color: white;
    border: none;
}

.quick-view-btn:hover,
.add-to-cart-quick:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 201, 215, 0.4);
}

/* Product Info Card */
.product-info-card {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-description-short {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.product-rating-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars-small {
    color: #ffd700;
    font-size: 0.9rem;
}

.review-count-small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.product-price-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-price-card .current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00c9d7;
}

.product-price-card .original-price {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.product-colors-preview {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color-dot:hover {
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.color-more {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.3rem;
}

.view-product-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(45deg, rgba(0, 201, 215, 0.8), rgba(138, 43, 226, 0.8));
    border: 1px solid rgba(0, 201, 215, 0.3);
    border-radius: 10px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.view-product-btn:hover {
    background: linear-gradient(45deg, #00c9d7, #8a2be2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 201, 215, 0.3);
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin: 3rem 0;
}

.load-more-btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.load-more-btn:hover {
    background: linear-gradient(45deg, #00c9d7, #0099ff);
    border-color: #00c9d7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 201, 215, 0.4);
}

/* Featured Collections */
.featured-collections {
    margin: 4rem 0;
}

.collections-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #00c9d7, #ff1493);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.collection-card {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 201, 215, 0.3);
}

.collection-image {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #00c9d7 0%, #ff1493 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-collection .collection-image {
    background: linear-gradient(135deg, #00c9d7 0%, #0099ff 100%);
}

.retro-collection .collection-image {
    background: linear-gradient(135deg, #ff1493 0%, #8a2be2 100%);
}

.limited-collection .collection-image {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
}

.collection-overlay {
    text-align: center;
    color: white;
    z-index: 2;
}

.collection-overlay h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.collection-overlay p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.collection-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.collection-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
    backdrop-filter: blur(20px);
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, #00c9d7, #0099ff);
    border: none;

/* Additional Floating Bubble Effects for Enhanced Frutiger Aero */
.content-window::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(78, 199, 212, 0.15) 60%, transparent 80%);
    border-radius: 50%;
    animation: bubblesFloat 12s infinite ease-in-out;
    animation-delay: 2s;
    pointer-events: none;
    z-index: 2;
}

.content-window::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -20px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(0, 201, 215, 0.25) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: bubblesFloat 18s infinite ease-in-out reverse;
    animation-delay: 6s;
    pointer-events: none;
    z-index: 2;
}

/* Floating particles for atmospheric effect */
@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translateY(-30px) translateX(20px) scale(1.2) rotate(120deg);
        opacity: 0.6;
    }
    66% {
        transform: translateY(-60px) translateX(-15px) scale(0.8) rotate(240deg);
        opacity: 0.9;
    }
}

/* Add particle effects to main background */
.gradient-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 15%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    border-radius: 50%;
    animation: particleFloat 20s infinite linear;
    pointer-events: none;
    z-index: 1;
}

.gradient-bg::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 25%;
    width: 45px;
    height: 45px;
    background: radial-gradient(circle, rgba(78, 199, 212, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    animation: particleFloat 25s infinite linear reverse;
    animation-delay: 10s;
    pointer-events: none;
    z-index: 1;
}
    border-radius: 10px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 201, 215, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-catalog {
        padding: 1rem;
    }
    
    .shop-title {
        font-size: 2.5rem;
    }
    
    .shop-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .filter-section {
        justify-content: center;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-section {
        flex-direction: column;
        align-items: center;
    }
    
    .shop-title {
        font-size: 2rem;
    }
}

/* FRUTIGER AERO NAVIGATION BAR - FINAL OVERRIDE STYLES */
.main-layout-container .sidebar.frutiger_aero_nav_bar {
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    width: 200px !important;
    height: calc(100vh - 40px) !important;
    background: linear-gradient(135deg, 
        rgba(78, 199, 212, 0.8) 0%,
        rgba(0, 201, 215, 0.7) 25%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(78, 199, 212, 0.7) 75%,
        rgba(0, 153, 255, 0.8) 100%
    ),
    url('/assets/images/blue-abstract-background.jpg') !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay !important;
    backdrop-filter: blur(25px) saturate(1.2) !important;
    border: 3px solid rgba(78, 199, 212, 0.9) !important;
    border-radius: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(78, 199, 212, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.3) !important;
    padding: 0 !important;
    overflow: hidden !important;
    z-index: 6 !important;
    animation: frutigerNavFlowFinal 20s infinite ease-in-out !important;
}

/* Frutiger Aero Navigation Animation - Final */
@keyframes frutigerNavFlowFinal {
    0%, 100% {
        background-position: 0% 50%, center;
        filter: brightness(1.0) contrast(1.1) hue-rotate(0deg);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.4),
            0 4px 16px rgba(78, 199, 212, 0.5),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
    }
    25% {
        background-position: 25% 25%, center top;
        filter: brightness(1.2) contrast(1.2) hue-rotate(15deg);
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.5),
            0 6px 20px rgba(78, 199, 212, 0.6),
            inset 0 1px 3px rgba(255, 255, 255, 0.4);
    }
    50% {
        background-position: 50% 0%, center bottom;
        filter: brightness(1.1) contrast(1.3) hue-rotate(30deg);
        box-shadow: 
            0 10px 36px rgba(0, 0, 0, 0.45),
            0 5px 18px rgba(0, 201, 215, 0.4),
            inset 0 1px 2px rgba(255, 255, 255, 0.35);
    }
    75% {
        background-position: 75% 75%, center;
        filter: brightness(1.3) contrast(1.1) hue-rotate(45deg);
        box-shadow: 
            0 14px 44px rgba(0, 0, 0, 0.4),
            0 7px 22px rgba(0, 153, 255, 0.4),
            inset 0 1px 4px rgba(255, 255, 255, 0.3);
    }
}

/* Frutiger Aero Logo Styling - Final */
.main-layout-container .sidebar.frutiger_aero_nav_bar .logo {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%,
        rgba(78, 199, 212, 0.4) 50%,
        rgba(0, 201, 215, 0.3) 100%
    );
    padding: 1rem 1.5rem !important;
    font-size: 1.3em !important;
    font-weight: bold !important;
    color: #ffffff !important;
    text-align: center !important;
    border-bottom: 2px solid rgba(78, 199, 212, 0.5) !important;
    backdrop-filter: blur(15px) saturate(1.3) !important;
    margin: 0 !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(78, 199, 212, 0.5) !important;
}

/* Professional Background Image Standards */

/* High DPI and Retina Display Support */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min--moz-device-pixel-ratio: 2),
       only screen and (-o-min-device-pixel-ratio: 2/1),
       only screen and (min-device-pixel-ratio: 2),
       only screen and (min-resolution: 192dpi),
       only screen and (min-resolution: 2dppx) {
    .gradient-bg {
        /* Enhanced background for high-resolution displays */
        background-image: url('/assets/backgrounds/frutiger_aero_bg.jpg');
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion Support for Accessibility */
@media (prefers-reduced-motion: reduce) {
    .gradient-bg {
        animation: none !important;
    }
    .floating-elements .bubble,
    .wind-particle {
        animation: none !important;
        transform: none !important;
    }
}

/* Dark Mode and High Contrast Support */
@media (prefers-contrast: high) {
    .gradient-bg {
        filter: contrast(1.2) brightness(1.1);
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .background-container {
        /* Fixed background attachment can cause issues on mobile */
        background-attachment: scroll;
    }
    .gradient-bg {
        background-attachment: scroll;
        /* Optimize for mobile performance */
        will-change: auto;
    }
}

/* Print Styles */
@media print {
    .background-container,
    .gradient-bg,
    .floating-elements {
        display: none !important;
    }
}
