/* Variables CSS pour les couleurs et polices - Facile à modifier */
:root {
    --color-primary-bg: #fdf5f6; /* Rose poudré très clair / Presque blanc */
    --color-secondary-bg: #f8e7eb; /* Rose poudré léger */
    --color-accent: #d4a7a7; /* Rose/Nude plus soutenu pour accents */
    --color-text-dark: #333333; /* Gris foncé pour le texte principal */
    --color-text-light: #ffffff; /* Blanc pour texte sur fond sombre */
    --color-border: #eeeeee; /* Gris très clair pour les bordures */
    --color-golden-separator: #b8860b; /* Couleur dorée pour la séparation */

    --font-heading: 'Playfair Display', serif; /* Police élégante pour les titres */
    --font-body: 'Montserrat', sans-serif; /* Police moderne et lisible pour le corps */

    --spacing-large: 60px;
    --spacing-medium: 40px;
    --spacing-small: 20px;
    --spacing-extra-large: 80px; /* Nouvelle variable pour un espacement plus grand */
}

/* Styles généraux et réinitialisation */
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    scroll-behavior: smooth; /* Défilement doux entre sections */
    overflow-x: hidden; /* Empêche le défilement horizontal inattendu */
}

/* Base pour toutes les sections */
.section {
    width: 100%;
    min-height: 100vh; /* Chaque section prend au moins toute la hauteur de la fenêtre */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centre le contenu verticalement */
    align-items: center; /* Centre le contenu horizontalement */
    padding: var(--spacing-medium) var(--spacing-small); /* Padding pour éviter que le contenu ne touche les bords */
    box-sizing: border-box; /* S'assure que le padding est inclus dans la largeur/hauteur */
    text-align: center;
    position: relative; /* Utile pour les arrière-plans ou éléments positionnés */
    overflow: hidden; /* Masque tout ce qui dépasse de la section */
}

/* Styles pour la balise <hr> de séparation */
.section-separator {
    border: none; /* Supprime la bordure par défaut du hr */
    border-top: 2px solid var(--color-golden-separator); /* Applique la ligne dorée */
    width: 100%; /* Ligne sur toute la largeur de l'écran */
    margin: 0; /* Supprime les marges par défaut */
    padding: 0; /* Supprime le padding par défaut */
    background-color: transparent; /* Rend le fond transparent */
    opacity: 0.7; /* Légère transparence pour la subtilité */
    box-sizing: border-box; /* S'assure que le padding est inclus dans la largeur/hauteur si jamais un padding était appliqué ailleurs */
}


/* Conteneur pour limiter la largeur du contenu dans chaque section */
.content-wrapper {
    max-width: 1100px; /* Largeur maximale augmentée pour le contenu */
    width: 100%;
    padding: 0 var(--spacing-small);
    box-sizing: border-box;
    z-index: 2; /* S'assure que le contenu est au-dessus des arrière-bans */
}

/* Styles pour les titres */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-accent);
    margin-top: 0;
    margin-bottom: var(--spacing-small);
    line-height: 1.2;
}

h1 {
    font-size: 4em; /* Grande taille pour le titre principal */
    color: var(--color-text-light); /* Couleur différente pour le titre sur l'image */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.4); /* Ombre pour le contraste */
}

h2 {
    font-size: 3em; /* Taille pour les titres de section */
    margin-bottom: var(--spacing-large); /* Plus d'espace sous les titres de section */
    position: relative;
    padding-bottom: 10px;
}
h2::after { /* Petite ligne sous les titres de section */
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 10px auto 0;
}

h3 {
    font-size: 1.8em;
    color: var(--color-text-dark);
}

/* Boutons primaires */
.btn-primary {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-text-light);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    margin-top: var(--spacing-small);
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #c09191; /* Teinte légèrement plus foncée */
    transform: translateY(-2px); /* Léger effet de soulèvement */
}

/* --- Section Accueil (Hero) --- */
#accueil {
    background-color: var(--color-secondary-bg);
    background-image: url('images/slider-prothesiste-ongulaire.jpg'); /* Nouvelle image pour le header */
    background-size: cover;
    background-position: center;
    color: var(--color-text-light); /* Texte clair sur l'image */
    position: relative;
}
#accueil::before { /* Calque semi-transparent sur l'image */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Légèrement sombre pour le contraste du texte */
    z-index: 1;
}

#accueil .tagline {
    font-size: 1.8em;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    color: var(--color-text-light);
}
#accueil .slogan {
    font-size: 1.3em;
    margin-bottom: var(--spacing-medium);
    color: var(--color-text-light);
}

