/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #333333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}



/* Header Styles */
.header {
    background-color: transparent;
    backdrop-filter: none;
    border-bottom: none;
    position: fixed;
    top: 0;
    opacity: 1 !important;
    visibility: visible !important;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: none;
    transition: all 0.8s ease;
    overflow: hidden;
}




/* Header background states */
.header.hero-background {
    background-color: transparent;
    backdrop-filter: none;
}

.header.content-background {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.visible {
    opacity: 1;
    visibility: visible;
}

.header-container {
    width: 100%;
    padding: 0 clamp(1rem, 2vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: clamp(60px, 8vh, 80px);
    position: relative;
    z-index: 2; /* Ensure content is above smoke video */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-container:hover {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

/* Centered Logo */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo colors - always visible */
.logo-img {
    filter: none; /* Keep logo original colors - always visible */
}

.logo:hover .logo-img {
    transform: scale(1.05);
}









/* Navigation Menu */
/* Desktop Navigation - visible on desktop */
.desktop-nav {
    display: flex !important;
}

/* Mobile Navigation - hidden on desktop */
.mobile-nav-menu {
    display: none;
}

.nav-menu {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    flex: 1;
    padding-left: clamp(0.5rem, 1vw, 1rem);
    z-index: 0;
    opacity: 1 !important;
    visibility: visible !important;
}

.header-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #000000; /* Black line */
    opacity: 1;
}

.nav-list {
    display: flex !important;
    list-style: none;
    gap: clamp(0.25rem, 0.5vw, 0.5rem);
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 16px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-icon {
    filter: brightness(0) invert(0); /* Make icons dark - always visible */
}

.nav-link:hover .nav-icon {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(90deg); /* Green tint on hover */
    transform: scale(1.1);
}

/* Navigation link colors - ALWAYS DARK */
.header .nav-link {
    color: #333333 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure all nav links are always dark, regardless of header background class */
.header.hero-background .nav-link,
.header.content-background .nav-link {
    color: #333333 !important;
}

/* Navigation link colors when header-container is hovered */
.header-container:hover .nav-link {
    color: #333333;
}

.nav-link:hover {
    color: #12ad5f;
    transform: translateY(-2px);
}

/* Hover effects for different backgrounds */
.header.hero-background .nav-link:hover {
    color: #12ad5f;
}

.header.content-background .nav-link:hover {
    color: #12ad5f;
}

.nav-link i {
    font-size: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-link:hover i {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #12ad5f, #01d566);
    transition: width 0.3s ease;
}

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



/* Right Side Icons */
.right-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    flex: 1;
    padding-right: clamp(0.5rem, 1vw, 1rem);
    z-index: 0;
}

.login-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    border: 1px solid transparent;
}

.login-link {
    color: #333333; /* Always visible */
}

.login-link:hover {
    color: #12ad5f;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #12ad5f;
}

/* User Menu and Logout Styles */
.user-menu-link {
    text-decoration: none !important;
    color: #333333 !important;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    pointer-events: auto;
    display: inline-block;
}

.user-menu-link:hover {
    color: #12ad5f;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #12ad5f;
}

.profile-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-text {
    display: inline-block;
}

.user-menu-link:visited,
.user-menu-link:active,
.user-menu-link:focus {
    color: #333333 !important;
    text-decoration: none !important;
}

.logout-link {
    text-decoration: none !important;
    color: #333333 !important;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    border: 1px solid transparent;
    display: inline-block;
}

.logout-link:visited,
.logout-link:active,
.logout-link:focus {
    color: #333333 !important;
    text-decoration: none !important;
}

.logout-link:hover {
    color: #12ad5f;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #12ad5f;
}

.right-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
}

.right-icon {
    width: 20px;
    height: 20px;
    display: block;
    transition: all 0.3s ease;
    filter: brightness(0) invert(0); /* Make icons dark by default */
}

.right-icon {
    filter: brightness(0) invert(0); /* Make icons dark - always visible */
}

.right-icon-link:hover .right-icon {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(90deg); /* Green tint on hover */
    transform: scale(1.1);
}

.right-icon-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.currency-icon {
    cursor: pointer;
    border: 1px solid #000000;
    border-radius: 0;
    padding: clamp(4px, 0.5vw, 6px) clamp(8px, 1vw, 12px);
    min-width: clamp(32px, 4vw, 40px);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
}

.currency-icon:hover {
    background: #000000;
}

.currency-display {
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.currency-icon:hover .currency-display {
    color: #ffffff;
}

.favorites-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    line-height: 1;
    padding: 0;
    min-width: 16px;
    box-sizing: border-box;
    border: 1px solid #ffffff;
}

.favorites-badge:empty {
    display: none;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #000000;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    display: none;
    box-sizing: border-box;
    border: 1px solid #ffffff;
}

.cart-badge.active {
    display: block;
}

.search-icon,
.user-icon {
    width: 32px; /* Reduced from 40px */
    height: 32px; /* Reduced from 40px */
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    border: none; /* Removed the border */
}

/* Icon colors for different backgrounds */
.header.hero-background .search-icon,
.header.hero-background .user-icon {
    color: #ffffff;
}

.header.content-background .search-icon,
.header.content-background .user-icon {
    color: #333333;
}

.header.hero-background .cart-link {
    color: #ffffff;
}

.header.content-background .cart-link {
    color: #333333;
}

.search-icon:hover,
.user-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #12ad5f;
    backdrop-filter: blur(10px);
    transform: translateY(-2px) scale(1.1);
}

.cart-link:hover {
    color: #12ad5f;
    transform: translateY(-2px) scale(1.1);
}

/* Icon hover effects for different backgrounds */
.header.hero-background .search-icon:hover,
.header.hero-background .user-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.header.content-background .search-icon:hover,
.header.content-background .user-icon:hover {
    background-color: rgba(0, 0, 0, 0.1);
}





/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000000;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide desktop nav on mobile */
    .desktop-nav {
        display: none !important;
    }
    
    /* Show mobile nav on mobile */
    .mobile-nav-menu {
        display: flex;
    }
    
    .header {
        top: 0;
        overflow: visible !important;
    }
    
    .header-container {
        padding: 0 15px;
        height: clamp(60px, 8vh, 70px);
    }
    
    .logo-container {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }
    
    .logo-img {
        height: clamp(28px, 4vw, 32px);
    }
    
    .nav-menu {
        display: none !important;
        position: fixed;
        top: clamp(60px, 8vh, 70px);
        left: 0;
        right: 0;
        background-color: #ffffff;
        z-index: 1001 !important;
        padding: clamp(1rem, 2vw, 1.5rem);
        border-bottom: 1px solid #000000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - clamp(60px, 8vh, 70px));
        overflow-y: auto;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-menu.active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-menu .nav-list {
        flex-direction: column !important;
        align-items: flex-start;
        gap: 0;
        display: flex !important;
    }
    
    .nav-menu .nav-item {
        width: 100%;
        border-bottom: 1px solid #000000;
    }
    
    .nav-menu .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: clamp(1rem, 2vw, 1.25rem);
        width: 100%;
        text-align: left;
        color: #333333 !important;
    }
    
    /* Remove green hover/active effects on mobile */
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:active,
    .nav-menu .nav-link.active {
        color: #333333 !important;
    }
    
    .nav-menu .nav-link::after {
        display: none !important;
    }
    
    .nav-menu .nav-item::after {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        left: clamp(0.75rem, 2vw, 1rem);
        top: 50%;
        transform: translateY(-50%);
    }
    
    .cart-icon {
        grid-column: 3;
    }
    
    .cart-link {
        font-size: clamp(1.2rem, 2vw, 1.5rem);
    }
    
    /* Mobile Right Icons Layout */
    .right-icons {
        position: relative;
        flex: 0;
        padding-right: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        min-width: 0;
    }
    
    /* Hide LOGIN, user menu, logout and bookmark on mobile */
    .login-link {
        display: none;
    }
    
    .user-menu-link {
        display: none;
    }
    
    .logout-link {
        display: none;
    }
    
    .bookmark-icon {
        display: none;
    }
    
    /* Hide search icon on mobile */
    .search-icon-mobile {
        display: none !important;
    }
    
    /* Hide currency icon on mobile (available in burger menu) */
    .currency-icon {
        display: none !important;
    }
    
    /* Ensure header container is positioned relative for absolute children */
    .header-container {
        position: relative !important;
        padding-left: clamp(3.5rem, 10vw, 4.5rem); /* Space for hamburger menu on left */
        padding-right: clamp(3rem, 8vw, 4rem); /* Space for search icon on right */
    }
    
    /* Make right-icons container visible but allow absolute positioning of children */
    .right-icons {
        position: static;
        display: flex;
        flex: 0;
        width: 0;
        height: 0;
        overflow: visible;
    }
    
    
    /* Move portfolio icon to right side of header on mobile - relative to header-container */
    .portfolio-icon {
        position: absolute !important;
        right: clamp(0.5rem, 1vw, 1rem) !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10;
        margin: 0;
        display: flex !important;
    }
    
    /* Hide desktop nav on mobile */
    .desktop-nav {
        display: none !important;
    }
    
    /* Farfetch-style Mobile Menu */
    .mobile-nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #ffffff;
        z-index: 10000;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
    
    .mobile-nav-menu.active {
        transform: translateX(0);
    }
    
    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem);
        border-bottom: 1px solid #000000;
        position: sticky;
        top: 0;
        background-color: #ffffff;
        z-index: 1;
    }
    
    .mobile-menu-logo {
        flex: 1;
    }
    
    .mobile-logo-img {
        height: clamp(24px, 4vw, 28px);
        width: auto;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        font-size: clamp(2rem, 5vw, 2.5rem);
        color: #000000;
        cursor: pointer;
        padding: 0;
        line-height: 1;
        width: clamp(2rem, 5vw, 2.5rem);
        height: clamp(2rem, 5vw, 2.5rem);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-close span {
        display: block;
    }
    
    /* Mobile Menu Content */
    .mobile-menu-content {
        flex: 1;
        padding: 0;
        overflow-y: auto;
    }
    
    .mobile-menu-section {
        border-bottom: 1px solid #000000;
    }
    
    .mobile-menu-section:last-child {
        border-bottom: none;
    }
    
    /* Category List */
    .mobile-menu-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .mobile-menu-item {
        border-bottom: 1px solid #000000;
    }
    
    .mobile-menu-item:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 4vw, 2rem);
        color: #000000;
        text-decoration: none;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        letter-spacing: 0.5px;
        transition: background-color 0.2s ease;
    }
    
    .mobile-menu-link:hover {
        background-color: #f5f5f5;
    }
    
    .menu-chevron {
        color: #000000;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        margin-left: auto;
    }
    
    /* My Account Section */
    .account-section {
        padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem);
    }
    
    .mobile-menu-section-title {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
        font-weight: 600;
        letter-spacing: 1px;
        color: #000000;
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
        text-transform: uppercase;
    }
    
    .mobile-account-buttons {
        display: flex;
        flex-direction: column;
        gap: clamp(0.75rem, 2vw, 1rem);
    }
    
    .mobile-account-btn {
        display: block;
        padding: clamp(0.875rem, 2.5vw, 1rem) clamp(1.5rem, 4vw, 2rem);
        text-align: center;
        text-decoration: none;
        font-size: clamp(0.85rem, 2vw, 0.95rem);
        font-weight: 500;
        letter-spacing: 0.5px;
        border: 1px solid #000000;
        transition: all 0.2s ease;
        text-transform: uppercase;
    }
    
    .mobile-account-btn-primary {
        background-color: #000000;
        color: #ffffff;
    }
    
    .mobile-account-btn-primary:hover {
        background-color: #333333;
    }
    
    .mobile-account-btn-secondary {
        background-color: #ffffff;
        color: #000000;
    }
    
    .mobile-account-btn-secondary:hover {
        background-color: #f5f5f5;
    }
    
    /* Language and Region Section */
    .language-section {
        padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem);
    }
    
    .mobile-language-options {
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
    }
    
    .mobile-language-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: clamp(0.875rem, 2.5vw, 1rem) 0;
        color: #000000;
        text-decoration: none;
        border-bottom: 1px solid #000000;
    }
    
    .mobile-language-item:last-child {
        border-bottom: none;
    }
    
    .mobile-language-content {
        flex: 1;
    }
    
    .mobile-language-main {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        color: #000000;
        margin-bottom: 0.25rem;
    }
    
    .mobile-language-label {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
        color: #666666;
    }
    
    .mobile-language-description {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
        color: #666666;
        line-height: 1.5;
        margin-top: clamp(1rem, 3vw, 1.5rem);
    }
}

