        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Oswald:wght@400;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

:root {
            --lm-orange: #F2AB13;
            --seguin-red: #cc0000;
            --dark-grey: #000000;
            --light-grey: #f5f5f5;
            --text-color: #555;
            --white: #fff;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            height: 100vh; /* Empêche le scroll global */
            overflow: hidden; /* Bloque la barre de défilement */
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-color);
            background-color: var(--light-grey);
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* Répartit tout le contenu sur la hauteur */
        }

        /* Header */
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--dark-grey);
            padding: 10px 20px;
            color: var(--white);
            position: relative;
            z-index: 1000;
            flex-shrink: 0;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
            height: 150px;
        }

        .logo {
            height: 100px;
        }

        .header-social {
            display: flex;
            gap: 10px;
        }

        .header-social a {
            color: var(--lm-orange);
            font-size: 4em;
            text-decoration: none;
            margin-right: 15px;
            margin-left: 20px;
        }

        .partner-logo {
            display: flex;
            align-items: center;
        }

        .partner-logo img {
            height: 80px;
            display: block;
            margin-right: 200px;
        }

        .header-menu {
            display: flex;
            align-items: center;
            gap: 40px;
            
        }

        .header-menu span {
            font-size: 5em;
            font-weight: 700;
        }

        .header-menu a {
            color: var(--white);
            font-size: 5em;
            text-decoration: none;
        }

        /* Product Showcase */
        .product-showcase {
            flex-grow: 1;
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            background-color: var(--white);
            padding: 10px 0;
            position: relative;
            isolation: isolate;
            overflow: hidden; /* Empêche le scroll dans cette section */
        }

        .product-showcase::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(to right, #f0f0f0, #e0e0e0);
            z-index: -1;
        }

        .product-category {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 10px 5px;

            position: relative;
        }

        .product-category:last-child {
            border-right: none;
        }

        .category-title {
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            font-size: 0.9em;
            color: var(--dark-grey);
            text-transform: uppercase;
            margin-bottom: 10px;
            writing-mode: vertical-lr;
            transform: rotate(180deg);
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%) rotate(180deg);
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-left: 5px;
        }

        .product-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 180px;
            width: 130%;
            margin-top: -20px;
        }

        .product-item img {
            max-width: 80%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        .product-item .fa-arrow-up,
        .product-item .fa-arrow-left {
            display: none; /* Enlève les flèches pour épurer */
        }

.image-hover {
  position: relative;
  display: inline-block;
}

.image-hover img {
  display: block;
  transition: opacity 0.4s ease;
}

.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.image-hover:hover .img-hover {
  opacity: 1;
}

.image-hover:hover .img-default {
  opacity: 0;
}



        .qualibat-badge {
            position: absolute;
            bottom: 10px;
            right: 10px;
        }

        .qualibat-badge img {
            width: 60px;
            height: auto;
        }

        /* Bottom Sections */
        .bottom-sections {
            display: grid;
            grid-template-columns: 1.2fr 1.6fr 1.2fr;
            gap: 0px;
            padding:px 0px;
            background-color: var(--dark-grey);
            color: var(--white);
            position: relative;
            flex-shrink: 0;
        }
        

        .store-info, .newsletter-section, .testimonial-section {
            border-radius: 0px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }

        .store-info {
            background: linear-gradient(135deg, var(--lm-orange) 0%, #ffc947 100%);
            padding: 24px;
            position: relative;
        }

        .store-header {
            margin-bottom: 8px;
        }

        .store-header h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.4em;
            color: var(--dark-grey);
            text-align: center;
            padding: 0;
            margin: 0;
        }

        .store-header p {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2em;
            color: var(--white);
            left: 0;
            width: 100%;
            text-align: center;
            padding: 8px 0;
            z-index: 2;
            position: absolute;
            bottom: 10px; /* distance depuis le bas */
            left: 50%;
            transform: translateX(-50%);
            margin-bottom: -30px;
            color: white;
            padding: 6px 0;
            font-size: 1em;
            margin: 0;

        }


        .store-image-carousel {
            position: relative;
            width: 100%;
            max-width: 1200px;
            height: 170px;
            overflow: hidden;
            border-radius: 8px;
            margin: 8px auto 0;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slides {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: 1fr;
            gap: 8px;
            padding: 8px;
        }

        .carousel-image-item {
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 4px;
        }

        .carousel-image-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .carousel-image-item:hover img {
            transform: scale(1.05);
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.6);
            color: #fff;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: background-color 0.3s ease;
        }

        .carousel-btn:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

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

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

        .carousel-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: none;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease;
            padding: 0;
        }

        .carousel-dot.active {
            background-color: var(--lm-orange);
        }

        .carousel-dot:hover {
            background-color: rgba(255, 255, 255, 0.8);
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: var(--white);
            border: none;
            padding: 8px;
            border-radius: 50%;
            cursor: pointer;
        }

        

        .carousel-arrow.left { left: 10px; }
        .carousel-arrow.right { right: 10px; }

        .newsletter-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('image2013.png');
            padding: 15px;
            text-align: center;
            background-size: 120%; /* plus grand que 100% = zoom, moins que 100% = dézoom */

        }

        .newsletter-section h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.2em;
            color: var(--lm-orange);
            margin-bottom: 10px;
        }

        .newsletter-section ul {
            list-style: none;
            padding-left: 0;
            font-size: 0.9em;
            color: #ffffff;
            text-align: left;
            margin-bottom: 10px;
        }

        .newsletter-section ul li {
            margin-bottom: 5px;
            position: relative;
            padding-left: 20px;
        }

        .newsletter-section ul li::before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: var(--lm-orange);
            position: absolute;
            left: 0;
        }

        .subscribe-button {
            background-color: var(--lm-orange);
            color: var(--white);
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
        }



        /* Ligne auteur + étoiles */