/* --- Styles pour la nouvelle mise en page de la section Présentation --- */
#presentation-institut {
    background-color: var(--color-primary-bg); /* Couleur de fond douce */
    color: var(--color-text-dark);
}

#presentation-institut h2 {
    color: var(--color-accent);
}

#presentation-institut p {
    max-width: 800px; /* Maintenez cela pour les paragraphes si le content-wrapper n'est pas suffisant */
    margin: 0 auto 1em; /* Ajustez si nécessaire avec le flexbox */
    font-size: 1.2em; /* Taille de police légèrement augmentée */
}

.presentation-layout {
    display: flex;
    flex-direction: row; /* Disposition par défaut en ligne (image à gauche, texte à droite) */
    align-items: center; /* Centre les éléments verticalement */
    gap: var(--spacing-medium); /* Espace entre l'image et le texte */
    text-align: left; /* Aligne le texte à gauche dans ce bloc */
    padding-bottom: var(--spacing-large); /* Ajoute de l'espace en bas de la section */
}

.presentation-image {
    flex: 1; /* L'image prend 1 part de l'espace disponible */
    min-width: 300px; /* Largeur minimale pour l'image */
}

.presentation-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Bords légèrement arrondis pour l'image */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Légère ombre */
}

.presentation-text {
    flex: 2; /* Le texte prend 2 parts de l'espace disponible */
    padding-left: var(--spacing-small); /* Légère marge intérieure gauche */
}

.presentation-text h2 {
    text-align: left; /* Aligne le titre à gauche dans ce bloc */
    margin-bottom: var(--spacing-small); /* Réduit la marge sous le titre de ce bloc */
}
.presentation-text h2::after { /* Ajuste la ligne sous le titre pour qu'elle s'aligne à gauche */
    margin: 10px 0 0 0;
}


/* --- Section Nos Prestations --- */
#nos-prestations {
    background-color: var(--color-secondary-bg);
    padding-top: var(--spacing-extra-large); /* Plus de padding en haut */
    padding-bottom: var(--spacing-extra-large); /* Plus de padding en bas */
}

.prestations-layout {
    display: flex;
    justify-content: center;
    gap: var(--spacing-large); /* Augmenter l'espace entre les boîtes de prestation */
    flex-wrap: wrap; /* Permet aux éléments de passer à la ligne sur de petits écrans */
}

.prestation-item {
    background-color: var(--color-primary-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: var(--spacing-medium);
    flex: 1;
    min-width: 300px; /* Largeur minimale pour chaque carte de prestation */
    max-width: 450px; /* Largeur maximale pour éviter qu'ils ne soient trop grands */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prestation-item:hover {
    transform: translateY(-5px); /* Léger effet de soulèvement au survol */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* Ombre plus prononcée */
}

.prestation-item h3 {
    color: var(--color-accent);
    margin-bottom: var(--spacing-small);
}

.prestation-item img {
    max-width: 100%;
    height: 200px; /* Hauteur fixe pour les images de prestation */
    object-fit: cover; /* Assure que l'image couvre la zone sans déformation */
    border-radius: 8px;
    margin-bottom: var(--spacing-small);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-small) 0 var(--spacing-medium) 0;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed var(--color-border); /* Ligne pointillée */
    font-size: 1.1em;
}

.service-list li:last-child {
    border-bottom: none; /* Pas de bordure pour le dernier élément */
}

.service-list li span:first-child {
    font-weight: 600;
}

/* --- Section Galerie --- */
#galerie {
    background-color: var(--color-primary-bg);
    padding-top: var(--spacing-extra-large);
    padding-bottom: var(--spacing-extra-large);
}

.gallery-filters {
    margin-bottom: var(--spacing-large);
    display: flex;
    justify-content: center;
    gap: 15px; /* Espace entre les boutons de filtre */
    flex-wrap: wrap; /* Permet aux boutons de passer à la ligne */
}

.filter-button {
    /* Hérite de .btn-primary */
    background-color: var(--color-secondary-bg); /* Couleur de fond plus douce pour les filtres */
    color: var(--color-text-dark);
    border: 1px solid var(--color-accent);
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 0; /* Pas de marge supérieure par défaut */
}

.filter-button.active,
.filter-button:hover {
    background-color: var(--color-accent); /* Couleur accentuée quand actif ou survolé */
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* 4 colonnes sur grands écrans, s'adapte */
    gap: var(--spacing-small); /* Espace entre les images */
    padding: var(--spacing-small) 0;
    justify-items: center; /* Centre les éléments dans leurs cellules */
}

