
                @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@400;500;600;700&family=Lato:wght@400;700&display=swap');

                :root {
                    --color-dark: #222222;
                    --color-red: #893330; 
                    --color-white: #ffffff;
                    --color-light-grey: #f8f8f8;
                    --font-serif: 'Arial', serif;
                    --font-sans: 'Montserrat', sans-serif; 
                }

                body {
                    margin: 0;
                    font-family: var(--font-sans);
                    color: var(--color-dark);
                    overflow-x: hidden;
                    background-color: var(--color-white);
                }

                h1, h2, h3 {
                    font-family: var(--font-serif);
                }

                a {
                    text-decoration: none;
                    color: inherit;
                }

                section, .content-section {
                    padding: 80px 5vw;
                }

                .section-heading {
                    font-size: clamp(2em, 3vw, 3em);
                    font-weight: 700;
                    color: var(--color-red);
                    margin: 0;
                    text-transform: uppercase;
                    text-align: center;
                }


                .navigation-bar {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 15px 5vw;
                    background-color: var(--color-white);
                    position: sticky;
                    top: 0;
                    z-index: 1000;
                    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
                    }

                .logo-image {
                    height: 60px;
                    width: auto;
                    display: block;
                }

                .logo-link {
                    display: inline-block;
                    height: auto;
                }

                .logo {
                    font-size: 1.8em;
                    font-weight: 700;
                    text-transform: uppercase;
                    font-family: var(--font-serif);
                }

                .nav-menu {
                    display: flex;
                    height: 100%;
                    gap: 25px;
                    flex-grow: 1;
                    justify-content: center;
                    align-items: center;
                }

                .cart-wrapper {
                    display: flex;
                    align-items: center;
                    height: 100%;
                    gap: 15px;
                }

                .nav-link {
                    font-weight: 500;
                    transition: color 0.2s;
                }

                .contact-us-button, .shop-now-button {
                    display: inline-block;
                    padding: 10px 20px;
                    background-color: var(--color-red);
                    color: var(--color-white);
                    text-transform: uppercase;
                    font-weight: 600;
                    border: 1px solid var(--color-red);
                    transition: background-color 0.3s;
                }

                .contact-us-button:hover, .shop-now-button:hover {
                    background-color: #a00000;
                }


                .hamburger-menu {
                    display: none;
                    flex-direction: column;
                    justify-content: space-around;
                    align-items: center;
                    background: transparent;
                    border: 2px solid var(--color-red);
                    border-radius: 6px;
                    cursor: pointer;
                    padding: 10px;
                    width: 44px;
                    height: 44px;
                    z-index: 1001;
                    transition: all 0.3s ease;
                }

                .hamburger-menu:hover {
                    background-color: var(--color-red);
                }

                .hamburger-line {
                    width: 22px;
                    height: 2px;
                    background-color: var(--color-red);
                    border-radius: 2px;
                    transition: all 0.3s ease;
                }

                .hamburger-menu:hover .hamburger-line {
                    background-color: var(--color-white);
                }

                .hamburger-menu.active {
                    background-color: var(--color-red);
                }

                .hamburger-menu.active .hamburger-line {
                    background-color: var(--color-white);
                }

                .hamburger-menu.active .hamburger-line:nth-child(1) {
                    transform: rotate(45deg) translate(5px, 5px);
                }

                .hamburger-menu.active .hamburger-line:nth-child(2) {
                    opacity: 0;
                }

                .hamburger-menu.active .hamburger-line:nth-child(3) {
                    transform: rotate(-45deg) translate(5px, -5px);
                }

                .mobile-only {
                    display: none;
                }

                .desktop-only {
                    display: inline-block;
                }

                @media (max-width: 991px) {
                    .hamburger-menu {
                        display: flex;
                    }
                    
                    .cart-wrapper {
                        display: none;
                    }
                    
                    .nav-menu {
                        position: fixed;
                        top: 0;
                        right: -100%;
                        width: 280px;
                        height: 100vh;
                        background-color: var(--color-white);
                        flex-direction: column;
                        justify-content: flex-start;
                        padding-top: 80px;
                        gap: 0;
                        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
                        transition: right 0.3s ease;
                    }
                    
                    .nav-menu.active {
                        right: 0;
                    }
                    
                    .nav-link {
                        width: 50%;
                        -webkit-tap-highlight-color: #a00000;
                        padding: 20px 30px;
                        border-bottom: 1px solid #f0f0f0;
                        text-align: left;
                    }
                    
                    .nav-link:hover {
                        background-color: #f8f8f8;
                    }

                    .nav-link {
                    position: relative;
                    text-decoration: none;
                    color: #000; 
                    font-weight: 500;
                    transition: color 0.3s ease;
                    }



                    
                    .mobile-only {
                        display: block;
                        width: calc(100% - 60px);
                        margin: 20px 30px;
                        text-align: center;
                    }
                    
                    .desktop-only {
                        display: none;
                    }
                }

                .menu-overlay {
                    display: none;
                    position: fixed;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0, 0, 0, 0.5);
                    z-index: 999;
                }

                .menu-overlay.active {
                    display: block;
                }

                html, body {
                margin: 0;
                padding: 0;
                height: 100%;
            }

            .hero-section {
                display: grid;
                grid-template-columns: 1fr 1fr;
                width: 100%;
                min-height: 600px; 
                margin: 0;
                padding: 0;
                overflow: hidden;
            }

            .hero-left, .hero-right {
                width: 100%;
                height: 100%;
                min-height: 600px; 
            }

            .hero-left {
                position: relative;
                overflow: hidden;
                display: flex;
                align-items: center;
            }

            .hero-image {
                width: 100%;
                height: 100%;
                object-fit: cover; 
                object-position: center; 
            }

            .hero-right {
                background-color: var(--color-red);
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;
                z-index: 1;
            }

            .hero-text-content {
                text-align: center;
                color: var(--color-white);
                animation: fadeInUp 1s ease-out 0.5s forwards;
                opacity: 0;
                margin: 0;
            }

            .hero-title {
                font-size: clamp(2em, 7vw, 7em); 
                font-weight: 700;
                margin: 0;
                margin-top: -100px;
                line-height: 1.2;
            }


            .hero-subtitle {
                font-size: clamp(1.5em, 2.5vw, 3em);
                margin-top: 0.5em;
            }

            @media (max-width: 768px) {
                .hero-section {
                    grid-template-columns: 1fr;
                    min-height: auto;
                }
                
                .hero-left, .hero-right {
                    min-height: 400px;
                }
            }

            .fullscreen-section {
                height: 100vh;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 0 5%;
                margin: 0;
            }


                .product-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                    gap: 40px 20px;
                    margin-top: 50px;
                }

                .product-card {
                    text-align: center;
                }

                .product-image-wrapper {
                    max-width: 200px;
                    height: 300px;
                    overflow: hidden;
                    margin: 0 auto 20px;
                }

                .product-image {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    transition: transform 0.3s ease;
                }

                .product-link:hover .product-image {
                    transform: scale(1.05);
                }

                .product-name {
                    font-size: 1.1em;
                    font-weight: 700;
                    margin: 10px 0 5px 0;
                    text-transform: uppercase;
                    color: var(--color-dark);
                }

                .product-price-block {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 10px;
                }

                .current-price {
                    font-weight: 700;
                    color: var(--color-red);
                    font-size: 1.1em;
                }

                .old-price {
                    color: #999;
                    text-decoration: line-through;
                    font-size: 0.9em;
                }

                .about-section {
                    padding: 0;
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    min-height: 70vh;
                }

                .about-content-block {
                    background-color: var(--color-red);
                    color: var(--color-white);
                    padding: 5vw;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                }

                .about-title {
                    font-size: clamp(2em, 5vw, 4em);
                    font-weight: 700;
                    line-height: 1.1;
                    margin-bottom: 30px;
                }

                .about-text {
                    font-size: 1.1em;
                    line-height: 1.6;
                    max-width: 500px;
                    margin-bottom: 40px;
                }

                .about-button {
                    background-color: var(--color-white);
                    color: var(--color-red);
                    max-width: 200px;
                }

                .about-button:hover {
                    background-color: transparent;
                    color: var(--color-white);
                }

                .about-image-block {
                    overflow: hidden;
                }

                .about-image {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    display: block;
                }

                .testimonial-section {
                    background-color: var(--color-light-grey);
                    text-align: center;
                    overflow: hidden;
                    position: relative;
                    padding-top: 150px;
                    padding-bottom: 80px;
                }

                .testimonial-title {
                    position: absolute;
                    top: 50px;
                    left: 50%;
                    transform: translateX(-50%);
                    font-size: clamp(3em, 8vw, 6em);
                    font-weight: 700;
                    color: rgba(208, 0, 0, 0.1);
                    z-index: 1;
                    pointer-events: none;
                    text-transform: uppercase;
                    width: 100%;
                }

                .testimonial-slider-container {
                    position: relative;
                    max-width: 800px;
                    margin: 0 auto;
                    z-index: 2;
                }

                .testimonial-track {
                    display: flex;
                    transition: transform 0.5s ease-in-out;
                    width: 100%;
                }

                .testimonial-slide {
                    flex-shrink: 0;
                    width: 100%;
                    padding: 0 10vw;
                    box-sizing: border-box;
                    text-align: justify;
                    font-size: 1.25em;
                    line-height: 1.6;
                    margin-bottom: 25px;
                    font-style: italic;
                }

                .quote-text {
                    margin-bottom: 25px;
                }

                .quote-author {
                    font-weight: 700;
                    font-size: 1em;
                    color: var(--color-red);
                    text-transform: uppercase;
                    text-align: right;
                    display: block;
                    margin-top: 15px;
                }

                .slider-arrow {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 40px;
                    height: 40px;
                    border: 1px solid #ccc;
                    background-color: transparent;
                    color: var(--color-dark);
                    font-size: 1.2em;
                    line-height: 40px;
                    cursor: pointer;
                    border-radius: 50%;
                    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
                    z-index: 5;
                    text-align: center;
                }

                .slider-arrow:hover {
                    background-color: var(--color-red);
                    color: var(--color-white);
                    border-color: var(--color-red);
                }

                .arrow-left {
                    left: 0;
                }

                .arrow-right {
                    right: 0;
                }

                .slider-dots {
                    text-align: center;
                    margin-top: 30px;
                    padding-bottom: 20px;
                }

                .dot {
                    height: 10px;
                    width: 10px;
                    margin: 0 5px;
                    background-color: #bbb;
                    border-radius: 50%;
                    display: inline-block;
                    transition: background-color 0.3s;
                    cursor: pointer;
                }

                .dot.active {
                    background-color: var(--color-red);
                }

                .gallery-section {
                    padding: 0;
                    overflow: hidden;
                    white-space: nowrap;
                    position: relative;
                }

                .gallery-track-wrapper {
                    width: 100%;
                }

                .gallery-track {
                    display: flex;
                    animation: scroll-left 40s linear infinite;
                    width: fit-content;
                }

                @keyframes scroll-left {
                    0% {
                        transform: translateX(0);
                    }
                    100% {
                        transform: translateX(-50%);
                    }
                }

                .gallery-track:hover {
                    animation-play-state: paused;
                }

                .gallery-card {
                    position: relative;
                    overflow: hidden;
                    aspect-ratio: 1 / 1;
                    cursor: pointer;
                    flex-shrink: 0;
                    width: 25vw;
                    max-width: 350px;
                }

                .gallery-image {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    display: block;
                    transition: transform 0.3s ease;
                }

                .gallery-card:hover .gallery-image {
                    transform: scale(1.1);
                }

                .instagram-overlay {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    padding: 15px 0;
                    background-color: var(--color-red);
                    color: var(--color-white);
                    font-weight: 700;
                    text-align: center;
                    font-size: 1.2em;
                    text-transform: uppercase;
                    font-family: var(--font-sans);
                }



                @media (max-width: 992px) {
                    .hero-section {
                        height: 80vh;
                    }
                    
                    .hero-title {
                        font-size: clamp(2em, 7vw, 8em);
                    }
                    
                    .hero-subtitle {
                        font-size: clamp(1.2em, 2vw, 2.5em);
                    }
                    
                    .hero-product-image {
                        width: clamp(150px, 18vw, 300px);
                        border: 10px solid var(--color-white);
                    }
                    
                    .product-grid {
                        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                        gap: 35px 18px;
                        margin-top: 40px;
                    }
                    
                    .product-image-wrapper {
                        max-width: 180px;
                        height: 270px;
                    }
                    
                    .product-name {
                        font-size: 1em;
                    }
                    
                    .current-price {
                        font-size: 1em;
                    }
                    
                    .old-price {
                        font-size: 0.85em;
                    }
                    
                    
                    .about-section {
                        min-height: 60vh;
                    }
                    
                    .about-content-block {
                        padding: 6vw;
                    }
                    
                    .about-title {
                        font-size: clamp(1.8em, 4.5vw, 3.5em);
                        margin-bottom: 25px;
                    }
                    
                    .about-text {
                        font-size: 1em;
                        margin-bottom: 35px;
                    }
                    
                    .testimonial-section {
                        padding-top: 130px;
                        padding-bottom: 70px;
                    }
                    
                    .testimonial-title {
                        font-size: clamp(2.5em, 7vw, 5em);
                        top: 40px;
                    }
                    
                    .testimonial-slide {
                        font-size: 1.15em;
                        padding: 0 8vw;
                    }
                    
                    .slider-arrow {
                        width: 38px;
                        height: 38px;
                        line-height: 38px;
                        font-size: 1.1em;
                    }
                    
                    .gallery-card {
                        width: 30vw;
                        max-width: 300px;
                    }
                    
                    .instagram-overlay {
                        font-size: 1.1em;
                        padding: 12px 0;
                    }
                }


                @media (max-width: 767px) {
                    .hero-section {
                        grid-template-columns: 1fr;
                        height: auto;
                        min-height: 70vh;
                    }
                    
                 
                    
                    .hero-right {
                        min-height: 70vh;
                    }
                    
                    .hero-text-content {
                        margin-bottom: 5vh;
                        padding: 0 5vw;
                    }
                    
                    .hero-title {
                        font-size: clamp(2em, 8vw, 4em);
                    }
                    
                    .hero-subtitle {
                        font-size: clamp(1em, 3vw, 1.8em);
                        margin-top: 10px;
                    }
                    
                    .hero-product-image {
                        display: none; 
                    }
                    
                
                    .product-grid {
                        grid-template-columns: repeat(2, 1fr);
                        gap: 30px 15px;
                        margin-top: 35px;
                    }
                    
                    .product-image-wrapper {
                        max-width: 100%;
                        height: 220px;
                    }
                    
                    .product-name {
                        font-size: 0.95em;
                    }
                    
                    .current-price {
                        font-size: 0.95em;
                    }
                    
                    .old-price {
                        font-size: 0.8em;
                    }
                    
                    
                    .about-section {
                        grid-template-columns: 1fr;
                        min-height: auto;
                    }
                    
                    .about-content-block {
                        padding: 8vw;
                        order: 2; 
                    }
                    
                    .about-image-block {
                        order: 1; 
                        min-height: 40vh;
                    }
                    
                    .about-title {
                        font-size: clamp(1.8em, 5vw, 2.5em);
                        margin-bottom: 20px;
                        text-align: center;
                    }
                    
                    .about-text {
                        font-size: 0.95em;
                        line-height: 1.6;
                        margin-bottom: 30px;
                        text-align: justify;
                    }
                    
                    .about-button {
                        margin: 0 auto;
                    }
                    
                    .testimonial-section {
                        padding-top: 100px;
                        padding-bottom: 60px;
                    }
                    
                    .testimonial-title {
                        font-size: clamp(2em, 8vw, 4em);
                        top: 30px;
                    }
                    
                    .testimonial-slide {
                        font-size: 1.05em;
                        padding: 0 6vw;
                        line-height: 1.5;
                    }
                    
                    .quote-author {
                        font-size: 0.95em;
                    }
                    
                    .slider-arrow {
                        width: 35px;
                        height: 35px;
                        line-height: 35px;
                        font-size: 1em;
                    }
                    
                    .arrow-left {
                        left: 5px;
                    }
                    
                    .arrow-right {
                        right: 5px;
                    }
                    
                    .dot {
                        height: 9px;
                        width: 9px;
                        margin: 0 4px;
                    }
                    
                    .gallery-card {
                        width: 40vw;
                        max-width: 250px;
                    }
                    
                    .instagram-overlay {
                        font-size: 1em;
                        padding: 10px 0;
                    }
                }



                @media (max-width: 575px) {
                    .hero-section {
                        min-height: 60vh;
                    }
                    
                    .hero-right {
                        min-height: 60vh;
                    }
                    
                    .hero-text-content {
                        padding: 0 6vw;
                    }
                    
                    .hero-title {
                        font-size: clamp(1.8em, 9vw, 3em);
                    }
                    
                    .hero-subtitle {
                        font-size: clamp(0.9em, 4vw, 1.5em);
                    }
                    
                    .product-grid {
                        grid-template-columns: 1fr;
                        gap: 35px;
                        margin-top: 30px;
                        max-width: 300px;
                        margin-left: auto;
                        margin-right: auto;
                    }
                    
                    .product-image-wrapper {
                        max-width: 200px;
                        height: 280px;
                    }
                    
                    .product-name {
                        font-size: 1em;
                    }
                    
                    .current-price {
                        font-size: 1em;
                    }
                    
                    .about-content-block {
                        padding: 10vw 8vw;
                    }
                    
                    .about-title {
                        font-size: clamp(1.6em, 6vw, 2.2em);
                    }
                    
                    .about-text {
                        font-size: 0.9em;
                        margin-bottom: 25px;
                    }
                    
                    .about-image-block {
                        min-height: 35vh;
                    }
                    
                    .testimonial-section {
                        padding-top: 80px;
                        padding-bottom: 50px;
                    }
                    
                    .testimonial-title {
                        font-size: clamp(1.8em, 9vw, 3em);
                        top: 20px;
                    }
                    
                    .testimonial-slide {
                        font-size: 0.95em;
                        padding: 0 8vw;
                        text-align: left;
                    }
                    
                    .quote-text {
                        margin-bottom: 20px;
                    }
                    
                    .quote-author {
                        font-size: 0.9em;
                        text-align: center;
                    }
                    
                    .slider-arrow {
                        width: 32px;
                        height: 32px;
                        line-height: 32px;
                        font-size: 0.95em;
                    }
                    
                    .slider-dots {
                        margin-top: 25px;
                    }
                    
                    .dot {
                        height: 8px;
                        width: 8px;
                    }
                    
                    .gallery-card {
                        width: 50vw;
                        max-width: 200px;
                    }
                    
                    .instagram-overlay {
                        font-size: 0.9em;
                        padding: 8px 0;
                    }
                }



                @media (max-width: 399px) {
                    .hero-title {
                        font-size: 1.6em;
                    }
                    
                    .hero-subtitle {
                        font-size: 0.85em;
                    }
                    
                    .product-grid {
                        gap: 30px;
                    }
                    
                    .product-image-wrapper {
                        height: 250px;
                    }
                    
                    .about-title {
                        font-size: 1.5em;
                    }
                    
                    .about-text {
                        font-size: 0.85em;
                    }
                    
                    .testimonial-title {
                        font-size: 1.6em;
                    }
                    
                    .testimonial-slide {
                        font-size: 0.9em;
                        padding: 0 6vw;
                    }
                    
                    .quote-author {
                        font-size: 0.85em;
                    }
                    
                    .slider-arrow {
                        width: 30px;
                        height: 30px;
                        line-height: 30px;
                        font-size: 0.9em;
                    }
                    
                    .gallery-card {
                        width: 60vw;
                    }
                    
                    .instagram-overlay {
                        font-size: 0.8em;
                        padding: 6px 0;
                    }
                }


              .about-hero {
                position: relative;
                width: 100%;
                height: 85vh; /* Ajuste si nécessaire */
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                
                background-image: url('../images/_MG_8005.jpg'); /* adapte juste le nom */
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                
                /* Forme incurvée */
                clip-path: ellipse(110% 80% at 50% 100%);
                
                /* Animation mouvement lent */
                animation: heroFloat 12s ease-in-out infinite alternate;
            }

            /* Animation background */
            @keyframes heroFloat {
                0% {
                    background-size: 100%;
                    background-position: center;
                }
                100% {
                    background-size: 108%; /* zoom lent */
                    background-position: 50% 45%; /* léger mouvement */
                }
            }



                .about-hero::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0, 0, 0, 0.45); 
                    z-index: 1;
                }

                .about-hero > * {
                    z-index: 2;
                }

                .about-hero-title {
                    font-family: 'Arial', serif; 
                    font-size: 4rem; 
                    font-weight: 700; 
                    color: #FFFFFF; 
                    margin: 0 0 25px 0;
                    letter-spacing: 2px;
                    line-height: 1.2;
                }

                .about-hero-subtitle {
                    font-family: 'Montserrat', sans-serif; 
                    font-size: 1rem;
                    color: #FFFFFF; 
                    margin-bottom: 10px;
                    letter-spacing: 5px; 
                    text-transform: uppercase;
                }


                .secondary-button {
                    background-color: transparent;
                    color: #FFFFFF;
                    border: 1px solid #FFFFFF; 
                    padding: 14px 35px;
                    text-decoration: none;
                    text-transform: uppercase;
                    font-size: 0.85rem;
                    letter-spacing: 3px;
                    transition: all 0.3s ease;
                    margin-top: 15px;
                }




                @keyframes fadeIn {
                    from {
                        opacity: 0;
                        transform: translateY(20px); 
                    }
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }

                .about-hero-subtitle {
                    animation: fadeIn 1s ease-out 0.5s forwards;
                    opacity: 0;
                }

                .about-hero-title {
                    animation: fadeIn 1s ease-out 0.8s forwards;
                    opacity: 0;
                }
                .history-section {
                    display: grid;
                    grid-template-columns: 1fr 1.2fr; 
                    gap: 50px;
                    align-items: center;
                    padding: 0 0 80px 0;
                }

                .history-content {
                    padding-left: 5vw;
                }

                .history-title {
                    font-family: var(--font-serif);
                    font-size: clamp(1.8em, 3vw, 2.8em);
                    color: var(--color-red);
                    margin-bottom: 20px;
                    text-align: left; 
                }

                .history-paragraph {
                    line-height: 1.7;
                    color: #444;
                    margin-bottom: 25px;
                    font-size: 0.95em;
                    padding: 0; 
                    text-align: justify; 
                    text-indent: 0; 
                }


                .history-image-wrapper {
                    overflow: hidden;
                    
                }

                .history-image {
                    width: 100%;
                    height: 78vh; 
                    object-fit: cover;
                    display: block;
                    transform: scale(1.03);
                    transition: transform 1s ease-out;
                    filter: brightness(0.9);
                }


                @media (max-width: 992px) {
                    .history-section {
                        grid-template-columns: 1fr;
                        padding: 0 0 70px 0;
                    }

                    .history-image {
                        height: 50vh;
                    }

                    .history-title {
                        text-align: center;
                        font-size: clamp(1.6em, 4vw, 2em);
                    }

                    .history-paragraph {
                        font-size: 0.95em;
                        text-align: justify;
                    }
                }

                .stats-section {
                    background-color: var(--color-red);
                    color: var(--color-white);
                    padding: 60px 5vw;
                }

                .stats-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                    gap: 40px;
                    text-align: center;
                    margin-bottom: 80px;
                }

                .stat-item {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                }

                .stat-number {
                    font-family: var(--font-serif);
                    font-size: clamp(3em, 6vw, 5em);
                    font-weight: 700;
                    margin-bottom: 5px;
                    line-height: 1;
                }

                .stat-label {
                    font-family: var(--font-sans);
                    font-size: 0.9em;
                    text-transform: uppercase;
                    letter-spacing: 2px;
                    font-weight: 500;
                    color: rgba(255, 255, 255, 0.8);
                }

                .vision-content {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 40px;
                    align-items: center;
                }

                .vision-title {
                    font-family: var(--font-serif);
                    font-size: clamp(3em, 4.5vw, 2.9em); 
                    margin-bottom: 5px; 
                    line-height: 1.5;
                    text-align: left; 
                }

                .vision-text {
                    line-height: 1.7;
                    font-size: 1em;
                    color: rgba(255, 255, 255, 0.9);
                    margin-bottom: 25px;
                    text-align: justify;
                }

                .vision-text-wrapper {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                }


                .stats-section .secondary-button {
                    border-color: var(--color-white);
                    color: var(--color-white);
                }

                .stats-section .secondary-button:hover {
                    background-color: var(--color-white);
                    color: var(--color-red);
                }

                @media (max-width: 992px) {
                    .stats-grid {
                        grid-template-columns: repeat(2, 1fr);
                        gap: 30px;
                        margin-bottom: 60px;
                    }
                    
                    .stat-number {
                        font-size: clamp(2.5em, 5vw, 4em);
                    }
                }

                @media (max-width: 768px) {
                    .vision-content {
                        grid-template-columns: 1fr;
                        gap: 30px;
                    }
                    
                    .vision-title {
                        text-align: center;
                    }
                    
                    .stats-grid {
                        margin-bottom: 50px;
                    }
                }

                @media (max-width: 575px) {
                    .stats-grid {
                        grid-template-columns: 1fr;
                        gap: 30px;
                    }
                    
                    .stat-number {
                        font-size: clamp(2.5em, 8vw, 3.5em);
                    }
                    
                    .stats-section {
                        padding: 40px 5vw;
                    }
                }


                .makers-section {
                    padding: 100px 0;
                    overflow: hidden;
                }

                .makers-title-wrapper {
                    text-align: center;
                    padding: 0 10vw 60px;
                }

                .makers-subtitle {
                    font-family: var(--font-sans);
                    font-size: 0.9em;
                    color: var(--color-red);
                    font-weight: 500;
                    letter-spacing: 3px;
                    text-transform: uppercase;
                    margin: 0 0 5px 0;
                }

                .makers-title {
                    font-family: var(--font-serif);
                    font-size: clamp(2.5em, 4vw, 3.5em);
                    color: var(--color-dark);
                    margin-bottom: 20px;
                }

                .makers-intro-text {
                    max-width: 700px;
                    margin: 0 auto;
                    font-size: 1.15em;
                    line-height: 1.6;
                    color: #555;
                    font-family: var(--font-serif);
                }

                .makers-gallery {
                    display: grid;
                    grid-template-columns: repeat(4, 1fr); 
                    gap: 30px;
                    padding: 0 5vw;
                    overflow-x: hidden; 
                    scroll-snap-type: none;
                    -ms-overflow-style: none;
                }

                @media screen and (max-width: 768px) {
                    .makers-gallery {
                        grid-template-columns: 1fr;
                        gap: 40px;
                    }

                    .maker-card {
                        max-width: 100%;
                        margin: 0 auto;
                    }
                    
                    .maker-image {
                        width: 100%;
                        height: auto;
                        object-fit: cover;
                        aspect-ratio: 16/9;
                        border-radius: 12px;
                    }
                }
                    
                .makers-gallery::-webkit-scrollbar {
                    display: none;
                }

                .maker-card {
                    flex-shrink: 0;
                    width: auto;
                    height: clamp(350px, 40vw, 550px);
                    position: relative;
                    overflow: hidden;
                    cursor: pointer;
                    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
                    transform: scale(0.95);
                    opacity: 0;
                    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
                    scroll-snap-align: none; 
                }

                .maker-card:hover .maker-image {
                    transform: scale(1.08);
                }

                .maker-card:hover {
                    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
                }

                .maker-image {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.6s ease-in-out;
                }

                .image-caption {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    padding: 20px 15px;
                    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
                    color: var(--color-white);
                    font-family: var(--font-sans);
                    font-weight: 700;
                    text-align: left;
                    font-size: 1em;
                    letter-spacing: 1px;
                    text-transform: uppercase;
                    transition: background 0.3s;
                }

                .maker-card:hover .image-caption {
                    background: linear-gradient(to top, var(--color-red), rgba(208, 0, 0, 0.4), rgba(0, 0, 0, 0));
                }


                .about-testimonial {
                    background-color: var(--color-white);
                    padding-top: 60px;
                    padding-bottom: 120px;
                    text-align: center;
                }

                .testimonial-text {
                    max-width: 800px;
                    margin: 0 auto;
                    font-size: 1.5em;
                    line-height: 1.7;
                    font-style: italic;
                    color: var(--color-dark);
                    font-family: var(--font-serif);
                }

                .testimonial-author {
                    margin-top: 30px;
                    font-weight: 700;
                    font-size: 1em;
                    color: var(--color-red);
                    text-transform: uppercase;
                    display: block;
                }


                .footer-section {
                    background-color: var(--color-dark);
                    color: var(--color-light-grey);
                    padding: 80px 5vw 40px;
                    font-size: 0.9em;
                }

                .footer-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                    gap: 40px;
                    padding-bottom: 40px;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                }

                .footer-column h4 {
                    font-family: var(--font-serif);
                    font-size: 1.2em;
                    margin-top: 0;
                    color: var(--color-white);
                    text-transform: uppercase;
                }

                .footer-column ul {
                    list-style: none;
                    padding: 0;
                }

                .footer-column ul li {
                    margin-bottom: 10px;
                }

                .footer-column a {
                    transition: color 0.3s;
                    color: var(--color-light-grey);
                }

                .footer-column a:hover {
                    color: var(--color-red);
                }

                .newsletter-form input[type="email"] {
                    width: 100%;
                    padding: 10px;
                    margin-top: 10px;
                    border: none;
                    background-color: rgba(255, 255, 255, 0.1);
                    color: var(--color-white);
                    font-family: var(--font-sans);
                }

                .newsletter-form button {
                    width: 100%;
                    padding: 10px;
                    margin-top: 10px;
                    background-color: var(--color-red);
                    color: var(--color-white);
                    border: none;
                    cursor: pointer;
                    text-transform: uppercase;
                    font-weight: 600;
                    transition: background-color 0.3s;
                }

                .newsletter-form button:hover {
                    background-color: #a00000;
                }

                .footer-bottom {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding-top: 20px;
                    font-size: 0.8em;
                    color: rgba(255, 255, 255, 0.5);
                }

                @media (min-width: 768px) and (max-width: 991px) {
                    .footer-grid {
                        display: grid;
                        grid-template-columns: repeat(3, 1fr);
                        grid-template-areas:
                            "col1 col2 col3"
                            "col4 col4 col4";
                        gap: 50px;
                    }

                    .footer-column:nth-child(1) {
                        grid-area: col1;
                    }

                    .footer-column:nth-child(2) {
                        grid-area: col2;
                    }

                    .footer-column:nth-child(3) {
                        grid-area: col3;
                    }

                    .footer-column:nth-child(4) {
                        grid-area: col4;
                    }

                    .footer-section {
                        padding: 60px 5vw 30px;
                    }

                    .footer-bottom {
                        flex-direction: row;
                        flex-wrap: wrap;
                        gap: 10px;
                        text-align: center;
                    }

                    .newsletter-form {
                        max-width: 300px; 
                    }

                    .newsletter-form input[type="email"],
                    .newsletter-form button {
                        width: 100%; 
                    }

                    
                }


                @media (min-width: 576px) and (max-width: 767.98px) {
                    .footer-grid {
                        display: grid;
                        grid-template-columns: repeat(2, 1fr);
                        grid-template-areas:
                            "col1 col2"
                            "col3 col4";
                        column-gap: clamp(20px, 15%, 150px); 
                        row-gap: 40px;
                    }

                    .footer-column:nth-child(1) { grid-area: col1; } 
                    .footer-column:nth-child(2) { grid-area: col2; } 
                    .footer-column:nth-child(3) { grid-area: col3; } 
                    .footer-column:nth-child(4) { grid-area: col4; } 

                    .footer-section { padding: 60px 5vw 30px; }

                    
                    .newsletter-form {
                        display: flex;
                        flex-direction: column; 
                        width: 100%; 
                        margin: 0;
                    }

                    .newsletter-form input[type="email"] {
                        width: 100%;
                        padding: 10px;
                        box-sizing: border-box;
                    }

                    .newsletter-form button {
                        width: 95%; 
                        padding: 10px;
                        align-self: flex-start; 
                    }

                    .footer-column h4 { font-size: 1.1em; }

                    .footer-bottom {
                        flex-direction: column;
                        gap: 10px;
                        text-align: center;
                    }
                }




                @keyframes fadeInUp {
                    from {
                        opacity: 0;
                        transform: translate3d(0, 40px, 0);
                    }
                    to {
                        opacity: 1;
                        transform: translate3d(0, 0, 0);
                    }
                }

                @keyframes fadeIn {
                    to {
                        opacity: 1;
                    }
                }

                @keyframes scroll-left {
                    from {
                        transform: translateX(0%);
                    }
                    to {
                        transform: translateX(-50%);
                    }
                }



               


           @keyframes fadeInTop {
                    from {
                        opacity: 0;
                        transform: translateY(-20px);
                    }

                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }

                .filter-wrapper {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 10px 8px;
                padding: 8px 5vw 15px; /* réduit top et bottom */
                border-bottom: 1px solid #eee;
            }
                .filter-button {
                    padding: 8px 18px;
                    background-color: transparent;
                    border: 1px solid #ddd;
                    color: var(--color-dark);
                    text-transform: uppercase;
                    font-size: 0.85em;
                    font-weight: 500;
                    cursor: pointer;
                    border-radius: 4px;
                    transition: all 0.3s ease;
                }

                .filter-button:hover,
                .filter-button.active {
                    background-color: var(--color-red);
                    border-color: var(--color-red);
                    color: var(--color-white);
                    transform: translateY(-2px);
                }

                @media (max-width: 768px) {
                    .catalogue-header {
                        padding: 15px 5vw 8px;
                    }
                    
                    .filter-wrapper {
                        padding: 12px 5vw 20px;
                    }
                }
                        

                .product-catalogue-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 60px 30px;
                    padding: 80px 5vw;
                }

                .product-card {
                    text-align: center;
                    opacity: 0;
                    transform: translateY(20px);
                    animation: fadeInUp 0.6s ease-out forwards;
                    cursor: pointer;
                    position: relative;
                }

                @keyframes fadeInUp {
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }

                .product-image-wrapper {
                    height: 350px;
                    max-width: 100%;
                    overflow: hidden;
                    margin: 0 auto 20px;
                    position: relative;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                }

                .product-image {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.5s ease;
                }





                .product-card:hover .product-image {
                    transform: scale(1.05);
                    opacity: 0.8;
                }

                .product-name {
                    font-size: 1.2em;
                    font-weight: 700;
                    margin: 10px 0 5px 0;
                    text-transform: uppercase;
                    color: var(--color-dark);
                    transition: color 0.3s;
                }

                .product-card:hover .product-name {
                    color: var(--color-red);
                }

                .product-price-block {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 10px;
                }

                .current-price {
                    font-weight: 700;
                    color: var(--color-dark);
                    font-size: 1em;
                }



                #product-modal {
                    display: none;
                    position: fixed;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: rgba(0,0,0,0.7);
                    z-index: 2000;
                    overflow-y: auto;
                    padding: 40px 20px;
                    box-sizing: border-box;
                }

                .modal-content {
                    display: flex;
                    flex-direction: row;
                    max-width: 1000px;
                    width: 100%;
                    margin: 50px auto;
                    background: #fff;
                    border-radius: 10px;
                    overflow: hidden;
                    position: relative;
                    flex-wrap: wrap;
                }

                .modal-image-wrapper {
                    flex: 1 1 400px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    padding: 20px;
                }

                .modal-product-image {
                    max-width: 100%;
                    height: auto;
                    border-radius: 8px;
                    object-fit: contain;
                }

                .gallery-thumbnails {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: center;
                    margin-top: 10px;
                    gap: 10px;
                }

                .gallery-thumbnails img.thumbnail {
                    width: 60px;
                    height: 60px;
                    object-fit: cover;
                    border-radius: 5px;
                    cursor: pointer;
                    border: 2px solid transparent;
                    transition: all 0.3s;
                }

                .gallery-thumbnails img.thumbnail.active {
                    border-color: var(--color-red);
                }

                .modal-details {
                    flex: 1 1 400px;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                }

                .modal-details h2 {
                    margin-top: 0;
                    margin-bottom: 10px;
                    font-size: 2rem;
                }

                .modal-price {
                    font-size: 1.5rem;
                    color: var(--color-red);
                    margin-bottom: 20px;
                }

                .modal-description {
                    font-size: 1rem;
                    margin-bottom: 20px;
                    line-height: 1.5;
                }

                .modal-characteristics h3 {
                    margin-bottom: 10px;
                }

                .notes-list {
                    list-style: none;
                    padding: 0;
                }

                .notes-list li {
                    margin-bottom: 5px;
                }

                .modal-close {
                    position: absolute;
                    top: 15px;
                    right: 15px;
                    font-size: 30px;
                    font-weight: bold;
                    cursor: pointer;
                    background: #fff;
                    border-radius: 50%;
                    width: 40px;
                    height: 40px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    z-index: 2100;
                    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
                }

                .modal-close:hover {
                    color: var(--color-red);
                }

                @media(max-width: 768px) {
                    .modal-content {
                        flex-direction: column;
                        margin: 20px auto;
                    }
                    .modal-image-wrapper, .modal-details {
                        flex: 1 1 100%;
                        padding: 15px;
                    }
                    .gallery-thumbnails img.thumbnail {
                        width: 50px;
                        height: 50px;
                    }
                }


                .notes-list {
                    list-style: none;
                    padding: 0;
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 15px;
                    font-size: 0.95em;
                }

                .notes-list li {
                    background-color: var(--color-light-grey);
                    padding: 8px;
                    border-left: 3px solid var(--color-red);
                    font-weight: 500;
                }

                .notes-list li strong {
                    color: var(--color-red);
                    display: block;
                    margin-bottom: 3px;
                    font-size: 0.8em;
                    text-transform: uppercase;
                }



                @media (max-width: 992px) {
                    .product-catalogue-grid {
                        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                        gap: 50px 25px;
                        padding: 60px 5vw;
                    }
                    
                    .product-image-wrapper {
                        height: 300px;
                    }
                    
                    .product-name {
                        font-size: 1.1em;
                    }
                    
                    .modal-content {
                        gap: 30px;
                        padding: 25px;
                        margin: 3vh auto;
                    }
                    
                    .modal-image-wrapper {
                        flex-basis: 45%;
                        max-width: 400px;
                    }
                    
                    .modal-product-image {
                        max-height: 380px;
                        padding: 15px;
                    }
                    
                    .modal-details h2 {
                        font-size: clamp(1.6em, 3vw, 2.2em);
                    }
                    
                    .modal-description {
                        font-size: 1em;
                        margin-bottom: 25px;
                    }
                    
                    .modal-price {
                        font-size: 1.6em;
                        margin-bottom: 25px;
                    }
                    
                    .notes-list {
                        grid-template-columns: repeat(2, 1fr);
                        gap: 12px;
                    }
                }



                @media (max-width: 767px) {
                    .product-catalogue-grid {
                        grid-template-columns: repeat(2, 1fr);
                        gap: 40px 20px;
                        padding: 50px 5vw;
                    }
                    
                    .product-image-wrapper {
                        height: 250px;
                    }
                    
                    .product-name {
                        font-size: 1em;
                    }
                    
                    .current-price {
                        font-size: 0.95em;
                    }
                    
                    .product-image-wrapper::after {
                        font-size: 0.75em;
                        letter-spacing: 1px;
                    }
                    
                    .modal-content {
                        flex-direction: column;
                        gap: 25px;
                        padding: 20px;
                        width: 95%;
                        margin: 2vh auto;
                    }
                    
                    .modal-close {
                        top: 10px;
                        right: 15px;
                        font-size: 30px;
                    }
                    
                    .modal-image-wrapper {
                        flex-basis: auto;
                        max-width: 100%;
                        width: 100%;
                    }
                    
                    .modal-product-image {
                        max-height: 350px;
                        padding: 15px;
                    }
                    
                    .modal-details {
                        flex-basis: auto;
                        padding-top: 0;
                    }
                    
                    .modal-details h2 {
                        font-size: clamp(1.4em, 4vw, 1.8em);
                        margin-bottom: 8px;
                    }
                    
                    .modal-description {
                        font-size: 0.95em;
                        line-height: 1.5;
                        margin-bottom: 20px;
                    }
                    
                    .modal-price {
                        font-size: 1.4em;
                        margin-bottom: 20px;
                    }
                    
                    .modal-characteristics h3 {
                        font-size: 1.1em;
                    }
                    
                    .notes-list {
                        grid-template-columns: 1fr;
                        gap: 10px;
                        font-size: 0.9em;
                    }
                    
                    .gallery-thumbnails {
                        gap: 8px;
                        flex-wrap: wrap;
                    }
                    
                    .thumbnail {
                        width: 55px;
                        height: 55px;
                    }
                }



                @media (max-width: 575px) {
                    .product-catalogue-grid {
                        grid-template-columns: 1fr;
                        gap: 40px;
                        padding: 40px 6vw;
                    }
                    
                    .product-image-wrapper {
                        height: 300px;
                        max-width: 400px;
                    }
                    
                    .product-name {
                        font-size: 1.1em;
                    }
                    
                    .current-price {
                        font-size: 1em;
                    }
                    
                    .modal-content {
                        padding: 15px;
                        width: 98%;
                        margin: 1vh auto;
                    }
                    
                    .modal-close {
                        top: 8px;
                        right: 12px;
                        font-size: 28px;
                    }
                    
                    .modal-product-image {
                        max-height: 300px;
                        padding: 10px;
                    }
                    
                    .modal-details h2 {
                        font-size: 1.3em;
                        margin-bottom: 8px;
                    }
                    
                    .modal-description {
                        font-size: 0.9em;
                        margin-bottom: 18px;
                    }
                    
                    .modal-price {
                        font-size: 1.3em;
                        margin-bottom: 18px;
                    }
                    
                    .modal-characteristics h3 {
                        font-size: 1em;
                        margin-bottom: 12px;
                    }
                    
                    .notes-list {
                        font-size: 0.85em;
                    }
                    
                    .notes-list li {
                        padding: 10px;
                    }
                    
                    .gallery-thumbnails {
                        gap: 6px;
                    }
                    
                    .thumbnail {
                        width: 50px;
                        height: 50px;
                    }
                }



                @media (max-width: 399px) {
                    .product-catalogue-grid {
                        padding: 35px 5vw;
                        gap: 35px;
                    }
                    
                    .product-image-wrapper {
                        height: 280px;
                    }
                    
                    .product-name {
                        font-size: 1em;
                    }
                    
                    .modal-content {
                        padding: 12px;
                    }
                    
                    .modal-product-image {
                        max-height: 250px;
                    }
                    
                    .modal-details h2 {
                        font-size: 1.2em;
                    }
                    
                    .modal-description {
                        font-size: 0.85em;
                    }
                    
                    .modal-price {
                        font-size: 1.2em;
                    }
                    
                    .thumbnail {
                        width: 45px;
                        height: 45px;
                    }
                }  .blog-hero {
                    background-color: var(--color-light-grey);
                    min-height: 25vh; 
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    padding: 50px 5vw 30px; 
                }

                .blog-hero-subtitle {
                    font-family: var(--font-sans);
                    font-size: 1em; 
                    color: var(--color-red);
                    font-weight: 500;
                    margin-bottom: 8px;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                }

                .blog-hero-title {
                    font-family: var(--font-serif);
                    font-size: clamp(1.8em, 3.5vw, 2.8em); 
                    color: var(--color-dark);
                    margin: 0;
                    max-width: 800px;
                    line-height: 1.3;
                }


                .blog-list-section {
                    padding: 50px 5vw; 
                    }


            .articles-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr); /* 4 colonnes égales */
                gap: 30px; /* espace entre les articles */
                width: 100%; /* prendre toute la largeur */
                max-width: 100vw; /* éviter que ça déborde de l'écran */
                margin: 0 auto; /* centrer la grille si besoin */
                padding: 20px; /* un petit padding autour */
                box-sizing: border-box;
            }

            /* Pour les écrans plus petits */
            @media (max-width: 1200px) {
                .articles-grid {
                    grid-template-columns: repeat(3, 1fr);
                }
            }

            @media (max-width: 900px) {
                .articles-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            @media (max-width: 600px) {
                .articles-grid {
                    grid-template-columns: 1fr;
                }
            }


                        
                        .article-card {
                            border: 1px solid #eee;
                            background-color: var(--color-white);
                            overflow: hidden;
                            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                            transition: box-shadow 0.3s, transform 0.3s;
                        }

                        .article-card:hover {
                            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
                            transform: translateY(-5px);
                        }
                        
                        .article-image-wrapper {
                            height: 250px;
                            overflow: hidden;
                        }

                        .article-image {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            transition: transform 0.5s;
                        }
                        
                        .article-card:hover .article-image {
                            transform: scale(1.05);
                        }

                        .article-content {
                            padding: 25px;
                        }

                        .article-meta {
                            font-size: 0.8em;
                            color: #888;
                            margin-bottom: 10px;
                            text-transform: uppercase;
                            font-weight: 500;
                        }

                        .article-meta span:first-child {
                            color: var(--color-red);
                            font-weight: 700;
                            margin-right: 10px;
                        }

                        .article-title {
                            font-family: var(--font-serif);
                            font-size: 1.5em;
                            line-height: 1.3;
                            color: var(--color-dark);
                            margin: 0 0 15px 0;
                        }

                        .article-excerpt {
                            color: #555;
                            line-height: 1.5;
                            margin-bottom: 20px;
                        }

                        .read-more-link {
                            font-weight: 600;
                            color: var(--color-red);
                            text-transform: uppercase;
                            font-size: 0.9em;
                        }

                        .read-more-link:after {
                            content: ' →';
                            display: inline-block;
                            transition: transform 0.3s;
                        }
                        
                        .read-more-link:hover:after {
                            transform: translateX(5px);
                        }
                        
                        .pagination-section {
                            text-align: center;
                            padding-top: 50px;
                        }

                        .pagination-section a {
                            display: inline-block;
                            padding: 10px 15px;
                            margin: 0 5px;
                            border: 1px solid #ddd;
                            color: var(--color-dark);
                            transition: background-color 0.3s, color 0.3s;
                        }

                        .pagination-section a:hover,
                        .pagination-section a.active {
                            background-color: var(--color-red);
                            color: var(--color-white);
                            border-color: var(--color-red);
                        }


                    
                .contact-hero {
                    min-height: 40vh;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    padding: 80px 5vw 40px;
                }

                .contact-hero-subtitle {
                    font-family: var(--font-sans);
                    font-size: 1.2em;
                    color: var(--color-red);
                    font-weight: 500;
                    margin-bottom: 10px;
                }

                .contact-hero-title {
                    font-family: var(--font-serif);
                    font-size: clamp(3em, 6vw, 4.5em);
                    color: var(--color-dark);
                    margin: 0;
                    max-width: 800px;
                    line-height: 1.2;
                }

                .contact-main {
                    display: grid;
                    grid-template-columns: 1.5fr 1fr;
                    gap: 80px;
                    padding: 80px 5vw;
                    background-color: var(--color-light-grey);
                }

                .contact-form-wrapper h2 {
                    font-family: var(--font-serif);
                    font-size: clamp(2em, 3vw, 3em);
                    color: var(--color-dark);
                    margin-top: 0;
                    margin-bottom: 30px;
                }

                .contact-form-group {
                    margin-bottom: 20px;
                }

                .contact-form-group label {
                    display: block;
                    margin-bottom: 8px;
                    font-weight: 600;
                    color: var(--color-dark);
                }

                .contact-form-group input,
                .contact-form-group textarea {
                    width: 100%;
                    padding: 15px;
                    border: 1px solid #ddd;
                    background-color: var(--color-white);
                    font-family: var(--font-sans);
                    box-sizing: border-box;
                    transition: border-color 0.3s;
                    font-size: 1em;
                }

                .contact-form-group input:focus,
                .contact-form-group textarea:focus {
                    border-color: var(--color-red);
                    outline: none;
                }

                .contact-form-group textarea {
                    resize: vertical;
                    min-height: 150px;
                }

                .submit-button {
                    padding: 15px 30px;
                    background-color: var(--color-red);
                    color: var(--color-white);
                    border: none;
                    text-transform: uppercase;
                    font-weight: 700;
                    cursor: pointer;
                    transition: background-color 0.3s;
                    width: 100%;
                    font-size: 1em;
                }

                .submit-button:hover {
                    background-color: #a00000;
                }

                .contact-info-wrapper h2 {
                    font-family: var(--font-serif);
                    font-size: clamp(2em, 3vw, 3em);
                    color: var(--color-dark);
                    margin-top: 0;
                    margin-bottom: 30px;
                }

                

                .info-item {
                    margin-bottom: 30px;
                }

                .info-item h3 {
                    font-size: 1.1em;
                    color: var(--color-red);
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    font-weight: 600;
                    margin: 0 0 10px 0;
                }

                .info-item p {
                    margin: 5px 0;
                    line-height: 1.6;
                    color: #555;
                }

                .info-item a {
                    color: var(--color-dark);
                    text-decoration: none;
                    transition: color 0.3s;
                }

                .info-item a:hover {
                    color: var(--color-red);
                }

                .social-links {
                    margin-top: 40px;
                }

                .social-links h3 {
                    font-size: 1.1em;
                    color: var(--color-red);
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    font-weight: 600;
                    margin: 0 0 15px 0;
                }

                .social-links a {
                    display: inline-block;
                    margin-right: 15px;
                    font-size: 1.1em;
                    color: var(--color-dark);
                    transition: color 0.3s;
                    text-decoration: none;
                }

                .social-links a:hover {
                    color: var(--color-red);
                }

                .contact-map-section {
                    padding: 0 0 80px 0;
                }

                .map-wrapper {
                    width: 100%;
                    height: 450px;
                    background-color: #ccc;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    color: #555;
                    font-size: 1.5em;
                }



                @media (max-width: 992px) {
                    .contact-hero {
                        min-height: 35vh;
                        padding: 60px 5vw 30px;
                    }
                    
                    .contact-hero-subtitle {
                        font-size: 1.1em;
                    }
                    
                    .contact-hero-title {
                        font-size: clamp(2.5em, 5vw, 3.5em);
                    }
                    
                    .contact-main {
                        grid-template-columns: 1fr 1fr; 
                        gap: 50px;
                        padding: 60px 5vw;
                    }
                    
                    .contact-form-wrapper h2,
                    .contact-info-wrapper h2 {
                        font-size: clamp(1.8em, 3vw, 2.5em);
                        margin-bottom: 25px;
                    }
                    
                    .contact-form-group {
                        margin-bottom: 18px;
                    }
                    
                    .contact-form-group input,
                    .contact-form-group textarea {
                        padding: 12px;
                    }
                    
                    .submit-button {
                        padding: 12px 25px;
                    }
                    
                    .info-item {
                        margin-bottom: 25px;
                    }
                    
                    .info-item h3 {
                        font-size: 1em;
                    }
                    
                    .info-item p {
                        font-size: 0.95em;
                    }
                    
                    .social-links {
                        margin-top: 30px;
                    }
                    
                    .social-links h3 {
                        font-size: 1em;
                    }
                    
                    .social-links a {
                        font-size: 1em;
                    }
                    
                    .map-wrapper {
                        height: 400px;
                        font-size: 1.3em;
                    }
                    
                    .contact-map-section {
                        padding: 0 0 60px 0;
                    }
                }



                @media (max-width: 767px) {
                    .contact-hero {
                        min-height: 30vh;
                        padding: 50px 5vw 25px;
                    }
                    
                    .contact-hero-subtitle {
                        font-size: 1em;
                        margin-bottom: 8px;
                    }
                    
                    .contact-hero-title {
                        font-size: clamp(2em, 5vw, 2.8em);
                        line-height: 1.3;
                    }
                    
                    
                    .contact-main {
                        grid-template-columns: 1fr;
                        gap: 50px;
                        padding: 50px 5vw;
                    }
                    
                    .contact-form-wrapper h2,
                    .contact-info-wrapper h2 {
                        font-size: clamp(1.6em, 4vw, 2em);
                        margin-bottom: 20px;
                        text-align: center;
                    }
                    
                    .contact-form-group {
                        margin-bottom: 16px;
                    }
                    
                    .contact-form-group label {
                        font-size: 0.95em;
                    }
                    
                    .contact-form-group input,
                    .contact-form-group textarea {
                        padding: 12px;
                        font-size: 0.95em;
                    }
                    
                    .contact-form-group textarea {
                        min-height: 130px;
                    }
                    
                    .submit-button {
                        padding: 14px 25px;
                        font-size: 0.95em;
                    }
                    
                    .info-item {
                        margin-bottom: 25px;
                        text-align: center;
                    }
                    
                    .info-item h3 {
                        font-size: 1em;
                    }
                    
                    .info-item p {
                        font-size: 0.95em;
                    }
                    
                    .social-links {
                        margin-top: 30px;
                        text-align: center;
                    }
                    
                    .social-links h3 {
                        font-size: 1em;
                        margin-bottom: 12px;
                    }
                    
                    .social-links a {
                        font-size: 1em;
                        margin: 0 10px;
                    }
                    
                    .map-wrapper {
                        height: 350px;
                        font-size: 1.2em;
                    }
                    
                    .contact-map-section {
                        padding: 0 0 50px 0;
                    }
                }


                @media (max-width: 575px) {
                    .contact-hero {
                        min-height: 25vh;
                        padding: 40px 6vw 20px;
                    }
                    
                    .contact-hero-subtitle {
                        font-size: 0.9em;
                        margin-bottom: 8px;
                    }
                    
                    .contact-hero-title {
                        font-size: clamp(1.8em, 6vw, 2.3em);
                        line-height: 1.3;
                    }
                    
                    .contact-main {
                        gap: 40px;
                        padding: 40px 6vw;
                    }
                    
                    .contact-form-wrapper h2,
                    .contact-info-wrapper h2 {
                        font-size: clamp(1.4em, 5vw, 1.8em);
                        margin-bottom: 18px;
                    }
                    
                    .contact-form-group {
                        margin-bottom: 15px;
                    }
                    
                    .contact-form-group label {
                        font-size: 0.9em;
                        margin-bottom: 6px;
                    }
                    
                    .contact-form-group input,
                    .contact-form-group textarea {
                        padding: 10px;
                        font-size: 0.9em;
                    }
                    
                    .contact-form-group textarea {
                        min-height: 120px;
                    
                    }
                    
                    .submit-button {
                        padding: 13px 20px;
                        font-size: 0.9em;
                    }
                    
                    .info-item {
                        margin-bottom: 22px;
                    }
                    
                    .info-item h3 {
                        font-size: 0.95em;
                        margin-bottom: 8px;
                    }
                    
                    .info-item p {
                        font-size: 0.9em;
                        line-height: 1.5;
                    }
                    
                    .social-links {
                        margin-top: 25px;
                    }
                    
                    .social-links h3 {
                        font-size: 0.95em;
                        margin-bottom: 10px;
                    }
                    
                    .social-links a {
                        font-size: 0.95em;
                        margin: 0 8px;
                        display: inline-block;
                        margin-bottom: 8px;
                    }
                    
                    .map-wrapper {
                        height: 300px;
                        font-size: 1em;
                    }
                    
                    .contact-map-section {
                        padding: 0 0 40px 0;
                    }
                }



                @media (max-width: 399px) {
                    .contact-hero {
                        padding: 35px 5vw 18px;
                    }
                    
                    .contact-hero-subtitle {
                        font-size: 0.85em;
                    }
                    
                    .contact-hero-title {
                        font-size: 1.6em;
                    }
                    
                    .contact-main {
                        padding: 35px 5vw;
                        gap: 35px;
                    }
                    
                    .contact-form-wrapper h2,
                    .contact-info-wrapper h2 {
                        font-size: 1.3em;
                    }
                    
                    .contact-form-group input,
                    .contact-form-group textarea {
                        padding: 10px;
                        font-size: 0.85em;
                    }
                    
                    .contact-form-group textarea {
                        min-height: 110px;
                    }
                    
                    .submit-button {
                        padding: 12px 18px;
                        font-size: 0.85em;
                    }
                    
                    .info-item p {
                        font-size: 0.85em;
                    }
                    
                    .map-wrapper {
                        height: 280px;
                        font-size: 0.9em;
                    }
                }


                .modal {
                    display: none;
                    position: fixed;
                    z-index: 9999;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    overflow-y: auto;
                    background-color: rgba(0,0,0,0.6);
                }

                .modal-content {
                    background-color: #fff;
                    margin: 5% auto;
                    padding: 20px;
                    border-radius: 8px;
                    width: 90%;
                    max-width: 700px;
                    position: relative;
                }

                .close {
                    color: #333;
                    float: right;
                    font-size: 28px;
                    font-weight: bold;
                    cursor: pointer;
                }

                .close:hover {
                    color: #000;
                }

                .modal-content img {
                    width: 100%; /* s'adapte à la largeur de la modale */
                    height: auto; /* garde les proportions */
                    border-radius: 5px;
                    margin-bottom: 15px;
                }




                /* Collections Thématiques */
                        .collections-section {
                            padding: 80px 20px;
                            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
                        }

                        .collections-title {
                            text-align: center;
                            font-size: 2.5rem;
                            font-weight: bold;
                            margin-bottom: 20px;
                            color: #2c3e50;
                        }

                        .collections-subtitle {
                            text-align: center;
                            font-size: 1.1rem;
                            color: #6c757d;
                            margin-bottom: 60px;
                            max-width: 600px;
                            margin-left: auto;
                            margin-right: auto;
                        }

                        .collections-grid {
                            display: grid;
                            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                            gap: 30px;
                            max-width: 1200px;
                            margin: 0 auto;
                        }

                        .collection-card {
                            position: relative;
                            height: 400px;
                            border-radius: 20px;
                            overflow: hidden;
                            cursor: pointer;
                            transition: transform 0.4s ease, box-shadow 0.4s ease;
                        }

                        .collection-card:hover {
                            transform: translateY(-10px);
                            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
                        }

                        .collection-image {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            transition: transform 0.4s ease;
                        }

                        .collection-card:hover .collection-image {
                            transform: scale(1.1);
                        }

                        .collection-overlay {
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            right: 0;
                            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
                            padding: 30px;
                            transform: translateY(10px);
                            transition: transform 0.4s ease;
                        }

                        .collection-card:hover .collection-overlay {
                            transform: translateY(0);
                        }

                        .collection-name {
                            color: white;
                            font-size: 1.8rem;
                            font-weight: bold;
                            margin-bottom: 10px;
                        }

                        .collection-description {
                            color: rgba(255, 255, 255, 0.9);
                            font-size: 0.95rem;
                            margin-bottom: 15px;
                        }

                        .collection-count {
                            color: rgba(255, 255, 255, 0.7);
                            font-size: 0.9rem;
                        }

                        /* Quiz Olfactif */
                        .quiz-section {
                            padding: 80px 20px;
                            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                            color: white;
                        }

                        .quiz-container {
                            max-width: 800px;
                            margin: 0 auto;
                            text-align: center;
                        }

                        .quiz-title {
                            font-size: 2.5rem;
                            font-weight: bold;
                            margin-bottom: 20px;
                        }

                        .quiz-subtitle {
                            font-size: 1.2rem;
                            margin-bottom: 40px;
                            opacity: 0.9;
                        }

                        .quiz-content {
                            background: white;
                            border-radius: 20px;
                            padding: 40px;
                            color: #2c3e50;
                            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                        }

                        .quiz-question {
                            font-size: 1.5rem;
                            font-weight: bold;
                            margin-bottom: 30px;
                        }

                        .quiz-options {
                            display: grid;
                            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                            gap: 20px;
                            margin-bottom: 30px;
                        }

                        .quiz-option {
                            padding: 30px 20px;
                            border: 2px solid #e9ecef;
                            border-radius: 15px;
                            cursor: pointer;
                            transition: all 0.3s ease;
                            background: white;
                        }

                        .quiz-option:hover {
                            border-color: #667eea;
                            transform: translateY(-5px);
                            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
                        }

                        .quiz-option.selected {
                            border-color: #667eea;
                            background: #f0f3ff;
                        }

                        .quiz-icon {
                            font-size: 2.5rem;
                            margin-bottom: 10px;
                        }

                        .quiz-option-text {
                            font-weight: 600;
                            color: #2c3e50;
                        }

                        .quiz-progress {
                            display: flex;
                            justify-content: center;
                            gap: 10px;
                            margin-top: 30px;
                        }

                        .progress-dot {
                            width: 12px;
                            height: 12px;
                            border-radius: 50%;
                            background: #e9ecef;
                            transition: background 0.3s ease;
                        }

                        .progress-dot.active {
                            background: #667eea;
                        }

                        .quiz-buttons {
                            display: flex;
                            gap: 15px;
                            justify-content: center;
                            margin-top: 30px;
                        }

                        .quiz-button {
                            padding: 15px 40px;
                            border: none;
                            border-radius: 10px;
                            font-weight: bold;
                            cursor: pointer;
                            transition: all 0.3s ease;
                        }

                        .quiz-button-primary {
                            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                            color: white;
                        }

                        .quiz-button-primary:hover {
                            transform: translateY(-2px);
                            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
                        }

                        .quiz-button-secondary {
                            background: #e9ecef;
                            color: #2c3e50;
                        }

                        .quiz-results {
                            display: none;
                        }

                        .quiz-results.active {
                            display: block;
                        }

                        .recommended-products {
                            display: grid;
                            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                            gap: 20px;
                            margin-top: 30px;
                        }

                    

                        
                        @media (max-width: 768px) {
                            .collections-title, .quiz-title, .top10-title {
                                font-size: 2rem;
                            }

                            .collection-card {
                                height: 300px;
                            }

                            .quiz-content {
                                padding: 25px;
                            }

                            .quiz-options {
                                grid-template-columns: 1fr;
                            }
                        }




                        :root{--bg:#f6f7fb;--card:#ffffff;--accent:#d1a56a;--muted:#6b7280;--glass:rgba(0,0,0,0.04)}
                *{box-sizing:border-box}
                body{font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; margin:0; background:var(--bg); color:#111}
                .container{max-width:1100px;margin:32px auto;padding:20px}
                h2{font-size:1.4rem;margin:0 0 14px}
                .grid{display:grid;grid-template-columns:1fr 420px;gap:20px}


                .product-list{background:var(--card);border-radius:12px;padding:16px;box-shadow:0 6px 18px rgba(15,23,42,0.06)}
                .product{display:flex;gap:12px;padding:10px;border-radius:10px;align-items:center;border:1px solid transparent}
                .product + .product{margin-top:10px}
                .product:hover{background:var(--glass)}
                .thumb{width:74px;height:74px;border-radius:8px;flex:0 0 74px;overflow:hidden;display:flex;align-items:center;justify-content:center;background:#fafafa}
                .thumb img{width:100%;height:100%;object-fit:cover}
                .meta{flex:1}
                .meta h3{margin:0;font-size:1rem}
                .meta p{margin:6px 0 0;color:var(--muted);font-size:0.9rem}
                .controls{display:flex;flex-direction:column;align-items:flex-end;gap:8px}
                .check{display:flex;align-items:center;gap:8px}
                input[type=checkbox]{width:18px;height:18px}
                .price{font-weight:700;color:var(--accent)}



                .compare-card{position:sticky;top:20px;background:linear-gradient(180deg,#fff,#fff);padding:16px;border-radius:12px;box-shadow:0 6px 18px rgba(15,23,42,0.06)}
                .compare-table{width:100%;border-collapse:collapse;margin-top:10px}
                .compare-table th,.compare-table td{padding:8px;border-bottom:1px solid #eef2f6;text-align:left;font-size:0.95rem}
                .compare-table th{font-size:0.85rem;color:var(--muted)}
                .mini{font-size:0.85rem;color:var(--muted)}



                .stars{display:inline-flex;gap:2px}
                .star{width:14px;height:14px;display:inline-block}



                .prefs{display:flex;gap:8px;margin-top:12px}
                .pref{flex:1;background:#fafafa;padding:8px;border-radius:8px;text-align:center}
                .btn{display:inline-block;padding:8px 12px;border-radius:8px;border:0;background:var(--accent);color:#fff;font-weight:600;cursor:pointer}
                .btn.secondary{background:#fff;border:1px solid #e6e9ef;color:#111}



                .empty{padding:16px;border-radius:8px;background:#fff;text-align:center;color:var(--muted)}



                @media (max-width:980px){.grid{grid-template-columns:1fr;}.compare-card{position:relative;top:0;margin-top:12px}}






                .team-section {
                padding: 100px 10%;
                background-color: #f8f8f8;
                text-align: center;
                }

                .section-title {
                font-size: 1.5rem;
                margin-bottom: 10px;
                color: var(--color-secondary);
                letter-spacing: 1px;
                text-transform: uppercase;
                }

                .section-subtitle {
                color: #666;
                margin-bottom: 50px;
                font-size: 1.1rem;
                }

                .team-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 40px;
                }

                .team-member {
                background: #fff;
                padding: 20px;
                border-radius: 12px;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                }

                .team-member:hover {
                transform: translateY(-8px);
                box-shadow: 0 6px 15px rgba(0,0,0,0.15);
                }

                .team-photo {
                width: 100%;
                border-radius: 10px;
                margin-bottom: 15px;
                }

                .team-name {
                font-size: 1.1rem;
                font-weight: bold;
                color: var(--color-secondary);
                }

                .team-role {
                color: #777;
                font-size: 0.95rem;
                }

                .values-section {
                padding: 100px 10%;
                background-color: #fff;
                text-align: center;
                }

                .values-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 40px;
                margin-top: 50px;
                }

                .value-item {
                padding: 30px 20px;
                background: #f8f8f8;
                border-radius: 15px;
                transition: all 0.3s ease;
                }

                .value-item:hover {
                background: var(--color-primary);
                color: #fff;
                transform: translateY(-5px);
                }

                .value-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 15px;
                }

                .value-title {
                font-size: 1.2rem;
                font-weight: 600;
                margin-bottom: 10px;
                }

                .value-text {
                font-size: 0.95rem;
                line-height: 1.5;
                color: #555;
                }

                .gallery-section {
                padding: 100px 10%;
                background-color: #f8f8f8;
                text-align: center;
                }

                .gallery-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 15px;
                margin-top: 40px;
                }

                .gallery-img {
                width: 100%;
                border-radius: 12px;
                transition: transform 0.5s ease, filter 0.4s ease;
                object-fit: cover;
                }

                .gallery-img:hover {
                transform: scale(1.05);
                filter: brightness(0.9);
                }

                @media (max-width: 768px) {
                .team-section, .values-section, .gallery-section {
                    padding: 70px 5%;
                }

                .section-title {
                    font-size: 1.9rem;
                }
                }



                .about-hero {
                padding-bottom: 40px !important; 
                margin-bottom: 0 !important;
                }

                section {
                padding-top: 60px !important;
                padding-bottom: 60px !important;
                }

                .about-hero,
                .footer-section {
                padding-top: 80px !important;
                padding-bottom: 80px !important;
                }


                .vision-section,
                .makers-section {
                padding-top: 50px !important;
                padding-bottom: 50px !important;
                }


                .team-section,
                .values-section,
                .gallery-section {
                padding-top: 50px !important;
                padding-bottom: 50px !important;
                }

                .history-section {
                margin-top: 20px !important;
                padding-top: 40px !important;
                }

                section + section {
                margin-top: 40px;
                }

                @media (max-width: 768px) {
                section {
                    padding-top: 40px !important;
                    padding-bottom: 40px !important;
                }
                }



                .featured-products {
                    padding: 50px 20px;
                    text-align: center;
                    background-color: #fdf6f0;
                }

                .featured-products .section-title {
                    font-size: 2rem;
                    margin-bottom: 30px;
                    color: var(--color-primary);
                }

                .featured-grid {
                    display: flex;
                    gap: 20px;
                    justify-content: center;
                    flex-wrap: wrap;
                }

                .featured-card {
                    background: white;
                    border-radius: 12px;
                    padding: 15px;
                    width: 220px;
                    transition: transform 0.3s, box-shadow 0.3s;
                    cursor: pointer;
                }

                .featured-card:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
                }

                .featured-card img {
                    width: 100%;
                    border-radius: 10px;
                    margin-bottom: 10px;
                }

                .featured-card h3 {
                    font-size: 1.1rem;
                    margin-bottom: 5px;
                }

                .featured-card p {
                    font-weight: bold;
                    color: var(--color-secondary);
                }


                .price-filter-section {
                    padding: 40px 20px;
                    background-color: #fff8f2;
                    text-align: center;
                }

                .price-filter {
                    margin-top: 20px;
                    display: inline-block;
                    width: 300px;
                }

                #price-range {
                    width: 100%;
                }

                #price-value {
                    font-weight: bold;
                    color: var(--color-primary);
                }

                .contact-hero {
                    height: auto; 
                    padding: 50px 20px; 
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-align: center;
                }

                .contact-hero h1 {
                    font-size: clamp(2rem, 5vw, 3rem);
                    color: #893330;
                    font-family: 'Arial', sans-serif;
                    font-weight: 800;
                    margin: 0;
                }



                .contact-main {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 40px;
                    max-width: 1200px;
                    margin: 50px auto 100px;
                    padding: 0 20px;
                }

                .contact-form-wrapper {
                    display: flex;
                    flex-direction: column;
                    gap: 20px;
                }

                .section-title {
                    font-size: 1.8em;
                    color: #893330;
                    margin-bottom: 20px;
                }

                .contact-form-group {
                    margin-bottom: 15px;
                }

                .contact-form-group label {
                    display: block;
                    margin-bottom: 5px;
                    font-weight: 600;
                }

                .contact-form-group input,
                .contact-form-group textarea {
                    width: 100%;
                    padding: 12px 15px;
                    border: 1.5px solid #ddd;
                    border-radius: 5px;
                    font-size: 1rem;
                }

                .contact-form-group textarea {
                    min-height: 120px;
                    resize: vertical;
                }

                .submit-button {
                    padding: 14px 20px;
                    background-color: #893330;
                    color: white;
                    border: none;
                    font-weight: 600;
                    cursor: pointer;
                    border-radius: 5px;
                    transition: 0.3s;
                }

                .submit-button:hover {
                    background-color: #a04444;
                }

                .contact-info-wrapper {
                    display: flex;
                    flex-direction: column;
                    gap: 20px;
                }

                .info-cards {
                    display: flex;
                    flex-direction: column;
                    gap: 15px;
                }

                .info-card {
                    padding: 20px;
                    border-left: 3px solid #893330;
                    border-radius: 8px;
                    transition: transform 0.3s;
                }

                .info-card:hover {
                    transform: translateX(5px);
                }

                .info-card h3 {
                    font-size: 1.2rem;
                    color: #893330;
                    margin-bottom: 10px;
                }

                .info-card p, .info-card a {
                    font-size: 0.95rem;
                    color: #555;
                    line-height: 1.5;
                }

                .info-card a {
                    text-decoration: none;
                    color: #893330;
                }

                .info-card a:hover {
                    text-decoration: underline;
                }

                .social-links-wrapper {
                    margin-top: 15px;
                    display: flex;
                    gap: 15px;
                    flex-wrap: wrap;
                }

                .social-link {
                    font-size: 1.5rem;
                    color: #555;
                    transition: transform 0.3s;
                }

                .social-link:hover {
                    transform: scale(1.2);
                }

                @media (max-width: 992px) {
                    .contact-main {
                        grid-template-columns: 1fr;
                    }
                    .contact-form-wrapper, .contact-info-wrapper {
                        width: 100%;
                    }
                    .section-title {
                        text-align: center;
                    }
                    .social-links-wrapper {
                        justify-content: center;
                    }
                }



                






