/* Navbar Styles extracted from index.html */
:root {
    --primary-purple: #6200EA;
    --bg-purple: #5b0ae6;
    --text-dark: #1f2937;
    --text-light: #ffffff;
    --accent-pink: #ff4b9f;
    --accent-blue: #0ea5e9;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1100;
    /* Higher than products filters */
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-purple);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-lang {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    cursor: pointer;
    color: var(--primary-purple);
}

.user-icon {
    color: var(--primary-purple);
    font-size: 18px;
    cursor: pointer;
}

/* Cart Icon */
.cart-icon-container {
    position: relative;
    cursor: pointer;
    color: var(--primary-purple);
    font-size: 20px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        /* display: none; */
        /* Keeping it visible/stacked for now as per index.html logic */
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
        justify-content: flex-start;
    }
}