/* Navigation Styles */

#navbar {
    background: var(--primary-bg);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 50%;
        background-color: var(--accent-gold);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

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

/* Shopping Cart Widget */
.ec-cart-widget {
    margin-left: 20px;
}

    .ec-cart-widget div {
        display: flex;
        align-items: center;
    }

/* Responsive navbar */
@media (max-width: 991px) {
    .ec-cart-widget {
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
    }
}