﻿/* ==========================================================================
   1. RESET ET STYLES DE BASE
   - Réinitialisation des styles par défaut et définition des bases
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #0f172a;
    color: #fff;
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    /*margin-top: 200px !important; */
}

/* ==========================================================================
   2. CONTENEUR PRINCIPAL
   - Styles pour le conteneur principal qui contient tout le contenu
   ========================================================================== */
    .main-content {
    max-width: 2000px;
    width: 100%;
    padding: 2rem;
    padding-top: calc(var(--header-height) + 0.5rem);
    position: relative;
    margin-left: auto;
    margin-right: auto;
    min-height: calc(100vh - var(--header-height));
    transform: none !important; /* Empêche toute transformation */
    left: auto !important; /* Empêche tout positionnement relatif */
}

/* ==========================================================================
   3. SECTION HÉROS
   - Styles pour la section d'accueil principale
   ========================================================================== */
.hero-section {
    width: 100%;
    position: relative;
    padding: 3rem;
    background: linear-gradient(45deg, #1a1f2c, #2d3748);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
    margin-bottom: 50px; /* Espacement uniformisé à 50px */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Texte du héros */
.hero-text {
    max-width: 600px;
    position: relative;
    text-align: center;
    right: -13%;
}

    .hero-text h1 {
        font-size: 3.5rem;
        font-weight: bold;
        color: #60a5fa;
        margin-bottom: 2rem;
        line-height: 1.2;
        text-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
    }


/*
 * PETITS SMARTPHONES (moins de 360px)
 * Adaptations pour les très petits écrans
 */
@media (max-width: 360px) {
    /* Galerie circulaire - Passage en colonne unique 1×6 */
    .gallery-side {
        grid-template-columns: repeat(1, 1fr); /* 1 colonne */
        grid-template-rows: repeat(6, 1fr); /* 6 rangées */
    }

    /* Conteneur commerce - Passage également en colonne unique */
    .commerce-gallery {
        grid-template-columns: repeat(1, 1fr); /* 1 colonne */
        grid-template-rows: repeat(10, auto); /* 10 rangées pour les 10 images */
    }

    .gallery-center {
        width: 180px;
        height: 180px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    /* Carrousel ajustements pour très petits écrans */
    .actualites-carrousel {
        padding: 1rem;
    }

    .carrousel-slides {
        height: 560px;
    }

    .actualite-image {
        height: 130px;
    }

    .actualite-titre {
        font-size: 1rem;
    }

    .actualite-resume {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .actualites-grid-pair {
        padding: 0.75rem;
        gap: 0.75rem;
    }
}

.hero-text p {
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Image du héros */
.hero-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
    position: relative;
    left: -4.5%;
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        position: center;
    }

    .hero-image:hover img {
        transform: scale(1.05);
    }

/* Bouton d'appel à l'action */
.hero-cta {
    text-align: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .cta-button:hover {
        background-color: #1d4ed8;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }

/* ==========================================================================
   4. NAVIGATION RAPIDE
   - Styles pour la navigation en grille sous le héros
   ========================================================================== */
.quick-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 50px auto; /* Espacement uniformisé à 50px */
    max-width: 1400px;
    padding: 0 24px;
    width: 100%;
    z-index: 10;
}

.quick-nav-item {
    background: var(--card-bg, rgba(59, 130, 246, 0.2));
    padding: 16px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .quick-nav-item:hover {
        background: rgba(59, 130, 246, 0.1);
    }

/* ==========================================================================
   PANEL ACTUALITÉS CARROUSEL
   - Styles pour le carrousel d'actualités avec deux actualités par slide
   ========================================================================== */
.actualites-carrousel {
    max-width: 2000px;
    width: 100%;
    margin: 50px auto;
    padding: 2rem;
    background: linear-gradient(45deg, #1a1f2c, #2d3748);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
    position: relative;
}

.actualites-titre {
    font-size: 2rem;
    font-weight: bold;
    color: #60a5fa;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.4);
    padding-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.2);
    text-align: center;
}

/* Container principal du carrousel */
.carrousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
    margin-bottom: 2rem;
    background-color: rgba(31, 41, 55, 0.5);
}

/* Styles des slides */
.carrousel-slides {
    position: relative;
    height: 450px;
}

.carrousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

    .carrousel-slide.active {
        opacity: 1;
        z-index: 2;
    }

/* Grid pour afficher 2 actualités côte à côte */
.actualites-grid-pair {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    height: 100%;
    padding: 1.5rem;
}

/* Styles des cartes d'actualités */
.actualite-carte {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #1f2937;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

    .actualite-carte:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        border-color: rgba(59, 130, 246, 0.4);
    }

.actualite-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

    .actualite-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.actualite-carte:hover .actualite-image img {
    transform: scale(1.05);
}

.actualite-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    z-index: 3;
}

.badge-nouveau {
    background-color: #2563eb;
}

.badge-evenement {
    background-color: #059669;
}

.badge-decouverte {
    background-color: #7c3aed;
}

.badge-important {
    background-color: #d97706;
}

.actualite-contenu {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.actualite-titre {
    color: #93c5fd;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.actualite-date {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.actualite-resume {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.actualite-lien {
    display: inline-flex;
    align-items: center;
    color: #60a5fa;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .actualite-lien:hover {
        color: #93c5fd;
    }

    .actualite-lien i {
        margin-left: 0.375rem;
    }

/* Navigation du carrousel */
.carrousel-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
}

.carrousel-prev,
.carrousel-next {
    background-color: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

    .carrousel-prev:hover,
    .carrousel-next:hover {
        background-color: rgba(37, 99, 235, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }

    .carrousel-prev .icon,
    .carrousel-next .icon {
        width: 24px;
        height: 24px;
        color: #e2e8f0;
    }

/* Indicateurs du carrousel */
.carrousel-indicators {
    position: absolute;
    bottom: -20px; /* Positionnement plus bas (valeur négative) */
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
    margin-bottom: 15px; /* Ajoute une marge en bas pour éviter le chevauchement */
    padding-bottom: 10px; /* Ajoute un padding en bas pour plus d'espace */
}

/* Si besoin, vous pouvez aussi ajuster la taille des indicateurs */
.carrousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .carrousel-indicator.active {
        background-color: #60a5fa;
        transform: scale(1.2);
        box-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
    }

.actualites-footer {
    text-align: center;
    margin-top: 2.5rem;
}

.actualites-btn {
    display: inline-flex;
    align-items: center;
    background-color: #2563eb;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .actualites-btn:hover {
        background-color: #1d4ed8;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }

    .actualites-btn i {
        margin-left: 0.5rem;
    }

/* ==========================================================================
   5. PAVÉ COMMERCE
   - Styles pour la section commerce avec galerie d'images
   ========================================================================== */
.cont-commerce {
    max-width: 2000px; /* Même largeur maximale que cont-gallery */
    width: 100%;
    margin: 50px auto; /* Espacement uniformisé à 50px */
    padding: 2rem;
    position: relative;
    background: linear-gradient(45deg, #1a1f2c, #2d3748);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
    display: flex;
    gap: 40px; /* Augmentation de l'espace entre l'image principale et la galerie */
    align-items: center; /* Centrage vertical comme gallery */
}

/* Grande image à gauche */
.commerce-featured-image {
    flex: 0.4;
    border-radius: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
    position: relative;
    max-height: 600px;
    min-height: 400px;
    transition: all 0.3s ease;
    margin: 0 20px; /* Ajout de marge latérale pour centrer */
}

    .commerce-featured-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .commerce-featured-image:hover img {
        transform: scale(1.05);
    }

/* Conteneur des petites images - Mise à jour pour 3×2 */
.commerce-gallery {
    flex: 0.6;
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Changé de 3 à 5 colonnes */
    grid-template-rows: repeat(2, 1fr); /* Reste à 2 rangées */
    gap: 15px; /* Légèrement réduit pour tenir plus d'images */
    padding: 20px;
}

/* Petites images */
.commerce-thumbnail {
    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
    background: rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    position: relative;
}

    .commerce-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .commerce-thumbnail:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }

        .commerce-thumbnail:hover img {
            transform: scale(1.1);
        }


/* ==========================================================================
   6. PAVÉ GALLERY CIRCULAIRE
   - Styles pour la galerie avec image centrale circulaire
   ========================================================================== */
.cont-gallery {
    max-width: 2000px;
    width: 100%;
    margin: 50px auto; /* Espacement uniformisé à 50px */
    padding: 2rem;
    background: linear-gradient(45deg, #1a1f2c, #2d3748);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
    display: flex;
    position: relative;
    align-items: center;
}

/* Colonnes latérales - Configuration pour 3×2 */
.gallery-side {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes */
    grid-template-rows: repeat(2, 1fr); /* 2 rangées */
    gap: 20px;
    padding: 20px;
}

/* Colonne de gauche */
.gallery-left {
    padding-right: 30px;
}

/* Colonne de droite */
.gallery-right {
    padding-left: 30px;
}

/* Image centrale ronde */
.gallery-center {
    width: 320px;
    height: 320px;
    flex-shrink: 0;
    margin: 0 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-center-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

    .gallery-center-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-center-inner:hover img {
        transform: scale(1.1);
    }

.gallery-center:after {
    content: '';
    position: absolute;
    width: 130%;
    height: 130%;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.1);
    pointer-events: none;
}

/* Miniatures */
.gallery-thumbnail {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

    .gallery-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .gallery-thumbnail:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        border-color: rgba(59, 130, 246, 0.4);
    }

        .gallery-thumbnail:hover img {
            transform: scale(1.1);
        }

/* ==========================================================================
   7. PIED DE PAGE
   - Styles pour le footer du site
   ========================================================================== */
.site-footer {
    background: linear-gradient(45deg, #1a1f2c, #2d3748);
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    padding: 2rem 0;
    margin-top: 50px; /* Espacement uniformisé à 50px */
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: #60a5fa;
}

.footer-copyright {
    color: #e2e8f0;
    font-size: 0.875rem;
}

/* ==========================================================================
   8. BOUTONS ET UTILITAIRES
   - Styles réutilisables pour les boutons et classes utilitaires
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

    .btn-primary:hover {
        background-color: #1d4ed8;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }

/* Classe utilitaire pour l'espacement des conteneurs */
.container-spacing {
    margin-bottom: 50px; /* Espacement uniformisé à 50px */
}

/* ==========================================================================
   9. ANIMATIONS
   - Définition des animations réutilisables
   ========================================================================== */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==========================================================================
   10. RESPONSIVE DESIGN
   - Adaptations pour différentes tailles d'écran
   ========================================================================== */

/*
 * ÉCRANS LARGES (1024px - 1439px)
 * Adaptations pour tablettes en mode paysage et petits ordinateurs portables
 */
@media (max-width: 1439px) {
    /* Ajustements pour le carrousel */
    .carrousel-slides {
        height: 420px;
    }

    .actualite-image {
        height: 160px;
    }
}

@media (max-width: 1024px) {
    /* Galerie circulaire - Passe en mode vertical */
    .cont-gallery {
        flex-direction: column;
    }

    .gallery-center {
        margin: 30px auto;
    }

    /* Maintien de la disposition 3×2 pour les côtés de la galerie */
    .gallery-side {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .gallery-left, .gallery-right {
        padding: 10px;
    }

    /* Conteneur commerce - Maintien de la grille 5×2 */
    .commerce-gallery {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 12px; /* Espacement légèrement réduit */
    }

    /* Carrousel ajustements */
    .carrousel-slides {
        height: 400px;
    }

    .actualite-image {
        height: 150px;
    }
}

/*
 * TABLETTES (768px - 1023px)
 * Adaptations pour tablettes en mode portrait
 */
@media (max-width: 768px) {
    /* Section héros - Passage en 1 colonne */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        right: 0; /* Annulation du décalage */
    }

        .hero-text h1 {
            font-size: 2rem; /* Texte plus petit */
        }

    .hero-section {
        padding: 2rem;
    }

    .hero-image {
        min-height: 250px;
        left: 0; /* Annulation du décalage */
    }

    /* Navigation rapide - 2 colonnes au lieu de 5 */
    .quick-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Conteneur commerce - Passage en colonne */
    .cont-commerce {
        flex-direction: column;
        padding: 1.5rem;
    }

    .commerce-featured-image {
        min-height: 300px;
        margin: 0;
        width: 100%;
    }

    /* Conteneur commerce - Réorganisation en 4×3 */
    .commerce-gallery {
        grid-template-columns: repeat(4, 1fr); /* 4 colonnes */
        grid-template-rows: repeat(3, auto); /* 3 rangées (auto pour s'adapter au contenu) */
        gap: 10px;
        width: 100%;
    }

    /* Galerie circulaire - Maintien 3×2 mais avec espacement réduit */
    .gallery-side {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-center {
        width: 280px;
        height: 280px;
        margin: 20px auto;
    }

    /* Footer - Passage en colonne */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* Carrousel ajustements */
    .actualites-carrousel {
        padding: 1.5rem;
    }

    /* Passage à 1 colonne sur mobile */
    .actualites-grid-pair {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .carrousel-slides {
        height: 700px;
    }

    .actualite-image {
        height: 160px;
    }

    .carrousel-prev,
    .carrousel-next {
        width: 36px;
        height: 36px;
    }
}

/*
 * PETITES TABLETTES (576px - 767px)
 * Adaptations pour petites tablettes et grands smartphones
 */
@media (max-width: 576px) {
    /* Conteneur commerce - Réorganisation en 3×4 */
    .commerce-gallery {
        grid-template-columns: repeat(3, 1fr); /* 3 colonnes */
        grid-template-rows: repeat(4, auto); /* 4 rangées */
        gap: 8px;
    }

    /* Galerie circulaire - Passage à 2×3 */
    .gallery-side {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes */
        grid-template-rows: repeat(3, 1fr); /* 3 rangées */
        gap: 8px;
    }

    .gallery-center {
        width: 250px;
        height: 250px;
    }

    /* Carrousel ajustements */
    .carrousel-slides {
        height: 650px;
    }

    .actualite-image {
        height: 150px;
    }

    .actualites-titre {
        font-size: 1.75rem;
    }
}

/*
 * SMARTPHONES (480px - 575px)
 * Adaptations pour la plupart des smartphones
 */
@media (max-width: 480px) {
    /* Conteneur principal - Réduction des marges */
    .main-content {
        padding: 1rem;
    }

    /* Réduction du padding et des bordures arrondies pour tous les conteneurs */
    .hero-section, .cont-gallery, .cont-commerce, .actualites-carrousel {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    /* Navigation rapide - 1 seule colonne */
    .quick-nav {
        grid-template-columns: 1fr;
    }

    /* Conteneur commerce - Réorganisation en 2×5 */
    .commerce-gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes */
        grid-template-rows: repeat(5, auto); /* 5 rangées */
        gap: 8px;
        padding: 10px;
    }

    /* Galerie circulaire - Maintien 2×3 avec espacement réduit */
    .gallery-side {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 8px;
        padding: 10px;
    }

    .gallery-center {
        width: 220px;
        height: 220px;
    }

    /* Ajustements des éléments visuels */
    .gallery-thumbnail, .commerce-thumbnail {
        border-radius: 0.75rem; /* Bordures moins arrondies */
    }

    /* Boutons plus petits */
    .cta-button, .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    /* Carrousel ajustements */
    .carrousel-container {
        border-radius: 0.75rem;
    }

    .actualites-titre {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .carrousel-slides {
        height: 600px;
    }

    .actualite-titre {
        font-size: 1.15rem;
    }

    .actualite-resume {
        font-size: 0.9rem;
    }

    .actualite-contenu {
        padding: 1rem;
    }

    .carrousel-prev,
    .carrousel-next {
        width: 32px;
        height: 32px;
    }

        .carrousel-prev .icon,
        .carrousel-next .icon {
            width: 20px;
            height: 20px;
        }
}