.gallery-item {
    width: 100%;
    height: 250px; /* Hauteur fixe pour toutes les images de la galerie */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* S'assure que l'image couvre l'espace sans déformation */
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); /* Léger zoom au survol */
}

/* Modal pour le zoom d'image */
#imageModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    padding-top: 60px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

#imageModal.show {
    display: flex; /* Utilise flexbox pour le centrage */
}

.modal-content-img {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0.1)}
    to {transform: scale(1)}
}

#closeImageModalBtn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

#closeImageModalBtn:hover,
#closeImageModalBtn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


/* --- Section Offres & Actualités --- */
#offres-actualites {
    background-color: var(--color-secondary-bg);
    padding-top: var(--spacing-extra-large);
    padding-bottom: var(--spacing-extra-large);
}

#offres-actualites h2 { /* Modification pour le titre de la section */
    color: var(--color-golden-separator);
}
#offres-actualites h2::after { /* Ajuste la ligne sous le titre */
    background-color: var(--color-golden-separator);
}

.promo-box {
    background-color: var(--color-accent); /* Changement de couleur de fond pour le cadre */
    border: none; /* Plus de bordure pour laisser le fond parler */
    border-radius: 10px;
    padding: var(--spacing-medium);
    margin-top: var(--spacing-medium);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.promo-box h3 {
    color: var(--color-text-light); /* Changement de couleur du texte h3 pour le contraste */
    font-size: 2.2em;
    margin-bottom: var(--spacing-small);
}

.promo-box p {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: var(--color-text-light); /* Changement de couleur du texte p pour le contraste */
}

.promo-date {
    font-style: italic;
    color: var(--color-text-light); /* Changement de couleur de la date */
    font-size: 1em;
}

/* --- Section Témoignages --- */
#temoignages {
    background-color: var(--color-primary-bg);
    padding-top: var(--spacing-extra-large);
    padding-bottom: var(--spacing-extra-large);
    position: relative; /* Nécessaire pour positionner les boutons de navigation */
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    max-width: 900px; /* Largeur maximale du carrousel */
    margin: 0 auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-radius: 10px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-item {
    flex: 0 0 100%; /* Chaque témoignage prend 100% de la largeur du conteneur */
    box-sizing: border-box;
    padding: var(--spacing-medium);
    background-color: var(--color-secondary-bg);
    border-radius: 10px;
    text-align: center;
    color: var(--color-text-dark);
}

.testimonial-item p {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-item .author {
    display: block;
    font-weight: 600;
    color: var(--color-accent);
    font-size: 1.1em;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(212, 167, 167, 0.7); /* Couleur accent avec transparence */
    color: var(--color-text-light);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5em;
    border-radius: 50%; /* Boutons ronds */
    transition: background-color 0.3s ease;
    z-index: 10;
}

.carousel-button:hover {
    background-color: var(--color-accent);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

/* --- Section À Propos --- */
#a-propos {
    background-color: var(--color-secondary-bg);
    padding-top: var(--spacing-extra-large);
    padding-bottom: var(--spacing-extra-large);
}

#a-propos p {
    max-width: 800px;
    margin: 0 auto 1em;
    font-size: 1.1em;
}

/* --- Section Contact --- */
#contact {
    background-color: var(--color-primary-bg);
    padding-top: var(--spacing-extra-large);
    padding-bottom: var(--spacing-extra-large);
}

.contact-info {
    margin-bottom: var(--spacing-large);
    font-size: 1.1em;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.booking-cta {
    margin-top: var(--spacing-medium);
    margin-bottom: var(--spacing-large);
}

.booking-cta p {
    font-size: 1.3em;
    margin-bottom: var(--spacing-small);
    font-weight: 600;
}

.important-notes {
    font-size: 0.95em;
    color: #777;
    margin-top: var(--spacing-medium);
}

/* --- Footer --- */
footer {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    text-align: center;
    padding: var(--spacing-small);
    font-size: 0.9em;
}

footer p {
    margin: 5px 0;
}

/* --- Modal (Pop-up de réservation) --- */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    padding-top: 60px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--color-primary-bg);
    margin: auto;
    padding: var(--spacing-medium);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 600px; /* Largeur maximale pour le modal */
    position: relative;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

.modal-content h2 {
    color: var(--color-accent);
    margin-top: 0;
    margin-bottom: var(--spacing-small);
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    box-sizing: border-box; /* Inclure padding et border dans la largeur */
    font-family: var(--font-body);
    font-size: 1em;
}

.form-group textarea {
    resize: vertical; /* Permet le redimensionnement vertical */
}

