:root {
    /* Primary and Secondary Colors - Change these to update the theme */
    --primary: #b6a7fa;
    --primary-light: #c9bcfc;
    --primary-dark: #9d8bf7;
    --secondary: #10b981;
    --secondary-dark: #047857;
    --secondary-light: #34d399;

    /* Primary color with alpha variants - UPDATE THESE WHEN CHANGING PRIMARY COLOR */
    --primary-soft: rgba(182, 167, 250, 0.15);
    --primary-alpha-30: rgba(182, 167, 250, 0.3);
    --primary-alpha-20: rgba(182, 167, 250, 0.2);
    --primary-alpha-05: rgba(182, 167, 250, 0.05);
    --primary-alpha-40: rgba(182, 167, 250, 0.4);
    --primary-alpha-10: rgba(182, 167, 250, 0.1);

    /* Map legacy purple variables to primary colors for backward compatibility */
    --purple: var(--primary);
    --purple-light: var(--primary-light);
    --purple-dark: var(--primary-dark);
    --purple-soft: var(--primary-soft);

    /* Background Colors */
    --bg-root: #080808;
    --bg-panel: rgba(255, 255, 255, 0.02);
    --bg-panel-solid: #151515;
    --bg-accent: #212121;

    /* Border Colors */
    --border-color: rgba(255, 255, 255, 0.07);
    --border-color-alt: #2e3337;

    /* Text Colors */
    --text: #ffffff;
    --text-dim: #9ca3af;
    --text-soft: #6b7280;

    /* Utility Colors */
    --emerald: var(--secondary);
    --emerald-bg: #064e3b;
    --gradient-fade: linear-gradient(to bottom, #0f0917, #040404 65%);
    --font-ui: "Space Grotesk", system-ui, sans-serif;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    font-family: var(--font-ui);
    background: var(--bg-root);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.app-shell {
    min-height: 100vh;
    background: var(--gradient-fade);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
}

/* Header */
.header {
    background: #020202;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(16px, 4vw, 48px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.4px;
}

.brand-logo {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

/* Navigation container */
.nav-container {
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
}

/* Header wrapper should not clip the dropdown */
.header {
    position: relative;
    z-index: 1000;
    overflow: visible;
}

/* Keep brand on the left */
.nav-container .brand {
    margin-right: auto;
}

/* Group right-side controls visually */
.nav-container .header-actions,
.nav-container .mobile-menu-toggle {
    margin-left: 8px;
}

/* Navigation element always present */
nav {
    display: block;
}

.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin: 8px 16px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

.nav-menu.mobile-open {
    display: flex !important;
    animation: slideDown 0.3s ease;
}

/* Stronger selector to ensure the toggle always works */
#navMenu.mobile-open {
    display: flex !important;
}

/* Ensure list basics */
.nav-menu {
    list-style: none;
}

/* Animation for mobile menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item {
    width: 100%;
}

.nav-item a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-item a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.nav-item:last-child a {
    border-bottom: none;
}

/* Mobile actions in navigation */
.mobile-actions {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    margin-top: 8px;
}

.mobile-nav-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 8px;
}

.mobile-nav-action:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.mobile-nav-action i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.mobile-nav-action span:last-child {
    margin-left: auto;
    background: var(--primary);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    min-width: 20px;
    text-align: center;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

/* Mobile search icon */
.mobile-search-icon {
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    margin-right: 8px;
}

.mobile-search-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

/* Hide desktop header actions on mobile, show on desktop */
@media (min-width: 769px) {
    .desktop-only {
        display: flex !important;
    }

    .mobile-actions {
        display: none;
    }

    /* Show regular nav on desktop instead of mobile menu */
    nav {
        display: block;
    }

    .nav-menu {
        position: static;
        display: flex !important;
        flex-direction: row;
        gap: 32px;
        background: transparent;
        backdrop-filter: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        box-shadow: none;
        align-items: center;
    }

    .nav-item a {
        display: inline-block;
        padding: 8px 12px;
        border-bottom: none;
        width: auto;
        text-align: center;
        font-size: 14px;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .mobile-search-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-search-icon {
        display: flex !important;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-container {
    position: relative;
}

.search-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 40px 10px 16px;
    width: 280px;
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.search-box:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--purple);
}

.search-box::placeholder {
    color: var(--text-dim);
}

.search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 16px;
}

.cart-icon {
    position: relative;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
    cursor: pointer;
}

.cart-icon:hover {
    background: rgba(255, 255, 255, 0.12);
}

.wishlist-icon {
    position: relative;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
    cursor: pointer;
    margin-right: 8px;
}

.wishlist-icon:hover {
    background: rgba(255, 255, 255, 0.12);
}

.wishlist-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--purple);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    /* Ensure GIFs play smoothly */
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Specific optimization for GIF slides */
.slide-background[data-is-gif="true"] {
    /* Disable any transforms that might affect animation */
    will-change: auto;
    backface-visibility: hidden;
    /* Ensure smooth animation */
    animation-fill-mode: both;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    transform: translateY(0);
    animation: parallaxSlideIn 1s ease-out;
}

@keyframes parallaxSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content.parallax-active {
    animation: parallaxFloat 3s ease-in-out infinite;
}

@keyframes parallaxFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.slide-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color, #f59e0b);
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.slide-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.slide-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.slide-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
}

