/* Style du bloc au complet */

#bottin-entreprises{
    padding:40px 0;
}

/* Style du menu déroulant */
.bottin-dropdown select {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    font-family: Poppins;
    background-color: #FFE59A;
    color: #58595B;
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
}

.bottin-dropdown select:focus {
    outline: none;
    box-shadow: none;
}


/* Conteneur des sous-catégories */
.bottin-subcategories {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Bouton individuel */
.bottin-subcat-btn {
    border-radius: 200px;
    border: 1px solid #EFB307;
    background-color: #fff;
    color: #EFB307;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
	font-family: Poppins;
    transition: background 0.2s ease;
}

/* Bouton actif de sous-catégorie */
.bottin-subcat-btn.active {
    background-color: #EFB307;
    color: #fff;
    border-color: #EFB307;
}


/* Grille responsive */
.bottin-entries {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Tablette */
@media (max-width: 1024px) {
    .bottin-entries {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .bottin-entries {
        grid-template-columns: 1fr;
    }
}

/* Carte entreprise */
.bottin-card {
    background-color: #fff;
    border: 1px solid #EFB307;
    border-radius: 20px;
    padding: 20px 20px 0 20px;
    box-sizing: border-box;
    height: 100%;
}

/* Titre entreprise */
.bottin-card h3 {
    color: #EFB307;
    margin-top: 0;
    font-size: 20px;
}

/* Conteneur centré */
.bottin-loader {
    text-align: center;
    margin: 40px auto;
}

/* L’animation du cercle */
.bottin-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Le cercle animé */
.bottin-loader:after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 6px solid #EFB307;
    border-top-color: transparent;
    border-radius: 50%;
    animation: bottin-spin 0.8s linear infinite;
}

/* Animation de rotation */
@keyframes bottin-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Overlay plein écran */
.bottin-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

/* Spinner */
.bottin-loader-overlay::after {
    content: "";
    display: inline-block;
    width: 60px;
    height: 60px;
    border: 6px solid #EFB307;
    border-top-color: transparent;
    border-radius: 50%;
    animation: bottin-spin 0.8s linear infinite;
}

/* Rotation spinner */
@keyframes bottin-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Animation d'apparition */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Animation de disparition */
@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

/* 📱 Ajustements mobiles */
@media (max-width: 600px) {
    .bottin-subcat-btn {
        font-size: 14px;
        padding: 6px 14px;
    }
}

