* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    background-color: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1880px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 0 1rem;
}

.logo img {
    height: 120px;
    width: auto;
    display: block;
}

header nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 120px;
}

header nav a {
    color: #1f2937;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

header nav a:hover {
    color: #0e7500;
    filter: drop-shadow(0 0 8px rgba(16, 141, 5, 0.3));
}

header nav a.active {
    color: #0e7500;
    filter: drop-shadow(0 0 8px rgba(25, 221, 68, 0.5));
}

.spacer {
    width: 4rem;
}

/* selecteur de langues */
.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background-color: transparent;
    border: 2px solid #d1d5db;
    color: #6b7280;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: #0e7500;
    color: #0e7500;
    background-color: rgba(37, 99, 235, 0.05);
}

.lang-btn.active {
    background-color: #0e7500;
    border-color: #0e7500;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(21, 160, 8, 0.397);
}

/* Hero Banner Styles */

.hero-banner {
    background-image: url(ressources/vache_marche.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 6rem 2rem 4rem 2rem;
}

.hero-banner h1 {
    font-size: 120px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(-30px);
    animation: heroTitleFadeIn 1s ease-out 0.3s forwards;
}

.hero-banner p {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(-20px);
    animation: heroSubtitleFadeIn 1s ease-out 0.6s forwards;
}

@keyframes heroTitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroSubtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    margin-top: 3rem;
    background: #0e7500;
    color: white;
    font-family: 'Montserrat', sans-serif;
    padding: 0.45em;
    padding-left: 1em;
    font-size: 17px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    box-shadow: inset 0 0 1.6em -0.6em rgba(14, 117, 0, 0.6);
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3em;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.cta-button span {
    display: inline-block;
}

.icon-button {
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em rgba(22, 163, 74, 0.5);
    right: 0.3em;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translate(-0.05em, -0.05em);
    box-shadow: 0.15em 0.15em rgba(10, 90, 0, 0.8), inset 0 0 1.6em -0.6em rgba(14, 117, 0, 0.6);
}

.cta-button:hover .icon-button {
    box-shadow: 0.1em 0.1em 0.6em 0.2em rgba(22, 163, 74, 0.7);
    background-color: rgba(255, 255, 255, 0.15);
}

.cta-button:active {
    transform: translate(0.05em, 0.05em);
    box-shadow: 0.05em 0.05em rgba(10, 90, 0, 0.8), inset 0 0 1.6em -0.6em rgba(14, 117, 0, 0.6);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(14, 117, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(14, 117, 0, 0.6), 0 0 15px rgba(34, 197, 94, 0.3);
    }
}

/* Animations au scroll */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* FAQ Section Styles */
section.faq-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

section.faq-section.dark {
    background-color: #111827;
}

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 1.5rem;
}

.container h1.section-title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 3rem;
    text-align: center;
}

