/* Container de la section */
.cc-category-section {
    padding: 20px;
    text-align: center;
     max-width: 700px; /* ou 650px */
    margin: 0 auto;
}

/* Titre et description */
.cc-category-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cc-category-section p {
    font-size: 16px;
    margin-bottom: 20px;
}


.cc-category-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* Boutons ovales */
.cc-category-btn {
    height: 40px;
    border-radius: 25px;
    border: 2px solid #ccc;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s;
    white-space: nowrap;
}

/* 1ère ligne : 4 boutons */
.cc-category-btn:nth-child(-n+4) {
    flex: 0 0 22%;cr
}

/* 2e ligne : 3 boutons */
.cc-category-btn:nth-child(n+5):nth-child(-n+7) {
    flex: 0 0 30%;
}

/* 3e ligne : 3 boutons */
.cc-category-btn:nth-child(n+8):nth-child(-n+10) {
    flex: 0 0 30%;
}

/* Hover et actif */
.cc-category-btn:hover,
.cc-category-btn.active {
    border-color: #007bff;
    background-color: #007bff;
    color: #fff;
}



/* Bouton suivant */
.cc-next-button {
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.cc-next-button:hover {
    background-color: #0056b3;
}