.slide-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.slide-indicators {
    display: flex;
    gap: 0.75rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.indicator.active {
    background: white;
    transform: scale(1.3);
    border-radius: 50%;
}

.indicator::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: border-color 0.3s ease;
}

.indicator.active::before {
    border-color: rgba(255, 255, 255, 0.5);
}

/* Slide Transitions */
.slide-enter {
    opacity: 0;
    transform: translateX(100%);
}

.slide-enter-active {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-exit {
    opacity: 1;
    transform: translateX(0);
}

.slide-exit-active {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Parallax Background Effect */
.parallax-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.1s ease-out;
}

/* Legacy Hero Section (fallback) */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(90deg, var(--purple), var(--purple-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--primary-alpha-30);
}

/* Customer Reviews Section */
.reviews {
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.review-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            var(--primary-alpha-05) 0%,
            rgba(124, 58, 237, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--purple);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.15);
}

.review-card:hover::before {
    opacity: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.customer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.customer-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 4px 0;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #fbbf24;
    font-size: 14px;
}

.review-text {
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.verified {
    color: #10b981;
    font-weight: 600;
}

.review-date {
    color: var(--text-soft);
}

.reviews-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    gap: 40px;
    flex-wrap: wrap;
}

.overall-rating {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 20px;
}

.rating-text {
    color: var(--text-dim);
    font-size: 14px;
}

.trust-indicators {
    display: flex;
    gap: 32px;
    flex: 2;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    min-width: 120px;
}

.trust-item i {
    font-size: 32px;
    color: var(--purple);
}

.trust-item span {
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.01);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.product-card {
    border: 1px solid var(--border-color-alt);
    background: var(--bg-panel);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.04),
            transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--purple);
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--purple);
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--purple);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.product-badge.new {
    background: var(--emerald);
}

.product-badge.sale {
    background: #ef4444;
}

.product-info {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.product-team {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 16px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.stars {
    color: #ffd700;
}

.rating-text {
    color: var(--text-dim);
    font-size: 13px;
}

.product-sizes {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.size-option {
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dim);
}

.size-option:hover,
.size-option.selected {
    border-color: var(--purple);
    background: var(--purple-soft);
    color: var(--text);
}

.add-to-cart {
    width: 100%;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-alpha-30);
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-alpha-30);
}

/* Loading */
.loading {
    display: none;
    text-align: center;
    padding: 60px 0;
    color: var(--purple);
}

.spinner {
    border: 3px solid var(--primary-alpha-30);
    border-top: 3px solid var(--purple);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Footer */
.footer {
    background: #020202;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--purple);
}

.footer-section p,
.footer-section a {
    color: var(--text-dim);
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--purple);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-accent);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 13px;
    padding-top: 9px;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: white;
    transform: translateY(-2px);
}

.newsletter-form {
    margin-top: 16px;
}

.newsletter-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 12px;
    outline: none;
    font-family: 'Space Grotesk', sans-serif;
}

.newsletter-form input:focus {
    border-color: var(--purple);
}