.container h1.section-title.lg {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.container h1.section-title.dark {
    color: #ffffff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.grid.lg {
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .grid.md {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .grid.xl {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.faq-item {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.dark {
    background-color: #1f2937;
}

.icon-wrapper {
    display: inline-block;
    padding: 0.75rem;
    background-color: #0e7500;
    color: #ffffff;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.icon-wrapper svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.faq-content h2 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: #374151;
    margin: 1rem 0 0.5rem 0;
}

.faq-content h2.dark {
    color: #ffffff;
}

.faq-content p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: #6b7280;
}

.faq-content p.dark {
    color: #d1d5db;
}

/* Menu Burger Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background-color: #1f2937;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu mobile */
.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    color: #1f2937;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    transition: color 0.3s ease;
}

.mobile-nav-link:last-of-type {
    border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #0e7500;
}

.mobile-language-selector {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-banner {
        background-size: 115%;
        background-position: 60% center;
        min-height: 600px;
    }
    
    .hero-banner h1 {
        font-size: 80px;
    }
    
    .hero-banner p {
        font-size: 30px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 0.4em;
        padding-left: 0.9em;
        padding-right: 2.8em;
        height: 2.6em;
        animation: fadeInUp 0.8s ease-out 0.3s both;
    }
    
    .icon-button {
        height: 2em;
        width: 2em;
        right: 0.25em;
    }
    
    header nav {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        background-size: 160% auto;
        background-position: 55% top;
        min-height: 500px;
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }
    
    .hero-banner h1 {
        font-size: 60px;
        margin-top: 0.5rem;
    }
    
    .hero-banner p {
        font-size: 24px;
        margin-top: 10px;
    }
    
    .cta-button {
        font-size: 15px;
        padding: 0.35em;
        padding-left: 0.8em;
        padding-right: 2.6em;
        height: 2.4em;
        margin-top: 1rem;
        animation: fadeInUp 0.8s ease-out 0.3s both;
    }
    
    .icon-button {
        height: 1.8em;
        width: 1.8em;
        right: 0.2em;
    }
    
    /* Cacher la navigation desktop */
    header nav {
        display: none;
    }
    
    /* Cacher le sélecteur de langue desktop */
    .language-selector {
        display: none;
    }
    
    /* Afficher le bouton burger */
    .burger-menu {
        display: flex;
    }
    
    /* Afficher le menu mobile */
    .mobile-nav {
        display: flex;
    }
    
    .header-container {
        justify-content: space-between;
    }
    
    .logo img {
        height: 80px;
    }
    
    .spacer {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        background-size: 190% auto;
        background-position: 55% top;
        min-height: 500px;
        padding: 1.5rem 1rem 1rem 1rem;
    }
    
    .hero-banner h1 {
        font-size: 48px;
        margin-top: 0.25rem;
    }
    
    .hero-banner p {
        font-size: 20px;
        margin-top: 8px;
    }
    
    .cta-button {
        font-size: 15px;
        padding: 0.35em;
        padding-left: 0.8em;
        padding-right: 2.6em;
        height: 2.4em;
        margin-top: 0.75rem;
    }

    .home-products-highlight {
        padding: 1.5rem 0 0 0;
    }

    .home-products-title {
        font-size: 1.25rem;
        margin: 0 0 1.25rem 0;
        padding: 0 1rem;
    }

    .home-product-card {
        min-height: 350px;
    }

    .home-product-content {
        padding: 1rem;
    }

    .home-product-name {
        font-size: 1.25rem;
        margin: 0 0 1.25rem 0;
    }

    .home-product-button {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Products Page Styles */
.page-title-section {
    background: linear-gradient(135deg, #0e7500 0%, #16a34a 100%);
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 1rem 0;
    font-family: 'Montserrat', sans-serif;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Product selector tabs */
.products-nav-section {
    padding: 0 0 2rem 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.products-nav-section .container {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.products-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.products-nav-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #0e7500;
    background: transparent;
    color: #0e7500;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.products-nav-btn:hover {
    background: rgba(14, 117, 0, 0.1);
}

@media (hover: hover) {
    .products-nav-btn:hover {
        transform: translateY(-2px);
    }
}

.products-nav-btn.active {
    background: #0e7500;
    color: #fff;
}

/* Product panels - one at a time */
.products-container {
    position: relative;
    min-height: 500px;
}

.product-panel {
    display: none;
    animation: productFadeIn 0.5s ease-out;
}

.product-panel.active {
    display: block;
}

.product-panel[hidden] {
    display: none !important;
}

@keyframes productFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-panel-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 900px) {
    .product-panel-layout {
        grid-template-columns: 1fr 1fr;
    }
}

/* Product gallery */
.product-gallery-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.product-gallery {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-gallery-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.4s ease;
    width: 100%;
}

.product-gallery-img {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

@media (min-width: 600px) {
    .product-gallery-img {
        height: 320px;
    }
}

@media (min-width: 900px) {
    .product-gallery-img {
        height: 380px;
    }
}

.product-gallery-prev,
.product-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #0e7500;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.product-gallery-prev { left: 1rem; }
.product-gallery-next { right: 1rem; }

.product-gallery-prev:hover,
.product-gallery-next:hover {
    background: #0e7500;
    color: #fff;
}

.product-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
}

.product-gallery-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-gallery-dots .dot:hover,
.product-gallery-dots .dot.active {
    background: #0e7500;
    transform: scale(1.2);
}

/* ========== Page produits - Responsive ========== */
@media (max-width: 768px) {
    .page-title-section {
        padding: 3rem 0;
        margin-bottom: 2.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.05rem;
    }

    .products-section {
        padding: 1.75rem 0 3.5rem 0;
    }

    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    /* Sélecteur produits : 2 colonnes, 2 lignes (responsive uniquement) */
    .products-nav-section .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .products-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .page-title-section {
        padding: 2.5rem 0;
        margin-bottom: 2rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .products-nav-section {
        padding: 0 0 1.5rem 0;
    }

    .products-nav {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .products-nav-btn {
        padding: 0.6rem 0.5rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .products-section {
        padding: 1.5rem 0 3rem 0;
    }

    .container.products-container {
        padding: 1.5rem 1rem;
    }

    .products-container {
        min-height: auto;
    }

    .product-panel-layout {
        gap: 1.5rem;
    }

    .product-gallery {
        border-radius: 0.75rem;
    }

    .product-gallery-img {
        height: 240px;
    }

    .product-gallery-prev,
    .product-gallery-next {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .product-gallery-prev { left: 0.5rem; }
    .product-gallery-next { right: 0.5rem; }

    .product-gallery-dots {
        padding: 0.75rem;
        gap: 0.35rem;
    }

    .product-gallery-dots .dot {
        width: 6px;
        height: 6px;
    }

    .product-panel-title {
        font-size: 1.5rem;
        margin: 0 0 0.75rem 0;
    }

    .product-panel-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0 0 1.25rem 0;
    }

    .product-accordion {
        margin-bottom: 1.25rem;
    }

    .product-accordion-item summary {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .product-accordion-item p,
    .product-accordion-item ul {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .advantages-list-compact li {
        padding: 0.35rem 0;
        padding-left: 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .page-title {
        font-size: 1.5rem;
    }

    .products-nav-btn {
        padding: 0.5rem 0.85rem;
        font-size: 0.85rem;
    }

    .product-gallery-img {
        height: 200px;
    }

    .container.products-container {
        padding: 1rem 0.75rem;
    }
}

/* Product panel content */
.product-panel-content {
    padding: 0;
}

.product-panel-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0e7500;
    margin: 0 0 1rem 0;
    font-family: 'Montserrat', sans-serif;
}

.product-panel-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

/* Accordion - Utilisations / Avantages */
.product-accordion {
    margin-bottom: 1.5rem;
}

.product-accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-accordion-item:hover {
    border-color: #0e7500;
}

.product-accordion-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.2s ease;
}

.product-accordion-item summary::-webkit-details-marker { display: none; }

.product-accordion-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: #0e7500;
    transition: transform 0.3s ease;
}

.product-accordion-item[open] summary::after {
    transform: rotate(45deg);
}

.product-accordion-item[open] summary {
    background: rgba(14, 117, 0, 0.05);
    color: #0e7500;
}

.product-accordion-item p,
.product-accordion-item ul {
    padding: 1rem 1.25rem;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid #f3f4f6;
}

.advantages-list-compact {
    list-style: none;
    padding-left: 0;
}

.advantages-list-compact li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.advantages-list-compact li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0e7500;
    font-weight: 700;
}

/* CTA button */
.product-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2rem;
    background: #0e7500;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-cta-btn:hover {
    background: #0d6600;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 117, 0, 0.35);
}

.products-section {
    padding: 2rem 0 4rem 0;
    background-color: #f9fafb;
}

/* Home products highlight (index) */
.home-products-highlight {
    background-color: #ffffff;
    padding: 3rem 0 0 0;
    width: 100%;
}

.home-products-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #0f172a;
    margin: 0 0 2rem 0;
    padding: 0 1.5rem;
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: 100%;
}

/* Tablette - 2 colonnes */
@media (min-width: 768px) and (max-width: 1023px) {
    .home-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-product-card {
        min-height: 500px;
    }

    .home-product-card:nth-child(2n) {
        border-right: none;
    }

    .home-product-card:nth-child(2n-1) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .home-product-card:nth-child(3),
    .home-product-card:nth-child(4) {
        border-bottom: none;
    }
}

.home-product-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home-product-card:last-child {
    border-right: none;
}

.home-product-card:hover {
    transform: scale(1.05);
    z-index: 1;
}

.home-product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    transition: background 0.3s ease;
}

.home-product-card:hover .home-product-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.home-product-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    width: 100%;
    height: 100%;
}

.home-product-name {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2rem 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.home-product-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    border: 2px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.home-product-button::after {
    content: "→";
    font-size: 1.1rem;
    margin-left: 0.5rem;
}

.home-product-button:hover {
    background-color: #0e7500;
    border-color: #0e7500;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 117, 0, 0.4);
}

.home-product-button::after {
    content: "→";
    font-size: 0.95rem;
}

.home-product-button:hover {
    background-color: #15803d;
    border-color: #15803d;
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
    transform: translateY(-1px);
}

.home-product-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
}

.product-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image-wrapper {
    width: 100%;
    height: 400px;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-content {
    padding: 2.5rem;
}

.product-name {
    font-size: 2rem;
    font-weight: 700;
    color: #0e7500;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.product-description {
    font-size: 1rem;
    line-height: 1.75rem;
    color: #374151;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.product-uses,
.product-advantages {
    margin-top: 2rem;
}

.product-uses-title,
.product-advantages-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    font-family: 'Montserrat', sans-serif;
}

.product-uses-text {
    font-size: 1rem;
    line-height: 1.75rem;
    color: #6b7280;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantages-list li {
    font-size: 1rem;
    line-height: 1.75rem;
    color: #374151;
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.advantages-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0e7500;
    font-weight: 700;
    font-size: 1.25rem;
}

.product-variants {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.variant-card {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #0e7500;
    transition: background-color 0.3s ease;
}

.variant-card:hover {
    background-color: #f3f4f6;
}

.variant-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0e7500;
    margin: 0 0 0.75rem 0;
    font-family: 'Montserrat', sans-serif;
}

.variant-description {
    font-size: 0.9375rem;
    line-height: 1.625rem;
    color: #6b7280;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.login-box {
    width: 700px;
    padding: 40px;
    background: rgba(177, 177, 177, 0.987);
    box-sizing: border-box;
    border-radius: 10px;
    color: #fff;
}

/* === Champs de formulaire === */
.login-box .user-box {
    position: relative;
}

.login-box .user-box input,
.login-box .user-box textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
    resize: none;
}

.login-box .user-box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label,
.login-box .user-box textarea:focus ~ label,
.login-box .user-box textarea:valid ~ label {
    top: -20px;
    left: 0;
    color: #0e7500;
    font-size: 12px;
}

/* === Bouton d'envoi === */
.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.login-box form a {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    letter-spacing: 4px;
}

.login-box a:hover {
    background: #0e7500;
    color: #fff;
    border-radius: 5px;
}

.login-box a span {
    position: absolute;
    display: block;
}

@keyframes btn-anim1 {
    0% { left: -100%; }
    50%,100% { left: 100%; }
}

.login-box a span:nth-child(1) {
    bottom: 2px;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0e7500);
    animation: btn-anim1 2s linear infinite;
}

.login-box a span {
    position: absolute;
    display: block;
}

@keyframes btn-anim1 {
    0% { left: -100%; }
    50%,100% { left: 100%; }
}

.login-box a span:nth-child(1) {
    bottom: 2px;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0e7500);
    animation: btn-anim1 2s linear infinite;
}

/* Products Responsive */
@media (min-width: 768px) {
    .product-card {
        display: grid;
        grid-template-columns: 400px 1fr;
    }

    .product-image-wrapper {
        height: 100%;
        min-height: 400px;
    }

    .product-variants {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-products-grid {
        grid-template-columns: 1fr;
    }

    .home-product-card {
        min-height: 400px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .home-product-card:last-child {
        border-bottom: none;
    }

    .home-product-card:hover {
        transform: scale(1.02);
    }

    .home-products-highlight {
        padding: 2rem 0 0 0;
    }

    .home-products-title {
        font-size: 1.5rem;
        margin: 0 0 1.5rem 0;
        padding: 0 1rem;
    }

    .home-product-content {
        padding: 1.5rem;
    }

    .home-product-name {
        font-size: 1.5rem;
        margin: 0 0 1.5rem 0;
    }

    .home-product-button {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .product-content {
        padding: 1.5rem;
    }

    .product-name {
        font-size: 1.5rem;
    }

    .product-variants {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    /* Hero Banner - Espacements mobile */
    .hero-banner h1 {
        margin-top: 5rem;
    }
    
    .hero-banner p {
        margin-top: 1.5rem;
    }
    
    .cta-button {
        margin-top: 3rem;
    }
}

/* Footer Styles */
/* Reviews Section */
.reviews-section {
    background-color: #ffffff;
    padding: 4rem 0;
    margin-top: 4rem;
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.reviews-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: #6b7280;
    margin: 0 0 3rem 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-page-wrapper {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 900px) {
    .contact-page-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-form-container {
        flex: 1;
        margin: 0;
        max-width: none;
        padding-top: 0;
    }

    .contact-info-sidebar {
        flex-shrink: 0;
        width: 300px;
    }
}

.contact-form-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    width: 100%;
}

/* Contact info sidebar - left of form */
.contact-info-sidebar {
    padding: 0;
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0e7500;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #0e7500;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    display: block;
}

.contact-info-content a,
.contact-info-content span {
    font-size: 0.95rem;
    color: #6b7280;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.contact-info-content a:hover {
    color: #0e7500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.contact-form-title {
    font-size: 1.75rem;
    color: #0e7500;
    font-weight: 600;
    letter-spacing: -0.5px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 2rem;
    margin: 0 0 0.25rem 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-form-title::before,
.contact-form-title::after {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    border-radius: 50%;
    left: 0;
    background-color: #0e7500;
}

.contact-form-title::before {
    width: 14px;
    height: 14px;
    background-color: #0e7500;
}

.contact-form-title::after {
    width: 14px;
    height: 14px;
    animation: contact-pulse 1.5s linear infinite;
}

@keyframes contact-pulse {
    from {
        transform: scale(0.9);
        opacity: 1;
    }
    to {
        transform: scale(1.8);
        opacity: 0;
    }
}

.contact-form-message {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}

.contact-form-feedback {
    display: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.contact-form-feedback--success {
    background: rgba(14, 117, 0, 0.1);
    color: #0e7500;
    border: 1px solid rgba(14, 117, 0, 0.3);
}

.contact-form-feedback--error {
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
    border: 1px solid rgba(220, 38, 38, 0.25);
}

.contact-form-flex {
    display: flex;
    width: 100%;
    gap: 0.75rem;
}

.contact-form label {
    position: relative;
    display: block;
    flex: 1;
}

.contact-form label.contact-message-label {
    flex: none;
}

.contact-input {
    width: 100%;
    padding: 0.75rem 1rem;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.3);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.contact-input:focus {
    border-color: #0e7500;
}

.contact-input + span {
    position: absolute;
    left: 1rem;
    top: 0.9rem;
    color: #9ca3af;
    font-size: 0.9rem;
    pointer-events: none;
    transition: 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.contact-input:placeholder-shown + span {
    top: 0.9rem;
    font-size: 0.9rem;
}

.contact-input:focus + span,
.contact-input:valid + span,
.contact-input:not(:placeholder-shown) + span {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0e7500;
    background: #fff;
    padding: 0 0.25rem;
}

.contact-textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 1rem;
}

.contact-message-label .contact-input + span {
    top: 1rem;
}

.contact-message-label .contact-input:focus + span,
.contact-message-label .contact-input:valid + span,
.contact-message-label .contact-input:not(:placeholder-shown) + span {
    top: -0.5rem;
}

.contact-submit {
    border: none;
    outline: none;
    background-color: #0e7500;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 0.5rem;
}

.contact-submit:hover {
    background-color: #0d6600;
    transform: translateY(-1px);
}

.contact-submit:active {
    transform: translateY(0);
}

/* Contact form responsive */
@media (max-width: 768px) {
    .contact-page-wrapper {
        padding: 1.5rem 1rem;
    }

    .contact-form-container {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }


    .contact-form {
        padding: 1.5rem;
    }

    .contact-form-title {
        font-size: 1.5rem;
        padding-left: 1.75rem;
    }

    .contact-form-title::before,
    .contact-form-title::after {
        height: 10px;
        width: 10px;
    }

    .contact-form-title::before {
        width: 12px;
        height: 12px;
    }

    .contact-form-title::after {
        width: 12px;
        height: 12px;
    }

    .contact-form-message {
        font-size: 0.9rem;
    }
}

@media (max-width: 520px) {
    .contact-form-container {
        padding: 1rem 0.75rem;
    }

    .contact-form {
        padding: 1.25rem;
        gap: 0.875rem;
    }

    .contact-form-flex {
        flex-direction: column;
    }

    .contact-form-title {
        font-size: 1.35rem;
        padding-left: 1.5rem;
    }

    .contact-input {
        padding: 0.65rem 0.875rem;
        font-size: 0.95rem;
    }

    .contact-input + span {
        left: 0.875rem;
        top: 0.8rem;
        font-size: 0.85rem;
    }

    .contact-input:focus + span,
    .contact-input:valid + span,
    .contact-input:not(:placeholder-shown) + span {
        left: 0.5rem;
        font-size: 0.7rem;
    }

    .contact-textarea {
        min-height: 100px;
    }

    .contact-submit {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

.reviews-gallery {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #0e7500;
    background: #fff;
    color: #0e7500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.reviews-nav:hover {
    background: #0e7500;
    color: #fff;
}

.reviews-nav svg {
    width: 24px;
    height: 24px;
}

.reviews-track {
    flex: 1;
    overflow: hidden;
}

.reviews-list {
    display: flex;
    flex-direction: row;
    gap: 0;
    transition: transform 0.4s ease;
}

.reviews-list .review-item {
    min-width: 0;
    box-sizing: border-box;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.reviews-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.2s ease;
}

.reviews-dots .dot.active {
    background: #0e7500;
    transform: scale(1.2);
}

.reviews-dots:empty {
    display: none;
}

.review-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: #f8faf8;
    padding: 1.75rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.25s ease;
    overflow: hidden;
}

.review-item:hover {
    box-shadow: 0 4px 16px rgba(14, 117, 0, 0.08);
}

.review-client-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
}

.review-body {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.review-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0e7500;
    margin: 0 0 0.25rem 0;
    font-family: 'Montserrat', sans-serif;
}

.review-author-name {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.review-rating {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 0.75rem;
}

.review-rating .star-filled {
    color: #fbbf24;
    font-size: 1.1rem;
}

.review-rating .star-empty {
    color: #d1d5db;
    font-size: 1.1rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    overflow: hidden;
}

.review-date {
    font-size: 0.875rem;
    color: #9ca3af;
    font-family: 'Montserrat', sans-serif;
}

/* Reviews Responsive */
@media (max-width: 767px) {
    .reviews-section {
        padding: 2.5rem 0;
    }

    .reviews-title {
        font-size: 2rem;
    }

    .reviews-subtitle {
        font-size: 1rem;
    }

    .reviews-gallery {
        gap: 0.35rem;
    }

    .reviews-nav {
        width: 40px;
        height: 40px;
    }

    .reviews-nav svg {
        width: 20px;
        height: 20px;
    }

    .review-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .review-client-img {
        width: 64px;
        height: 64px;
    }

    .review-rating {
        justify-content: center;
    }

    .reviews-dots {
        margin-top: 1rem;
    }

    .reviews-dots .dot {
        width: 6px;
        height: 6px;
    }
}

footer {
    background-color: #0e7500;
    color: #ffffff;
    padding: 3rem 0 1.5rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    max-height: 80px;
    width: auto;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    object-fit: contain;
    align-self: flex-start;
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: #d1d5db;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1rem 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.footer-links a:hover {
    color: #000000;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5rem;
}

.footer-contact li svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #0e7500;
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    color: #d1d5db;
    font-size: 0.875rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-hours li span:first-child {
    font-weight: 600;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

/* Footer Responsive */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 4rem;
    }
}

/* Music Toggle Button Styles */
.music-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #0e7500;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(14, 117, 0, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    padding: 0;
}

.music-toggle-btn:hover {
    background-color: #15803d;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(14, 117, 0, 0.6);
}

.music-toggle-btn:active {
    transform: scale(0.95);
}

.music-icon {
    width: 28px;
    height: 28px;
    color: #ffffff;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Animation pour le bouton */
@keyframes pulse-music {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(14, 117, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(14, 117, 0, 0.7), 0 0 15px rgba(22, 163, 74, 0.5);
    }
}

.music-toggle-btn.playing {
    animation: pulse-music 2s ease-in-out infinite;
}

/* Responsive pour le bouton musique */
@media (max-width: 768px) {
    .music-toggle-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .music-icon {
        width: 24px;
        height: 24px;
    }
}