/**
 * Thematic Navigation - Lin Teas
 * Navigation thématique rapide avec icônes (Best-sellers, Nouveautés, Bio, etc.)
 * Copié 1:1 du mockup catalogue-premium.css lignes 286-371
 *
 * @package LinTeas
 * @since 2.0.0
 */

/* ==========================================================================
   NAVIGATION THÉMATIQUE RAPIDE
   ========================================================================== */

.thematic-quick-nav {
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-white) 100%);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(127, 179, 163, 0.15);
    overflow-x: auto;
    overflow-y: hidden;
}

.thematic-icons-quick {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 var(--spacing-md);
}

.thematic-quick-nav .thematic-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    transition: var(--transition);
    padding: var(--spacing-xs);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    min-width: 70px;
}

.thematic-quick-nav .thematic-icon:hover {
    transform: translateY(-2px);
}

.thematic-quick-nav .thematic-icon.active {
    background: rgba(127, 179, 163, 0.1);
}

.thematic-quick-nav .thematic-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    color: var(--color-primary);
}

.thematic-quick-nav .thematic-icon:hover .thematic-circle {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-white);
}

.thematic-quick-nav .thematic-icon.active .thematic-circle {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.thematic-quick-nav .thematic-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
    white-space: nowrap;
}

.thematic-quick-nav .thematic-icon:hover .thematic-label {
    color: var(--color-accent);
    font-weight: 600;
}

.thematic-quick-nav .thematic-icon.active .thematic-label {
    color: var(--color-primary);
    font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .thematic-icons-quick {
        gap: var(--spacing-md);
        justify-content: flex-start;
    }

    .thematic-quick-nav .thematic-circle {
        width: 35px;
        height: 35px;
    }

    .thematic-quick-nav .thematic-circle svg {
        width: 18px;
        height: 18px;
    }

    .thematic-quick-nav .thematic-label {
        font-size: 0.65rem;
    }

    .thematic-quick-nav .thematic-icon {
        min-width: 60px;
    }
}

