/* JBL-STYLE HEADER - WHITE CLEAN DESIGN */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    z-index: 1000;
    transition: all var(--transition-base);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

nav {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE - LOGO */
.nav-left {
    display: flex;
    align-items: center;
    gap: 48px;
}

.logo {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    text-transform: uppercase;
}

.logo:hover {
    color: var(--maroon);
}

/* CENTER - MAIN NAVIGATION - ZALANDO SANS */
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    transition: color var(--transition-fast);
    position: relative;
    padding: 24px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--maroon);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--maroon);
}

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

/* DROPDOWN ARROW */
.nav-links .dropdown-arrow {
    font-size: 10px;
    transition: transform var(--transition-base);
    margin-left: 2px;
}

.nav-links li:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* MEGA MENU DROPDOWN - FULL VIEWPORT WIDTH - NO PADDING */
.nav-dropdown {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 100;
    padding: 0;
}

.nav-links li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
}

/* DROPDOWN INNER CONTAINER - 2560px MAX WIDTH - NO PADDING */
.dropdown-inner {
    max-width: 2560px;
    margin: 0 auto;
    padding: 0;
}

/* PRODUCTS DROPDOWN - SPLIT LAYOUT (1/3 + 2/3) */
.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

/* LEFT SECTION - 1/3 NAVIGATION */
.dropdown-nav-section {
    padding: 40px;
    background: var(--white);
    border-right: 1px solid var(--light-gray);
}

.dropdown-column h4 {
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--black);
    margin-bottom: 20px;
    margin-top: 0;
}

.dropdown-column:not(:first-child) h4 {
    margin-top: 32px;
}

.dropdown-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-column li {
    margin-bottom: 8px;
}

.dropdown-column li:last-child {
    margin-bottom: 0;
}

/* BUTTON-STYLE LINKS - LIGHT THEME */
.dropdown-column li a {
    color: var(--dark-gray);
    font-size: 18px;
    font-weight: 600;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    text-decoration: none;
    transition: all var(--transition-base);
    padding: 14px 24px;
    text-transform: none;
    letter-spacing: 0;
    display: block;
    background: var(--off-white);
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.dropdown-column li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.08), transparent);
    transition: left var(--transition-slow);
}

.dropdown-column li a:hover::before {
    left: 100%;
}

.dropdown-column li a::after {
    display: none;
}

.dropdown-column li a:hover {
    color: var(--maroon);
    border-color: var(--maroon);
    background: var(--white);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.15);
}

/* RIGHT SECTION - 2/3 FEATURED - BACKGROUND IMAGE + GRADIENT OVERLAY */
.dropdown-featured-section {
    position: relative;
    background: var(--off-white);
    min-height: 450px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 48px;
    background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1200&h=800&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease-in-out;
}

/* BLACK GRADIENT OVERLAY FROM BOTTOM */
.dropdown-featured-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    z-index: 1;
}

.dropdown-featured-image {
    display: none;
}

.dropdown-featured-image.hidden {
    opacity: 0;
}

.dropdown-featured-overlay {
    position: relative;
    z-index: 2;
    display: block;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    max-width: 600px;
}