/* Main content padding to account for fixed header */
main {
    padding-top: clamp(60px, 8vh, 80px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    main {
        padding-top: clamp(60px, 8vh, 70px);
        min-height: calc(100vh - 60px - 200px);
    }
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: clamp(5rem, 7vw, 6.25rem);
    right: clamp(1rem, 2vw, 1.25rem);
    z-index: 1002;
    max-width: min(400px, 90vw);
    width: 100%;
}

.flash-message {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 500;
    position: relative;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.flash-success {
    background-color: #28a745;
}

.flash-danger {
    background-color: #dc3545;
}

.flash-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.flash-close:hover {
    opacity: 1;
}

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

/* Footer */
.footer {
    background-color: #ffffff;
    color: #333333;
    padding: clamp(3rem, 5vw, 5rem) 0 clamp(2rem, 3vw, 3rem);
    margin-top: auto;
    flex-shrink: 0;
    border-top: 1px solid #000000;
}

.footer-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 4rem);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(2rem, 3vw, 3rem);
    margin-bottom: clamp(2rem, 3vw, 3rem);
    padding-bottom: clamp(2rem, 3vw, 3rem);
    border-bottom: 1px solid #000000;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333333;
    margin: 0 0 clamp(1rem, 1.5vw, 1.5rem) 0;
    padding-right: clamp(1rem, 2vw, 2rem);
    border-right: 1px solid #000000;
}