.newsletter-form button {
    width: 100%;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

/* Newsletter CTA above footer: centered layout with responsive form */
.newsletter-cta {
    padding: 36px 0 24px;
    background: transparent;
    color: var(--text);
}

.newsletter-cta .container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 18px;
    padding: 0 clamp(16px, 4vw, 48px);
}

.newsletter-cta .newsletter-inner {
    max-width: 880px;
    width: 100%;
}

.newsletter-cta .newsletter-inner h3 {
    font-size: 20px;
    color: var(--purple);
    margin-bottom: 6px;
}

.newsletter-cta .newsletter-inner p {
    color: var(--text-dim);
    margin-bottom: 12px;
}

.newsletter-cta .newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-cta .newsletter-form input {
    flex: 1 1 280px;
    max-width: 300px;
    width: 100%;
    min-width: 200px;
}

.newsletter-cta .newsletter-form button {
    width: auto;
    padding: 12px 18px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: var(--text-soft);
    font-size: 13px;
}

/* Mobile Responsive */

/* Mobile First - Small devices (phones, 600px and down) */
@media (max-width: 600px) {

    /* Global mobile improvements */
    body {
        font-size: 14px;
    }

    /* Button improvements for mobile touch */
    button,
    .btn,
    .cta-button {
        min-height: 44px;
        font-size: 14px;
        padding: 12px 20px;
    }

    /* Input improvements for mobile */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"] {
        min-height: 44px;
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 12px 16px;
    }

    /* Container mobile spacing */
    .container {
        padding: 0 12px;
    }

    /* Newsletter form mobile */
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
        margin: 0;
        font-size: 16px;
        height: 48px !important;
        max-height: 48px !important;
        min-height: 48px !important;
        box-sizing: border-box;
        line-height: 1.2;
        padding: 12px 16px;
    }

    .newsletter-form button {
        width: 100%;
        padding: 12px;
        height: 48px !important;
        max-height: 48px !important;
        min-height: 48px !important;
        box-sizing: border-box;
        line-height: 1.2;
    }

    /* Reviews Section Mobile */
    .reviews {
        padding: 40px 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .review-card {
        padding: 16px;
        margin: 0 4px;
    }

    .customer-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .customer-info h4 {
        font-size: 15px;
    }

    .rating i {
        font-size: 13px;
    }

    .review-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .reviews-summary {
        padding: 20px;
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }

    .overall-rating {
        min-width: auto;
    }

    .rating-number {
        font-size: 32px;
    }

    .rating-stars i {
        font-size: 18px;
    }

    .trust-indicators {
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .trust-item {
        min-width: 80px;
    }

    .trust-item i {
        font-size: 24px;
    }

    .trust-item span {
        font-size: 13px;
    }

    /* Footer mobile adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-links {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Slideshow mobile styles */
    .hero-slideshow {
        height: 70vh;
        min-height: 400px;
    }

    .slide-content {
        padding: 0 1rem;
        text-align: center;
    }

    .slide-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .slide-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 8px;
        min-width: 140px;
    }

    .slideshow-nav {
        bottom: 1rem;
        gap: 0.75rem;
        padding: 0 1rem;
        justify-content: space-between;
        align-items: center;
    }

    .nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 10;
    }

    .nav-btn:hover {
        background: rgba(0, 0, 0, 0.8);
        transform: scale(1.05);
    }

    .slideshow-indicators {
        gap: 0.5rem;
        flex: 1;
        justify-content: center;
        padding: 0 20px;
    }

    .indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .indicator.active {
        transform: scale(1.5);
        background: var(--purple);
        border-radius: 50%;
    }
}

