/* ========================================
   HEADER AND NAVIGATION STYLES
   ======================================== */

/* Fix Navigation Alignment */
.museo-header .nav-desktop ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.museo-header .nav-desktop li {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.museo-header .nav-desktop a {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1;
}

.museo-header .nav-desktop a:hover {
    color: #FFE96D;
}

.museo-header .nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFE96D;
    transition: width 0.3s;
}

.museo-header .nav-desktop a:hover::after {
    width: 100%;
}

/* Mobile Menu Styles */
#mobile-menu nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

#mobile-menu nav li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#mobile-menu nav a {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 20px 15px;
    display: block;
    transition: all 0.3s;
}

#mobile-menu nav a:hover {
    background: rgba(255, 233, 109, 0.1);
    color: #FFE96D;
    padding-left: 25px;
}

/* Hide unwanted elements */
.js-modal-open[href*="account"],
a[href*="account/login"],
.user-dropdown,
.js-login,
.js-search-container,
.js-cart-toggle,
.js-cart-widget {
    display: none;
}
