/* Category Styles pour Happy Bubble */

/* Styles pour les titres de catégories */
.category-title {
    grid-column: 1 / -1;
    margin: 30px 0 20px 0;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.category-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Styles spéciaux pour les différentes catégories */
.category-bubble-tea {
    background: linear-gradient(135deg, #FF6B9D, #4ECDC4);
}

.category-boissons {
    background: linear-gradient(135deg, #4ECDC4, #45B7D1);
}

.category-desserts {
    background: linear-gradient(135deg, #FFA726, #FF7043);
}

.category-sandwich {
    background: linear-gradient(135deg, #66BB6A, #4CAF50);
}

/* Animation pour les titres de catégories */
.category-title:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Responsive pour les catégories */
@media (max-width: 768px) {
    .category-title {
        font-size: 1.2rem;
        padding: 12px 20px;
        margin: 20px 0 15px 0;
    }
}

@media (max-width: 480px) {
    .category-title {
        font-size: 1rem;
        padding: 10px 15px;
    }
}