.testimonial-footer {
    display: flex;
    justify-content: space-between; /* nom à gauche, étoiles à droite */
    align-items: center;
    width: 90%;
    margin: 0 auto 10px auto; /* centrée et espacée du bas */
}

/* Auteur à gauche */
.author {
    color: var(--lm-orange);
    font-weight: bold;
    text-align: left;
    margin: 0;
}

/* Étoiles à droite */
.rating {
    display: flex;
    gap: 5px;
}

.rating .fa-star {
    color: gold;
}

/* Lien “voir tous les avis” en bas à droite */
.all-reviews {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: var(--lm-orange);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
}

.all-reviews i {
    margin-left: 5px;
}

.realisations-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    padding: 12px 24px;
    background: var(--dark-grey);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.realisations-button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.realisations-button i {
    transition: transform 0.3s ease;
}

.realisations-button:hover i {
    transform: translateX(5px);
}




        .testimonial-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('image2012.png');
            background-size: 80%;
            padding: 15px;
            color: #f0f0f0;
            text-align: center;
            background-position: center;
            position: relative;
        }
        

        .testimonial-section img {
    width: 40px;   /* ajuste ici la taille horizontale */
    height: auto;  /* conserve les proportions */
    margin-bottom: -20px; /* espace entre l'image et le texte */
}
        .testimonial-section::before {
            content: '“';
            font-family: serif;
            font-size: 3em;
            color: rgba(255,255,255,0.2);
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
        }
        

        .quote {
            font-style: italic;
            font-size: 0.9em;
            margin-bottom: 10px;
            padding-top: 20px;
        }

        .author {
            color: var(--lm-orange);
            font-weight: bold;
            text-align: left;
        }

        .rating .fa-star { 
            color: gold; 
            justify-content: right;
            
        }


        .separator {
    width: 90%;          /* largeur de la ligne */
    height: 2px;         /* épaisseur */
    background-color: #F2AB13; /* couleur (orange LM) */
    margin: 15px auto;   /* centrée avec espace autour */
    border: none;
    border-radius: 2px;  /* arrondir un peu les bords si tu veux */
}
