/* Announcement Bar */
.announcement-bar {
    background-color: var(--color-maroon);
    color: var(--color-white);
    text-align: center;
    padding: 8px 15px;
    font-size: 11px;
    letter-spacing: 0.5px;
    font-family: var(--font-inter);
}
.announcement-bar p {
    margin: 0;
}

/* Site Header */
.site-header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-soft-sand);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: height 0.3s ease, box-shadow 0.3s ease;
}

/* Sticky Header */
.site-header.is-sticky {
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.site-header.is-sticky .header-inner {
    height: 70px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px; /* mobile height */
    transition: height 0.3s ease;
}

/* Logos */
.custom-logo {
    display: block;
    height: auto;
}
.desktop-logo {
    display: none;
}
.mobile-logo {
    display: block;
}
.mobile-logo .custom-logo {
    width: 44px;
}

/* Desktop Nav Hidden on Mobile */
.desktop-nav {
    display: none;
}
.desktop-search-wrapper {
    display: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-account-link {
    color: var(--color-charcoal);
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
    text-decoration: none;
}
.header-account-link:hover,
.header-account-link:focus-visible {
    color: var(--color-maroon);
}
.header-mobile-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-mobile-actions button {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Search Panel */
.mobile-search-panel {
    display: none;
    background: var(--color-white);
    border-top: 1px solid var(--color-soft-sand);
    padding: 15px 0;
    position: absolute;
    width: 100%;
    z-index: 90;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.mobile-search-panel.is-active {
    display: block;
}
.mobile-search-panel .search-form {
    display: flex;
    position: relative;
}
.mobile-search-panel .search-field {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-soft-sand);
    border-radius: 4px;
    font-family: var(--font-inter);
    font-size: 14px;
    background: var(--color-warm-ivory);
}
.mobile-search-panel .search-field:focus {
    outline: none;
    border-color: var(--color-maroon);
}

/* Mobile Drawer */
.vuv-mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background-color: var(--color-white);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 15px rgba(0,0,0,0.05);
}
.vuv-mobile-menu-drawer.is-active {
    right: 0;
}
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--color-soft-sand);
}
.drawer-header .custom-logo {
    width: 44px;
}
.drawer-close {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: var(--color-charcoal);
}
.drawer-content {
    padding: 30px 25px;
    overflow-y: auto;
    flex: 1;
}
.mobile-drawer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-drawer-nav li {
    margin-bottom: 24px;
}
.mobile-drawer-nav a {
    text-decoration: none;
    font-family: var(--font-inter);
    font-size: 22px;
    color: var(--color-charcoal);
    font-weight: 500;
    display: block;
}
.mobile-drawer-nav .nav-highlight {
    color: var(--color-maroon);
}
.mobile-drawer-nav .nav-divider {
    height: 1px;
    background-color: var(--color-soft-sand);
    margin: 30px 0;
}
.vuv-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.vuv-mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* Desktop Styles */
@media (min-width: 1100px) {
    .site-header.is-sticky .header-inner {
        height: 70px;
    }
    .header-inner {
        height: 90px;
    }
    .announcement-bar {
        font-size: 12px;
        padding: 9px 15px;
    }
    
    .mobile-logo { display: none; }
    .desktop-logo { display: block; }
    .desktop-logo .custom-logo {
        width: 184px;
        max-width: none;
        max-height: none;
        object-fit: contain;
    }

    .site-header.is-sticky .desktop-logo .custom-logo { width: 168px; }

    .header-mobile-actions { display: none; }
    .desktop-account-link { display: inline-flex; }
    
    .desktop-nav {
        display: block;
        flex: 1;
        text-align: center;
    }
    .desktop-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: inline-flex;
        align-items: center;
        gap: clamp(17px, 1.7vw, 28px);
    }
    .desktop-nav a {
        text-decoration: none;
        font-family: var(--font-inter);
        font-size: 13.5px;
        font-weight: 500;
        color: var(--color-charcoal);
        letter-spacing: 0.3px;
        position: relative;
        padding: 5px 0;
        transition: color 0.2s ease;
    }
    .desktop-nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--color-maroon);
        transform: scaleX(0);
        transition: transform 0.2s ease;
        transform-origin: right;
    }
    .desktop-nav a:hover {
        color: var(--color-maroon);
    }
    .desktop-nav a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }
    .desktop-nav .nav-highlight {
        color: var(--color-maroon);
    }
    /* Subtle dot indicator for Watch & Shop instead of hover underline */
    .desktop-nav .nav-highlight::after {
        display: none;
    }
    .desktop-nav .nav-highlight::before {
        content: '';
        position: absolute;
        top: -4px;
        right: -8px;
        width: 4px;
        height: 4px;
        background-color: var(--color-gold);
        border-radius: 50%;
    }
    .desktop-nav .nav-secondary a {
        color: #666;
    }
    .desktop-nav .nav-secondary a:hover {
        color: var(--color-maroon);
    }

    /* Desktop Search */
    .desktop-search-wrapper {
        display: flex;
        align-items: center;
        position: relative;
    }
    .desktop-search-toggle {
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        color: var(--color-charcoal);
        transition: color 0.2s;
    }
    .desktop-search-toggle:hover {
        color: var(--color-maroon);
    }
    .desktop-search-panel {
        position: absolute;
        right: 38px;
        width: 250px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: all 0.3s ease;
    }
    .desktop-search-panel.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    .desktop-search-panel .search-field {
        width: 100%;
        padding: 8px 0;
        border: none;
        border-bottom: 1px solid var(--color-charcoal);
        font-family: var(--font-inter);
        font-size: 13px;
        background: transparent;
    }
    .desktop-search-panel .search-field:focus {
        outline: none;
        border-bottom-color: var(--color-maroon);
    }
}

@media (min-width: 1100px) and (max-width: 1220px) {
    .desktop-logo .custom-logo { width: 164px; }
    .desktop-nav a { font-size: 12.5px; }
    .desktop-nav ul { gap: 16px; }
}

/* Active State Styles */
.desktop-nav a.is-active {
    color: var(--color-maroon);
}
.desktop-nav a.is-active::after {
    transform: scaleX(1);
    background-color: var(--color-gold);
    height: 2px;
}
.mobile-drawer-nav a.is-active {
    color: var(--color-maroon);
}
