/* ============================================
   MENU ORIZZONTALE - DEFINITIVO
   ============================================ */
.nav {
    background: #2B2B2B;
    border-bottom: 2px solid #444;
    display: block !important;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 5px !important;
    padding: 8px 20px !important;
    overflow-x: auto !important;
    align-items: center !important;
}

.nav-item {
    display: inline-block !important;
    padding: 10px 15px !important;
    color: #b8b8b8 !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    border-bottom: 3px solid transparent !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    font-size: 0.95rem !important;
    flex-shrink: 0 !important;
}

.nav-item:hover {
    color: #E67E22 !important;
    border-bottom-color: #F77F00 !important;
}

.nav-item.active {
    color: #E67E22 !important;
    border-bottom-color: #F77F00 !important;
}

/* Nasconde il menu toggle mobile */
.menu-toggle {
    display: none !important;
}

/* Auth buttons nel menu */
#auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}
/* ============================================
   FORZA GRIGLIA ORIZZONTALE PER LE CARD
   ============================================ */
.grid-3 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
}

.grid-2 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
}

/* Versione mobile: una colonna */
@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr !important;
    }
    .grid-2 {
        grid-template-columns: 1fr !important;
    }
}