.footer-column:last-child .footer-heading {
    border-right: none;
    padding-right: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: clamp(0.5rem, 0.8vw, 0.75rem);
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    line-height: 1.6;
    color: #333333;
}

.footer-links a {
    color: #333333;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: clamp(1rem, 2vw, 1.5rem);
}

.footer-bottom p {
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    color: #333333;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(2rem, 3vw, 3rem);
    }
    
    .footer-heading {
        border-right: none;
        border-bottom: 1px solid #000000;
        padding-right: 0;
        padding-bottom: clamp(0.75rem, 1vw, 1rem);
        margin-bottom: clamp(0.75rem, 1vw, 1rem);
    }
    
    .footer-column:last-child .footer-heading {
        border-bottom: 1px solid #000000;
    }
}

/* Hero Section */
.hero-section {
    background: #000000;
    color: #ffffff;
    padding: 0;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: calc(-1 * clamp(60px, 8vh, 80px)); /* Compensate for header height to make video truly fullscreen */
}

/* Page transition curtain effect */
.page-transition-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    background: #f8f9fa;
    will-change: transform;
}

/* Old CSS smoke effect removed - now using video */

/* Transition progress indicator */
.transition-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(18, 173, 95, 0.3);
    z-index: 10000;
    pointer-events: none;
}

.transition-progress-bar {
    height: 100%;
    background: linear-gradient(to right, #12ad5f, #01d566);
    width: 0%;
    transition: width 0.1s ease;
}

/* Page transition markers */
.page-marker {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
    z-index: 10001;
}

.page-marker::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -3px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

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

.hero-bg-image video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
}