/* Tablet and small desktop (768px and down) */
@media (max-width: 768px) {

    /* Navigation */
    .nav-container {
        padding: 0 16px;
        position: relative;
    }

    .header-actions {
        gap: 8px;
    }

    .search-container {
        order: -1;
        flex: 1;
        max-width: 200px;
    }

    .search-box {
        width: 100%;
        font-size: 14px;
        padding: 10px 40px 10px 12px;
    }

    .search-btn {
        right: 8px;
        width: 32px;
        height: 32px;
    }

    .cart-icon {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .cart-icon:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: scale(1.05);
    }

    .cart-count {
        position: absolute;
        top: -8px;
        right: -8px;
        background: var(--purple);
        color: white;
        font-size: 12px;
        font-weight: 600;
        padding: 2px 6px;
        border-radius: 10px;
        min-width: 18px;
        text-align: center;
    }

    /* Reviews Section */
    .reviews {
        padding: 60px 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }

    .review-card {
        padding: 20px;
    }

    .reviews-summary {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
        text-align: center;
    }

    .overall-rating {
        min-width: auto;
    }

    .rating-number {
        font-size: 36px;
    }

    .trust-indicators {
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .trust-item {
        min-width: 100px;
    }

    .trust-item i {
        font-size: 28px;
    }

    /* Newsletter CTA */
    .newsletter-cta {
        padding: 40px 0;
    }

    .newsletter-inner {
        padding: 32px 20px;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .newsletter-form input {
        width: 100%;
        margin: 0;
    }

    .newsletter-form button {
        width: 100%;
    }

    /* Grids */
    .category-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Product Cards */
    .product-card {
        margin: 0 8px;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 16px;
    }

    .product-title {
        font-size: 16px;
    }

    .product-price {
        font-size: 18px;
    }

    .product-sizes {
        justify-content: center;
        gap: 8px;
    }

    .size-option {
        padding: 6px 10px;
        font-size: 12px;
    }

    .add-to-cart {
        padding: 12px 16px;
        font-size: 14px;
    }

    /* Account Page */
    .account-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .account-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .account-hero h2 {
        font-size: 24px;
    }

    .account-panel {
        padding: 16px;
    }

    /* Products Page */
    .products-container {
        padding: 16px;
    }

    .products-header {
        padding: 24px 16px;
        margin-bottom: 24px;
    }

    .products-header h1 {
        font-size: 28px;
    }

    .category-section {
        margin-bottom: 32px;
    }

    .category-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    /* Footer */
    .footer {
        padding: 40px 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-links {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Mobile phones (480px and down) */
@media (max-width: 480px) {

    /* Header */
    .nav-container {
        padding: 0 12px;
    }

    .brand {
        font-size: 18px;
    }

    .search-container {
        max-width: 150px;
    }

    .search-box {
        width: 100%;
        padding: 8px 35px 8px 10px;
        font-size: 14px;
    }

    .search-btn {
        right: 6px;
        font-size: 14px;
        width: 28px;
        height: 28px;
    }

    .mobile-menu-toggle,
    .cart-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* Reviews Section Mobile */
    .reviews {
        padding: 40px 0;
    }

    .review-card {
        padding: 16px;
        margin: 0 4px;
    }

    .customer-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .customer-info h4 {
        font-size: 15px;
    }

    .rating i {
        font-size: 13px;
    }

    .review-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .reviews-summary {
        padding: 20px;
        gap: 20px;
    }

    .rating-number {
        font-size: 32px;
    }

    .rating-stars i {
        font-size: 18px;
    }

    .trust-indicators {
        gap: 16px;
    }

    .trust-item {
        min-width: 80px;
    }

    .trust-item i {
        font-size: 24px;
    }

    .trust-item span {
        font-size: 13px;
    }

    /* Newsletter CTA Mobile */
    .newsletter-inner {
        padding: 24px 16px;
    }

    .newsletter-inner h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .newsletter-inner p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .newsletter-form input {
        padding: 12px 16px;
        font-size: 14px;
        height: 44px !important;
        max-height: 44px !important;
        min-height: 44px !important;
        box-sizing: border-box;
        line-height: 1.2;
    }

    .newsletter-form button {
        padding: 12px 16px;
        font-size: 14px;
        height: 44px !important;
        max-height: 44px !important;
        min-height: 44px !important;
        box-sizing: border-box;
        line-height: 1.2;
    }

    /* Slideshow extra small mobile styles */
    .hero-slideshow {
        height: 60vh;
        min-height: 320px;
    }

    .slide-content {
        padding: 0 0.75rem;
    }

    .slide-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin-bottom: 0.75rem;
        line-height: 1.1;
    }

    .slide-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        max-width: 95%;
        line-height: 1.3;
    }

    .slide-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        min-width: 120px;
    }

    .slideshow-nav {
        bottom: 0.5rem;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .slideshow-indicators {
        padding: 0 10px;
    }

    .indicator {
        width: 6px;
        height: 6px;
    }

    .slideshow-indicators {
        padding: 0 10px;
    }

    .indicator {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .indicator.active {
        transform: scale(1.8);
        border-radius: 50%;
    }

    /* Container mobile spacing */
    .container {
        padding: 0 12px;
    }
}

/* Hero */
.hero {
    padding: 24px 0;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
}

.hero p {
    font-size: 14px;
    padding: 0 12px;
}

/* Product Cards */
.product-card {
    margin: 0 4px;
    border-radius: 12px;
}

.product-image {
    height: 180px;
}

.product-info {
    padding: 12px;
}

.product-title {
    font-size: 14px;
    margin-bottom: 8px;
}

.product-team,
.product-league {
    font-size: 12px;
}

.product-price {
    font-size: 16px;
    margin: 8px 0;
}

.add-to-cart {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 8px;
}

/* Account */
.account-panel {
    padding: 12px;
    border-radius: 8px;
}

.panel-title {
    font-size: 16px;
}

.form-field input {
    padding: 8px 10px;
    font-size: 14px;
}

.save-btn {
    padding: 10px 12px;
    font-size: 14px;
}

/* Products Page */
.products-container {
    padding: 12px;
}

.products-header {
    padding: 20px 12px;
    border-radius: 12px;
}

.products-header h1 {
    font-size: 24px;
}

.category-title {
    font-size: 18px;
}

/* Utilities */
.container {
    padding: 0 12px;
}

/* Large tablets and small laptops (880px and down) */
@media (max-width: 880px) {
    .account-grid {
        grid-template-columns: 1fr;
    }

    .account-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .nav-container {
        padding: 0 48px;
    }

    .hero-content {
        padding: 0 48px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .footer-content {
        padding: 0 48px;
    }
}

/* Show mobile menu toggle by default */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--emerald);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    z-index: 10000;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

/* Account page styles - modern card UI */
.account-hero {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.account-hero .welcome {
    color: var(--text-dim);
    font-size: 16px;
}

.account-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
}

.account-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px;
    border-radius: 12px;
}

.profile-card h3,
.panel-title {
    font-size: 18px;
    color: var(--purple);
    margin-bottom: 12px;
}

.profile-info p {
    margin-bottom: 8px;
    color: var(--text-dim);
}

.addresses-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.address-item {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 8px;
    color: var(--text);
}

.address-item strong {
    color: var(--text);
}

.saved-cart pre {
    background: #0b0b0b;
    padding: 10px;
    border-radius: 8px;
    max-height: 160px;
    overflow: auto;
}

.form-field {
    margin-bottom: 10px;
}

.form-field input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    color: var(--text);
}

.save-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: white;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.muted {
    color: var(--text-dim);
}

@media (max-width: 880px) {
    .account-grid {
        grid-template-columns: 1fr;
    }

    .account-hero {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Products Page Styles */
.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-root);
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.products-header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.category-section {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--purple-light);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--purple);
    display: inline-block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-panel);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px var(--primary-alpha-20);
    border-color: var(--purple);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--bg-accent), var(--bg-panel));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple-light);
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-alpha-40);
}

/* ====== RESPONSIVE NAVIGATION STYLES ====== */

/* Desktop styles (769px and larger) */
@media (min-width: 769px) {
    .desktop-only {
        display: flex !important;
    }

    .mobile-actions {
        display: none;
    }

    /* Show regular nav on desktop instead of mobile menu */
    nav {
        display: block !important;
    }

    .nav-menu {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 32px !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        align-items: center !important;
    }

    .nav-item a {
        display: inline-block !important;
        padding: 8px 12px !important;
        border-bottom: none !important;
        width: auto !important;
        text-align: center !important;
        font-size: 14px !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Mobile styles (768px and smaller) */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-actions {
        display: block !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    nav {
        display: block !important;
    }

    .nav-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        display: none !important;
        flex-direction: column !important;
        gap: 0 !important;
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 12px !important;
        padding: 16px !important;
        margin: 8px 16px 0 !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
        z-index: 1001 !important;
    }

    .nav-menu.mobile-open {
        display: flex !important;
    }
}