.dropdown-featured-overlay h3 {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.dropdown-featured-overlay p {
    font-size: 16px;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.dropdown-cta-btn {
    display: none;
}

/* DISCOVER/SUPPORT DROPDOWN - 2 COLUMNS */
.dropdown-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

/* FEATURED ITEM IN DROPDOWN */
.dropdown-featured {
    background: var(--off-white);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.dropdown-featured h5 {
    font-family: 'Anton', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--maroon);
    margin-bottom: 8px;
}

.dropdown-featured p {
    font-size: 14px;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    color: var(--dark-gray);
    line-height: 1.5;
    margin: 0;
    text-transform: none;
}

/* RIGHT SIDE - DISCOVER, SUPPORT, CURRENCY */
.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-utility {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-utility-item {
    position: relative;
}

.nav-utility a {
    color: var(--mid-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    transition: color var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-utility a:hover {
    color: var(--maroon);
}

.nav-utility .dropdown-arrow {
    font-size: 10px;
    transition: transform var(--transition-base);
}

.nav-utility-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* UTILITY DROPDOWNS - ZALANDO SANS */
.utility-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    margin-top: 10px;
    min-width: 280px;
    z-index: 100;
    padding: 24px;
}

.nav-utility-item:hover .utility-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 20px;
}

.utility-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.utility-dropdown li {
    margin-bottom: 14px;
}

.utility-dropdown li:last-child {
    margin-bottom: 0;
}

.utility-dropdown li a {
    color: var(--dark-gray);
    font-size: 14px;
    font-weight: 500;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    text-decoration: none;
    transition: color var(--transition-fast);
    display: block;
    text-transform: none;
    letter-spacing: 0;
}

.utility-dropdown li a:hover {
    color: var(--maroon);
}

/* CURRENCY SWITCHER - ENHANCED FOR DARK BACKGROUNDS */
.currency-switcher {
    position: relative;
}

.currency-btn {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    padding: 11px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.currency-btn:hover {
    border-color: var(--maroon);
    background: var(--maroon);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(139,0,0,0.3);
    transform: translateY(-2px);
}

.currency-flag {
    font-size: 18px;
    line-height: 1;
}

.currency-code {
    font-weight: 800;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    color: inherit;
}

.currency-btn .dropdown-arrow {
    font-size: 10px;
    transition: transform var(--transition-base);
}

.currency-switcher:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* CURRENCY DROPDOWN - STRONG BORDERS FOR VISIBILITY */
.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    margin-top: 8px;
    min-width: 280px;
    z-index: 100;
    overflow: hidden;
}

.currency-switcher:hover .currency-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 12px;
}

/* CURRENCY DROPDOWN HEADER */
.currency-dropdown-header {
    padding: 18px 24px;
    border-bottom: 2px solid var(--black);
    background: var(--black);
}

.currency-dropdown-header h4 {
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin: 0;
}

/* CURRENCY OPTIONS - BOLD DESIGN */
.currency-options-list {
    padding: 12px;
    background: var(--white);
}

.currency-option {
    padding: 14px 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 8px;
    margin-bottom: 6px;
    background: var(--off-white);
    border: 2px solid transparent;
}

.currency-option:last-child {
    margin-bottom: 0;
}

.currency-option:hover {
    background: var(--white);
    border-color: var(--dark-gray);
    transform: translateX(4px);
}

.currency-option.active {
    background: var(--maroon);
    border-color: var(--maroon);
}

.currency-option-flag {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.currency-option-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.currency-code-option {
    font-size: 16px;
    font-weight: 800;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black);
}

.currency-option.active .currency-code-option {
    color: var(--white);
}

.currency-name {
    font-size: 13px;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    color: var(--dark-gray);
    font-weight: 600;
}

.currency-option.active .currency-name {
    color: var(--white);
}

.currency-option-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2.5px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    background: var(--white);
}

.currency-option.active .currency-option-check {
    background: var(--white);
    border-color: var(--white);
}

.currency-option.active .currency-option-check::after {
    content: '✓';
    color: var(--maroon);
    font-size: 13px;
    font-weight: 900;
}

.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    margin-top: 8px;
    min-width: 280px;
    z-index: 100;
    overflow: hidden;
}

.currency-switcher:hover .currency-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 12px;
}

/* CURRENCY DROPDOWN HEADER */
.currency-dropdown-header {
    padding: 18px 24px;
    border-bottom: 2px solid var(--light-gray);
    background: var(--off-white);
}

.currency-dropdown-header h4 {
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
    margin: 0;
}

/* CURRENCY OPTIONS */
.currency-options-list {
    padding: 12px;
    background: var(--white);
}

.currency-option {
    padding: 14px 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 8px;
    margin-bottom: 6px;
    background: var(--off-white);
    border: 2px solid transparent;
}

.currency-option:last-child {
    margin-bottom: 0;
}

.currency-option:hover {
    background: var(--white);
    border-color: var(--dark-gray);
    transform: translateX(4px);
}

.currency-option.active {
    background: var(--black);
    border-color: var(--black);
}

.currency-option-flag {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.currency-option-info {
    flex: 1;
    display: flex;
    align-items: center;
}

.currency-name {
    font-size: 15px;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    color: var(--black);
    font-weight: 600;
    text-align: left;
}

.currency-option.active .currency-name {
    color: var(--white);
}

.currency-code-option {
    display: none;
}

.currency-option-check {