.hero-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 2.5vw, 2.5rem);
    display: flex;
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5rem);
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Hero Left Side */
.hero-left {
    flex: 1;
    display: flex;
    align-items: flex-start;
    padding-right: clamp(2rem, 4vw, 3.75rem);
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-content {
    width: 100%;
}

/* Video Preview Styles */
.video-preview {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.play-button:hover {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.play-button i {
    color: white;
    font-size: 20px;
    margin-left: 3px;
}

.video-info {
    color: #333;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #333;
}

.video-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.publish-date {
    color: #999;
    font-weight: 500;
}

.watch-full {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.watch-full:hover {
    color: #cc0000;
}

.video-placeholder {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-placeholder i {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 15px;
}

.video-placeholder p {
    color: #666;
    font-size: 1rem;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle i {
    color: #12ad5f;
    font-size: 16px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: bold;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.1;
    color: #333;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-description {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    margin-bottom: clamp(2rem, 3vw, 2.5rem);
    color: #666;
    line-height: 1.6;
    max-width: min(500px, 90%);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Right Side */
.hero-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding-top: 40px;
}

.hero-photo {
    width: 100%;
    max-width: min(700px, 90%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 4;
}

.hero-photo:hover {
    transform: translateY(-10px);
}

.hero-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

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

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image i {
    font-size: 15rem;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #333;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary i {
    color: #ff6b35;
}

.btn-secondary {
    background-color: #ffd700;
    color: #333;
}

.btn-secondary:hover {
    background-color: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary i {
    color: #333;
}

/* Content Section */
.content-section {
    padding: 0;
    background: #f8f9fa;
    min-height: 100vh;
    height: 100vh;
    position: relative;
    transition: background-color 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

/* Make sections more visually distinct */
.content-section-2 {
    background: #e9ecef;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

/* Section 2 Video - Fullscreen */
.section-2-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.section-2-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.content-section-3 {
    background: #ffffff;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

/* T-Shirt Display - Centered */
.tshirt-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: min(1200px, 85vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

/* T-Shirt Image Container */
.tshirt-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    width: auto;
    max-width: min(800px, 75vw);
}

.tshirt-image {
    width: auto;
    height: auto;
    max-width: min(800px, 75vw);
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

/* T-Shirt Title Section */
.tshirt-title-section {
    margin-bottom: 0;
    text-align: center;
}

.tshirt-title {
    font-family: 'Arial', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333333;
    margin: 0;
}

/* T-Shirt Shop Button */
.tshirt-shop-button-container {
    margin-top: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
}

.tshirt-shop-button {
    display: inline-block;
    padding: clamp(12px, 2vw, 16px) clamp(40px, 6vw, 60px);
    background-color: transparent;
    color: #000000;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #000000;
    transition: all 0.3s ease;
    text-align: center;
}

.tshirt-shop-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000000;
}

.content-section-4 {
    background: #ced4da;
    overflow: hidden;
    z-index: 1;
}

.content-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.content-container h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: clamp(1.5rem, 2.5vw, 1.875rem);
    color: #333333;
}

.content-container p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
    color: #666666;
}

.content-container ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-container li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #666666;
}

/* Main Content Area */
.main-content {
    flex: 1;
    padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.5rem, 3vw, 2.5rem);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Jackets Grid */
.jackets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.jacket-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.jacket-placeholder {
    color: #ffffff;
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Text Content */
.text-content {
    text-align: center;
    margin-bottom: 40px;
}

.casual-text {
    color: #ffffff;
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.style-quote {
    color: #ffffff;
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Shop Button */
.shop-btn {
    background: #ff6b35;
    border: none;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    padding: 20px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    align-self: center;
}

.shop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.shop-text {
    color: #ffffff;
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-btn i {
    color: #ffffff;
    font-size: 16px;
    margin-top: 5px;
}



/* Product Display Container - Balenciaga Style */
.product-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: min(1200px, 85vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    pointer-events: auto;
}

/* Section Image Container */
.section-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    width: auto;
    max-width: min(800px, 75vw);
}

.section-product-image {
    width: auto;
    height: auto;
    max-width: min(800px, 75vw);
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

/* Product Title Section */
.product-title-section {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    text-align: center;
}

.product-category-title {
    font-family: 'Arial', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333333;
    margin: 0;
}

/* Shop Buttons Container */
.shop-buttons-container {
    display: flex;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.shop-button-link {
    display: inline-block;
    padding: clamp(10px, 1.5vw, 14px) clamp(20px, 3vw, 28px);
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid #333333;
    min-width: clamp(100px, 15vw, 130px);
    text-align: center;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
}

.shop-button-link:hover {
    background-color: #000000;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Section Text Styling - Hidden for section #1, used in other sections */
.content-section .section-text {
    display: none;
}

.content-section-2 .section-text,
.content-section-3 .section-text,
.content-section-4 .section-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    display: block;
}

.section-text h2 {
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
    color: #333333;
}

.section-text p {
    font-size: clamp(0.9rem, 1.5vw, 1.125rem);
    color: #666666;
    max-width: min(400px, 85vw);
    line-height: 1.6;
}

/* Additional Content Sections */
.content-section-2 {
    padding: 0;
    background: #e9ecef;
    min-height: 100vh;
    height: 100vh;
    position: relative;
    scroll-margin-top: 80px; /* Account for fixed header */
}

.content-section-3 {
    padding: 0;
    background: #ffffff;
    min-height: 100vh;
    height: 100vh;
    position: relative;
}

.content-section-4 {
    padding: 0;
    background: #ced4da;
    min-height: 100vh;
    height: 100vh;
    position: relative;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    width: clamp(3rem, 4vw, 3.75rem);
    height: clamp(3rem, 4vw, 3.75rem);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
    right: clamp(1.25rem, 2.5vw, 1.875rem);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.nav-arrow:hover {
    transform: scale(1.2);
}

.nav-arrow i {
    font-size: 32px;
    background: linear-gradient(to bottom, #12ad5f, #01d566);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 8px rgba(18, 173, 95, 0.3);
    filter: drop-shadow(0 4px 8px rgba(1, 213, 102, 0.2));
}

.nav-arrow-up {
    top: clamp(5rem, 7vw, 6.25rem);
}

.nav-arrow-down {
    bottom: clamp(5rem, 7vw, 6.25rem);
}

/* Mobile responsive hero */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 20px;
    }
    
    .hero-left {
        align-items: center;
        gap: 20px;
    }
    
    .video-preview {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .video-title {
        font-size: 1rem;
    }
    
    .video-description {
        font-size: 0.8rem;
    }
    
    .video-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .hero-photo {
        max-width: 300px;
    }
    
    .youtube-section {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
    }
    
    .youtube-card {
        width: 100%;
    }
    
    .channel-button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image i {
        font-size: 10rem;
    }
    

    
    .content-container h2 {
        font-size: 2rem;
    }
    
    .nav-arrow {
        width: clamp(2.5rem, 4vw, 3rem);
        height: clamp(2.5rem, 4vw, 3rem);
        right: clamp(1rem, 2vw, 1.25rem);
    }
    
    .nav-arrow i {
        font-size: clamp(1.25rem, 2vw, 1.5rem);
    }
    
    /* Mobile responsive content sections */
    .hero-section {
        margin-top: calc(-1 * clamp(60px, 8vh, 70px)); /* Compensate for mobile header height */
    }
    
    .hero-section,
    .content-section,
    .content-section-2,
    .content-section-3,
    .content-section-4 {
        min-height: 100vh;
        height: 100vh;
    }
    
    /* Mobile T-Shirt Display */
    .tshirt-display {
        max-width: 100vw;
        padding: clamp(1.5rem, 3vw, 2.5rem);
    }
    
    .tshirt-image-container {
        max-width: min(500px, 90vw);
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
    }
    
    .tshirt-image {
        max-width: min(500px, 90vw);
        max-height: 60vh;
    }
    
    .tshirt-title {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
    }
    
    .tshirt-shop-button {
        padding: clamp(14px, 2.5vw, 18px) clamp(50px, 8vw, 70px);
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
    
    /* Mobile Product Display - Cup, text, buttons in proper flow */
    .product-display {
        max-width: 100vw;
        padding: 0 clamp(1rem, 2vw, 1.5rem);
        top: 0;
        left: 0;
        transform: none;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        align-items: center;
    }
    
    .section-image-container {
        max-width: min(1200px, 98vw);
        margin-bottom: clamp(0.5rem, 1vw, 0.75rem); /* Very small gap between cup and text */
        flex-shrink: 0;
        margin-top: clamp(15vh, 20vh, 25vh); /* Move cup and text lower */
    }
    
    .section-product-image {
        max-width: min(1200px, 98vw);
        max-height: 60vh;
        width: auto;
        height: auto;
    }
    
    .product-title-section {
        margin-bottom: auto; /* Push buttons to bottom */
        flex-shrink: 0;
        margin-top: 0;
    }
    
    .product-category-title {
        font-size: clamp(1.2rem, 4.5vw, 1.5rem);
    }
    
    /* Buttons at bottom of product-display on mobile */
    .product-display .shop-buttons-container {
        position: relative;
        margin-top: auto; /* Push to bottom */
        margin-bottom: clamp(2rem, 5vh, 3rem);
        width: 100%;
        max-width: min(400px, 90vw);
        gap: clamp(0.75rem, 2vw, 1rem);
        z-index: 10;
        display: flex !important;
    }
    
    .shop-button-link {
        flex: 1;
        min-width: 0;
        padding: clamp(12px, 3vw, 14px) clamp(20px, 4vw, 24px);
        font-size: clamp(0.7rem, 2.5vw, 0.75rem);
    }
}

/* ==================== COOKIE CONSENT POPUP ==================== */
.cookie-consent-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 2vw, 2rem);
    overflow-y: auto;
}

.cookie-consent-content {
    background-color: #ffffff;
    max-width: min(800px, 90vw);
    width: 100%;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: auto;
}

.cookie-consent-title {
    font-family: 'Arial', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333333;
    margin: 0 0 clamp(1.5rem, 2vw, 2rem) 0;
    padding-bottom: clamp(1rem, 1.5vw, 1.5rem);
    border-bottom: 1px solid #e0e0e0;
}

.cookie-consent-option {
    margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.cookie-option-btn {
    width: 100%;
    padding: clamp(12px, 1.5vw, 16px) clamp(20px, 2.5vw, 28px);
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000;
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.cookie-option-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.cookie-consent-text {
    margin-bottom: clamp(2rem, 3vw, 2.5rem);
    color: #333333;
    line-height: 1.7;
}

.cookie-consent-text p {
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
    color: #333333;
}

.cookie-consent-text p:last-child {
    margin-bottom: 0;
}

.cookie-policy-link {
    color: #333333;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.cookie-policy-link:hover {
    opacity: 0.7;
}

.cookie-consent-actions {
    display: flex;
    justify-content: space-between;
    gap: clamp(1rem, 2vw, 1.5rem);
    padding-top: clamp(1rem, 1.5vw, 1.5rem);
    border-top: 1px solid #e0e0e0;
}

.cookie-action-btn {
    flex: 1;
    padding: clamp(10px, 1.2vw, 14px) clamp(20px, 2.5vw, 28px);
    background-color: transparent;
    color: #333333;
    border: none;
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: underline;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-align: center;
}

.cookie-action-btn:hover {
    opacity: 0.7;
}

.cookie-agree-btn {
    text-align: left;
}

.cookie-configure-btn {
    text-align: right;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        padding: clamp(1.5rem, 3vw, 2rem);
    }
    
    .cookie-consent-actions {
        flex-direction: column;
        gap: clamp(0.75rem, 1.5vw, 1rem);
    }
    
    .cookie-action-btn {
        text-align: center;
    }
    
    .cookie-agree-btn,
    .cookie-configure-btn {
        text-align: center;
    }
}

/* ==================== SHOP STYLES ==================== */

/* ==================== NEW SHOP DESIGN ==================== */
.shop-page {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: clamp(6rem, 10vh, 8rem) clamp(2rem, 4vw, 4rem) clamp(4rem, 6vh, 6rem);
    background: #ffffff;
}

.shop-page-header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 4rem);
    padding-bottom: clamp(2rem, 3vw, 2.5rem);
    border-bottom: 1px solid #000000;
}

.shop-page-title {
    font-family: 'Arial', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000000;
    margin: 0;
}

/* Shop Controls */
.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(2rem, 3vw, 3rem);
    padding-bottom: clamp(1rem, 1.5vw, 1.5rem);
    border-bottom: 1px solid #e0e0e0;
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    background: transparent;
    border: none;
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    cursor: pointer;
    padding: clamp(8px, 1vw, 12px) 0;
    transition: opacity 0.3s ease;
}

.filter-toggle-btn:hover {
    opacity: 0.7;
}

.filter-icon {
    width: clamp(16px, 1.5vw, 18px);
    height: clamp(16px, 1.5vw, 18px);
    object-fit: contain;
    filter: brightness(0) invert(0);
}

.sort-form {
    display: flex;
}

.sort-select {
    background: transparent;
    border: 1px solid #000000;
    border-radius: 0 !important;
    min-width: clamp(200px, 25vw, 280px);
    padding: clamp(8px, 1vw, 12px) clamp(16px, 2vw, 24px);
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right clamp(12px, 1.5vw, 16px) center;
    padding-right: clamp(32px, 4vw, 40px);
}

.sort-select:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Shop Filters */
.shop-filters {
    margin-bottom: clamp(2rem, 3vw, 3rem);
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-bottom 0.3s ease;
    opacity: 0;
}

.shop-filters.active {
    max-height: 2000px;
    padding-bottom: clamp(2rem, 3vw, 3rem);
    opacity: 1;
}

/* Desktop: Filter button visible, search next to it, toggleable filters */
@media (min-width: 769px) {
    .shop-controls {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: clamp(1.5rem, 2.5vw, 2rem);
        position: relative;
    }
    
    .shop-filters-toggle {
        display: flex;
        align-items: center;
        gap: clamp(1rem, 1.5vw, 1.5rem);
        position: relative;
    }
    
    .shop-filters-toggle .filter-search-form {
        display: flex;
        gap: clamp(0.5rem, 1vw, 0.75rem);
        align-items: center;
    }
    
    .shop-filters-toggle .filter-search-input {
        min-width: clamp(200px, 20vw, 280px);
        width: clamp(200px, 20vw, 280px);
        flex: 0 0 auto;
    }
    
    .shop-filters {
        position: absolute;
        top: 100%;
        left: 0;
        width: clamp(500px, 45vw, 600px);
        background: #ffffff;
        border: 1px solid #000000;
        border-width: 1px;
        border-bottom: 1px solid #000000;
        padding: clamp(1.5rem, 2.5vw, 2rem);
        margin-top: clamp(1rem, 1.5vw, 1.5rem);
        z-index: 100;
        box-shadow: none;
        max-height: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        margin-bottom: 0;
        border-radius: 0;
    }
    
    .shop-filters.active {
        opacity: 1;
        visibility: visible;
        padding-bottom: clamp(1.5rem, 2.5vw, 2rem);
        border-bottom: 1px solid #000000;
        border-width: 1px;
    }
    
    .filters-content {
        display: flex;
        flex-direction: column;
        gap: clamp(2rem, 3vw, 3rem);
    }
    
    .shop-sort {
        margin-left: auto;
    }
}

.filters-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2rem, 3vw, 3rem);
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-title {
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    margin: 0 0 clamp(1rem, 1.5vw, 1.5rem) 0;
    padding-bottom: clamp(0.5rem, 0.8vw, 0.75rem);
    border-bottom: 1px solid #000000;
}

.filter-search-form {
    display: flex;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    align-items: center;
}

.filter-search-input {
    flex: 1;
    padding: clamp(10px, 1.2vw, 14px) clamp(12px, 1.5vw, 16px);
    border: 1px solid #000000;
    background: transparent;
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    color: #000000;
    outline: none;
    transition: all 0.3s ease;
}

.filter-search-input:focus {
    background-color: rgba(0, 0, 0, 0.05);
}

.filter-search-btn {
    padding: clamp(10px, 1.2vw, 14px) clamp(16px, 2vw, 20px);
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
}

.filter-search-btn:hover {
    background: #333333;
    border-color: #333333;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-item {
    margin-bottom: clamp(0.5rem, 0.8vw, 0.75rem);
}

.filter-link {
    display: block;
    padding: clamp(8px, 1vw, 12px) 0;
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.filter-link:hover,
.filter-link.active {
    color: #000000;
    border-bottom-color: #000000;
}

/* Products Grid - New Design */
.shop-products {
    width: 100%;
}

.products-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: clamp(3rem, 4vw, 4rem);
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.product-card-new {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    transition: opacity 0.3s ease;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: clamp(1rem, 1.5vw, 1.5rem);
    position: relative;
}

.product-card-new:hover {
    opacity: 0.7;
}

.product-link-new {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image-new {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #ffffff;
    margin-bottom: clamp(1.25rem, 1.5vw, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-placeholder-new {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #999999;
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Favorite Button */
.product-favorite-btn {
    position: absolute;
    top: clamp(0.5rem, 0.8vw, 0.75rem);
    right: clamp(0.5rem, 0.8vw, 0.75rem);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: clamp(4px, 0.5vw, 6px);
    z-index: 10;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(24px, 2.5vw, 28px);
    height: clamp(24px, 2.5vw, 28px);
}

.product-favorite-btn:hover {
    opacity: 0.7;
}

.favorite-icon {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(0);
    transition: filter 0.3s ease;
    object-fit: contain;
}

.product-favorite-btn.active .favorite-icon,
.product-favorite-btn:hover .favorite-icon {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(90deg);
}

.product-info-new {
    display: flex;
    flex-direction: column;
    gap: clamp(0.25rem, 0.4vw, 0.5rem);
}

.product-name-new {
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000000;
    margin: 0;
    line-height: 1.5;
}

.product-category-new {
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.7rem, 0.9vw, 0.75rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000000;
}

.product-price-new {
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 400;
    color: #000000;
    margin-top: clamp(0.25rem, 0.4vw, 0.5rem);
}

.price-current-new {
    color: #000000;
}

.price-original-new {
    color: #999999;
    text-decoration: line-through;
    margin-right: clamp(0.5rem, 0.8vw, 0.75rem);
}

.price-sale-new {
    color: #000000;
}

/* Pagination - New Design */
.shop-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(2rem, 3vw, 3rem);
    padding-top: clamp(2rem, 3vw, 3rem);
    border-top: 1px solid #e0e0e0;
}

.pagination-link-new {
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.pagination-link-new:hover {
    opacity: 0.7;
}

.pagination-info-new {
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    font-weight: 400;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* No Products */
.no-products-new {
    text-align: center;
    padding: clamp(4rem, 6vw, 6rem) clamp(2rem, 3vw, 3rem);
}

.no-products-new h2 {
    font-family: 'Arial', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000;
    margin: 0 0 clamp(1rem, 1.5vw, 1.5rem) 0;
}

.no-products-new p {
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    color: #666666;
    margin: 0;
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .products-grid-new {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(1.25rem, 1.8vw, 1.75rem);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .shop-page {
        padding: clamp(5rem, 8vh, 6rem) clamp(1rem, 2vw, 1.5rem) clamp(3rem, 5vh, 4rem);
    }
    
    .shop-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: clamp(1rem, 1.5vw, 1.5rem);
        position: relative;
    }
    
    .shop-filters-toggle {
        order: 1;
        display: flex;
        align-items: center;
        gap: clamp(0.75rem, 1.5vw, 1rem);
        width: 100%;
        justify-content: space-between;
    }
    
    .shop-filters-toggle .filter-toggle-btn {
        flex: 0 0 auto;
    }
    
    .shop-filters-toggle .filter-search-form {
        display: flex;
        gap: clamp(0.5rem, 1vw, 0.75rem);
        align-items: center;
        flex: 0 0 auto;
        max-width: clamp(200px, 40vw, 300px);
        margin-left: auto;
    }
    
    .shop-filters-toggle .filter-search-input {
        flex: 1;
        min-width: 0;
        max-width: clamp(150px, 30vw, 220px);
    }
    
    .shop-filters {
        order: 2;
        margin-bottom: 0;
        margin-top: clamp(1rem, 1.5vw, 1.5rem);
    }
    
    .shop-sort {
        order: 3;
        width: 100%;
    }
    
    .sort-select {
        min-width: 100%;
        width: 100%;
        padding: clamp(10px, 2vw, 14px) clamp(14px, 3vw, 20px);
        padding-right: clamp(40px, 8vw, 50px);
    }
    
    .filters-content {
        grid-template-columns: 1fr;
    }
    
    .products-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(1rem, 1.5vw, 1.5rem);
    }
    
    .shop-pagination {
        flex-direction: column;
        gap: clamp(1rem, 1.5vw, 1.5rem);
    }
}

/* Old Shop Styles - Keep for backward compatibility */
.shop-container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: clamp(5rem, 8vw, 7.5rem) clamp(1.25rem, 2.5vw, 2.5rem) clamp(2rem, 3vw, 2.5rem);
}

/* Shop Header */
.shop-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 4vw, 3.75rem);
    padding: clamp(2rem, 3vw, 2.5rem) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
}

.shop-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: clamp(0.5rem, 1vw, 0.625rem);
    font-family: 'Bebas Neue', cursive;
}

.shop-header p {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    opacity: 0.9;
}

/* Shop Content Layout */
.shop-content {
    display: grid;
    grid-template-columns: minmax(250px, 20%) 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

/* Sidebar */
.shop-sidebar {
    background: #f8f9fa;
    padding: clamp(1.5rem, 2.5vw, 1.875rem);
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: clamp(7rem, 10vw, 8.75rem);
}

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

.filter-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.category-list {
    list-style: none;
}

.category-item {
    margin-bottom: 8px;
}

.category-link {
    display: block;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-link:hover,
.category-link.active {
    background: #667eea;
    color: white;
}

/* Price Filter */
.price-filter {
    margin-top: 15px;
}

.price-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
}

.price-display {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    color: #333;
}

/* Shop Toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(1.5rem, 2.5vw, 1.875rem);
    padding: clamp(1rem, 2vw, 1.25rem);
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-box {
    flex: 1;
    max-width: min(400px, 100%);
}

.search-box form {
    display: flex;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #667eea;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #667eea;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #5a6fd8;
}

.sort-options {
    margin-left: 20px;
}

.sort-select {
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 0;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.sort-select:focus {
    border-color: #667eea;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(250px, 20vw, 300px), 1fr));
    gap: clamp(1.25rem, 2.5vw, 1.875rem);
    margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 2rem;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn,
.add-to-cart-btn {
    background: white;
    color: #333;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.quick-view-btn:hover,
.add-to-cart-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #667eea;
}

.product-category {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.product-price {
    margin-bottom: 15px;
}

.price-original {
    text-decoration: line-through;
    color: #6c757d;
    margin-right: 10px;
}

.price-sale {
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.1rem;
}

.price-current {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.product-actions {
    margin-top: 15px;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: #5a6fd8;
}

/* No Products */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.no-products i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-products h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 12px 20px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.pagination-btn:hover {
    background: #5a6fd8;
}

.pagination-info {
    font-weight: 600;
    color: #333;
}

/* Cart Icon in Header - styles already defined above */

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ==================== PRODUCT DETAIL STYLES ==================== */
/* Product detail styles moved to product-detail.css */

/* Old product detail styles - keep for backward compatibility */
.product-detail-container {
    position: fixed;
    top: clamp(60px, 8vh, 80px);
    left: 0;
    right: 0;
    width: 100vw;
    height: clamp(2.5rem, 4vw, 3.5rem);
    margin: 0;
    padding: 0 clamp(0.5rem, 1vw, 1rem);
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000000;
    z-index: 1001;
    background: #ffffff !important;
    background-color: #ffffff !important;
    opacity: 1 !important;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
}

.product-breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
}

.product-breadcrumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #000000;
    z-index: 1;
}

.product-breadcrumb a {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.product-breadcrumb a:hover {
    opacity: 0.7;
}

.product-breadcrumb span {
    color: #666666;
    margin: 0 clamp(0.25rem, 0.5vw, 0.5rem);
}

/* Product detail styles moved to product-detail.css - DO NOT ADD HERE */

/* Old product detail styles - keep for backward compatibility */
.product-detail-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(5rem, 8vw, 7.5rem) clamp(1.25rem, 2.5vw, 2.5rem) clamp(2rem, 3vw, 2.5rem);
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #6c757d;
}

.breadcrumb-current {
    color: #333;
    font-weight: 600;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.75rem);
    align-items: start;
}

.product-images {
    position: sticky;
    top: clamp(7rem, 10vw, 8.75rem);
}

.main-image {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #667eea;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
    color: #333;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ddd;
    font-size: 1.2rem;
}

.stars i.active {
    color: #ffc107;
}

.rating-text {
    color: #6c757d;
    font-size: 0.9rem;
}

.product-price {
    margin-bottom: 30px;
}

.discount-badge {
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #666;
}

.product-variants {
    margin-bottom: 30px;
}

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

.variant-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.variant-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.variant-option {
    position: relative;
}

.variant-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.variant-label {
    display: block;
    padding: 10px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
    text-align: center;
}

.variant-option input[type="radio"]:checked + .variant-label {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

.stock-status {
    margin-bottom: 30px;
}

.stock-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.stock-indicator.in-stock {
    color: #27ae60;
}

.stock-indicator.out-of-stock {
    color: #e74c3c;
}

.product-actions {
    display: flex;
    gap: 20px;
    align-items: end;
    margin-bottom: 40px;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-btn {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.quantity-btn:hover {
    background: #e9ecef;
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    outline: none;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-details {
    margin-top: 40px;
}

.detail-tabs {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #6c757d;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.specs-table td:first-child {
    font-weight: 600;
    width: 30%;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

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

.review-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #6c757d;
}

.review-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.review-comment {
    line-height: 1.6;
    color: #666;
}

.no-reviews {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 40px;
}

/* ==================== CART STYLES ==================== */

.cart-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(5rem, 8vw, 7.5rem) clamp(1.25rem, 2.5vw, 2.5rem) clamp(2rem, 3vw, 2.5rem);
}

.cart-header {
    text-align: center;
    margin-bottom: 40px;
}

.cart-header h1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
    color: #333;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 30%);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.cart-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.continue-shopping {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.continue-shopping:hover {
    color: #5a6fd8;
}

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

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.item-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.item-name a:hover {
    color: #667eea;
}

.item-variant {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 5px;
}

.item-price {
    font-weight: 600;
    color: #333;
}

.item-quantity {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-btn {
    background: #f8f9fa;
    border: none;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.quantity-btn:hover {
    background: #e9ecef;
}

.quantity-input {
    width: 50px;
    height: 35px;
    border: none;
    text-align: center;
    font-weight: 600;
    outline: none;
}

.item-total {
    text-align: right;
    font-weight: 600;
    color: #333;
}

.item-actions {
    display: flex;
    align-items: center;
}

.remove-item-btn {
    background: #e74c3c;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.remove-item-btn:hover {
    background: #c0392b;
}

.cart-summary {
    position: sticky;
    top: clamp(7rem, 10vw, 8.75rem);
}

.summary-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.summary-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-line.total-line {
    border-bottom: none;
    border-top: 2px solid #e9ecef;
    margin-top: 15px;
    padding-top: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.free-shipping {
    color: #27ae60;
    font-weight: 600;
}

.shipping-note {
    background: #e8f5e8;
    color: #27ae60;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-actions {
    margin: 25px 0;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-required {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.login-required p {
    margin-bottom: 15px;
    color: #6c757d;
}

.payment-methods {
    margin-top: 25px;
    text-align: center;
}

.payment-methods h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 2rem;
    color: #6c757d;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart-content i {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.empty-cart-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.empty-cart-content p {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ==================== CHECKOUT STYLES ==================== */

.checkout-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(5rem, 8vw, 7.5rem) clamp(1.25rem, 2.5vw, 2.5rem) clamp(2rem, 3vw, 2.5rem);
}

.checkout-header {
    text-align: center;
    margin-bottom: 40px;
}

.checkout-header h1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
    color: #333;
}

.checkout-form {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 30%);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.checkout-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.checkout-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #667eea;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-method {
    flex: 1;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-method.active {
    border-color: #667eea;
    background: #f8f9ff;
}

.payment-method i {
    font-size: 1.5rem;
    color: #667eea;
}

.payment-form {
    margin-top: 25px;
}

.card-input {
    position: relative;
}

.card-icons {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
    color: #6c757d;
}

.checkout-summary {
    position: sticky;
    top: clamp(7rem, 10vw, 8.75rem);
    background: white;
    padding: clamp(1.5rem, 2.5vw, 1.875rem);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.order-items {
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.order-item .item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.order-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item .item-details {
    flex: 1;
}

.order-item .item-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.order-item .item-variant {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 3px;
}

.order-item .item-quantity {
    font-size: 0.8rem;
    color: #6c757d;
}

.order-item .item-price {
    font-weight: 600;
    color: #333;
}

.order-totals {
    margin-bottom: 25px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.total-line.total {
    border-top: 2px solid #e9ecef;
    margin-top: 15px;
    padding-top: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.checkout-actions {
    margin-bottom: 20px;
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #27ae60;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ==================== NOTIFICATIONS ==================== */

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

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

.notification-success {
    background: #27ae60;
}

.notification-error {
    background: #e74c3c;
}

.notification-info {
    background: #3498db;
}

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

/* Large Desktop (1920px and above) */
@media (min-width: 1920px) {
    .hero-container,
    .shop-container,
    .product-detail-container,
    .cart-container,
    .checkout-container {
        max-width: 1800px;
    }
    
    .hero-container {
        gap: 6rem;
    }
}

/* Standard Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .hero-container,
    .shop-container,
    .product-detail-container,
    .cart-container,
    .checkout-container {
        width: 85%;
    }
}

/* Medium Desktop / Laptop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .hero-container {
        gap: clamp(2rem, 3vw, 3rem);
    }
    
    .shop-content {
        grid-template-columns: minmax(220px, 18%) 1fr;
    }
    
    .cart-content,
    .checkout-content {
        grid-template-columns: 1fr minmax(280px, 28%);
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(clamp(220px, 18vw, 280px), 1fr));
    }
}

/* Tablet / Small Desktop (769px - 1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
    .hero-container {
        width: 95%;
        gap: clamp(1.5rem, 2.5vw, 2rem);
    }
    
    .shop-content {
        grid-template-columns: minmax(200px, 20%) 1fr;
        gap: clamp(1.25rem, 2vw, 1.5rem);
    }
    
    .cart-content,
    .checkout-content {
        grid-template-columns: 1fr minmax(250px, 30%);
        gap: clamp(1.25rem, 2vw, 1.5rem);
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .product-detail-content {
        gap: clamp(1.5rem, 2.5vw, 2rem);
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .shop-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .shop-sidebar {
        position: static;
        order: 2;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-images {
        position: static;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }
    
    .cart-item .item-quantity,
    .cart-item .item-total,
    .cart-item .item-actions {
        grid-column: 2;
        margin-top: 10px;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .shop-toolbar {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .search-box {
        max-width: none;
    }
    
    .sort-options {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .shop-container,
    .product-detail-container,
    .cart-container,
    .checkout-container {
        padding: 100px 15px 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cart-item .item-image {
        width: 100%;
        height: 200px;
        margin: 0 auto;
    }
}
