@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&family=Playfair+Display:wght@700&display=swap');
/* ==========================================================================
   ESTILOS EXCLUSIVOS DEL NAVBAR (CENTRADOS EN DOS FILAS)
   ========================================================================== */

.navbar {
    display: flex;
    flex-direction: column; /* Logo arriba, enlaces abajo */
    justify-content: center;
    align-items: center;
    padding: 25px 20px 15px 20px;
    background-color: #ffffff; /* Fondo blanco tiza */
    position: sticky;
    top: 0;
    z-index: 9999; /* Siempre por encima de los productos al hacer scroll */
    border-bottom: 1px solid #eeeeee; /* Línea divisoria fina */
    box-sizing: border-box;
    width: 100%;
    gap: 15px; /* Espacio entre el logo y los links */
}

/* El Logo (SF MATES) */
.navbar .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #111111;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Contenedor de enlaces */
.navbar .nav-links {
    display: flex;
    flex-direction: row; /* Los enlaces van uno al lado del otro */
    justify-content: center;
    align-items: center;
    list-style: none; /* Chau puntitos molestos de la lista */
    margin: 0;
    padding: 0;
    gap: 35px; /* Separación entre botones */
    flex-wrap: wrap; /* Si agregás muchos en el JS, bajan solos sin romperse */
}

.navbar .nav-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Los links individuales */
.navbar .nav-links a {
    font-family: 'Montserrat', sans-serif;
    color: #666666; /* Gris elegante */
    text-decoration: none; /* Chau subrayado feo */
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.25s ease;
    padding: 5px 0;
    display: inline-block;
}

/* Hover a negro pleno */
.navbar .nav-links a:hover {
    color: #000000;
    background: transparent;
}

/* Burbuja flotante del contador del carrito */
.badge-carrito {
    background-color: #5d4037; /* El color marrón de SF MATES */
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 50%;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    transform: translateY(-2px);
}

/* Ajuste para celulares */
@media (max-width: 480px) {
    .navbar {
        padding: 15px 10px;
        gap: 10px;
    }
    .navbar .logo {
        font-size: 1.4rem;
    }
    .navbar .nav-links {
        gap: 20px;
    }
}