.form-message {
    margin-top: var(--spacing-small);
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    display: none; /* Caché par défaut */
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Bouton de fermeture du modal */
.close-button {
    color: #aaaaaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.close-button:hover,
.close-button:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

/* Bouton flottant "Prendre RDV" */
.btn-floating {
    position: fixed;
    bottom: var(--spacing-medium);
    right: var(--spacing-medium);
    background-color: var(--color-accent);
    color: var(--color-text-light);
    border-radius: 50px; /* Rend le bouton rond */
    padding: 15px 25px;
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 90; /* Au-dessus de la plupart des contenus mais sous les modals */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-floating:hover {
    background-color: #c09191;
    transform: translateY(-3px);
}

/* Styles pour la barre de navigation */
.navbar {
    background-color: var(--color-primary-bg); /* Un fond légèrement poudré */
    padding: 15px var(--spacing-small);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Légère ombre pour la profondeur */
    display: flex;
    justify-content: center; /* Centre les éléments de la nav */
    align-items: center;
    position: sticky; /* Reste en haut lors du défilement */
    top: 0;
    width: 100%;
    z-index: 50; /* S'assure que la nav est au-dessus d'autres contenus */
    box-sizing: border-box;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Affiche les éléments de la liste en ligne */
    gap: var(--spacing-medium); /* Espace entre les liens de navigation */
}

.navbar li a {
    text-decoration: none;
    color: var(--color-text-dark); /* Couleur de texte sombre */
    font-weight: 600;
    font-size: 1.1em;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar li a:hover,
.navbar li a.active {
    background-color: var(--color-accent); /* Couleur accent au survol et pour l'actif */
    color: var(--color-text-light); /* Texte clair sur fond accent */
}

/* Styles du bouton Hamburger (mobile) */
.hamburger-button {
    display: none; /* Caché par défaut sur les grands écrans */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 60; /* Assure que le bouton est au-dessus du menu si ouvert */
}

.hamburger-button span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-text-dark); /* Couleur des barres du burger */
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Animation du bouton Hamburger quand il est "actif" */
.hamburger-button.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger-button.active span:nth-child(2) {
    opacity: 0; /* La barre du milieu disparaît */
}

.hamburger-button.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Media Query pour afficher le menu burger sur mobile */
@media (max-width: 768px) {
    .hamburger-button {
        display: flex; /* Affiche le bouton hamburger */
    }

    .navbar ul {
        display: none; /* Cache la liste de navigation par défaut sur mobile */
        flex-direction: column;
        width: 100%;
        background-color: var(--color-primary-bg); /* Couleur de fond du menu ouvert */
        position: absolute;
        top: 100%; /* Juste en dessous de la navbar */
        left: 0;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding-top: var(--spacing-small);
        padding-bottom: var(--spacing-small);
    }

    .navbar ul.active {
        display: flex; /* Affiche la liste quand le hamburger est actif */
    }

    .navbar li {
        margin: 10px 0; /* Espace vertical entre les liens du menu mobile */
    }

    /* Ajustements pour les sections sur mobile */
    .section {
        padding: var(--spacing-small); /* Réduit le padding sur mobile */
        min-height: auto; /* Permet aux sections d'être plus courtes sur mobile */
    }

    h1 {
        font-size: 3em; /* Taille de titre plus petite sur mobile */
    }

    h2 {
        font-size: 2.2em; /* Taille de titre de section plus petite */
        margin-bottom: var(--spacing-medium);
    }

    .presentation-layout {
        flex-direction: column; /* Colonnes sur mobile pour la présentation */
        text-align: center;
    }

    .presentation-text {
        padding-left: 0; /* Supprime le padding gauche sur mobile */
    }

    .presentation-text h2 {
        text-align: center; /* Centre le titre sur mobile */
    }
    .presentation-text h2::after {
        margin: 10px auto 0; /* Centre la ligne sous le titre */
    }

    .prestations-layout {
        gap: var(--spacing-medium); /* Réduit l'espace entre les cartes de prestation */
    }

    .prestation-item {
        min-width: 90%; /* Prend plus de largeur sur mobile */
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* 2 colonnes sur mobile */
        gap: 10px;
    }

    .filter-button {
        padding: 8px 15px; /* Boutons de filtre plus petits */
        font-size: 0.9em;
    }

    .promo-box h3 {
        font-size: 1.8em;
    }

    .carousel-button {
        padding: 8px 12px;
        font-size: 1.2em;
    }

    .modal-content {
        padding: var(--spacing-small); /* Réduit le padding du modal */
    }

    .btn-floating {
        bottom: var(--spacing-small);
        right: var(--spacing-small);
        padding: 12px 20px;
        font-size: 1em;
    }
}