/* Couleurs vives et naturelles */
:root {
    --secondary-color: #429745; /* Vert vif */
    --primary-color: #1a8417; /* Vert lime */
    --accent-color: #FFC107; /* Jaune amber */
    --text-color: #263238; /* Bleu foncé pour le texte */
    --light-color: #FFF;
    --gradient-light: #E8F5E9; /* Vert très clair */
    --gradient-dark: #C8E6C9; /* Vert clair */
    --highlight-color: #FF9800; /* Orange pour les accents */
    --error-color: #F44336; /* Rouge pour les erreurs ou annulations */
}

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

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-image: linear-gradient(rgba(255, 255, 255, 0.863), rgba(209, 255, 196, 0.8)), url('../images/back.png');
    scroll-behavior: smooth;
    line-height: 1.6;
    font-size: 16px;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/leaf-pattern.jpg');
    background-size: 150px;
    background-repeat: repeat;
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-light), var(--gradient-dark));
    z-index: -1;
    pointer-events: none;
}

/* Vérification d'âge */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.age-verification-content {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.5s ease;
    transform: translateY(0);
    position: relative;
    z-index: 10000;
}

.age-verification h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.age-verification p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
}

.age-buttons button {
    width: 100%;
    min-height: 44px;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    font-weight: bold;
    transition: all 0.3s ease;
}

.age-buttons button#age-yes {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.age-buttons button#age-yes:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.age-buttons button#age-no {
    background: var(--error-color);
    color: white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.age-buttons button#age-no:hover {
    background: #d32f2f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary {
    display: inline-block;
    background: var(--error-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border: none;
    outline: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.cta-button-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: #d32f2f;
}

header {
    background: url('../images/header-bg.jpg') center/cover;
    color: white;
    padding: 25px 0;
    padding-top: 25%;
    text-align: center;
    position: relative;
    overflow: visible;
}

header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: none;
}

header .content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Styles pour les boutons sociaux flottants */
.floating-socials {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    border-radius: 50px;
}

.floating-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background-color: #3b5998;
}

.floating-socials a:hover {
    transform: translateY(-5px);
    background-color: var(--secondary-color);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.floating-socials a:nth-child(2) {
    background-color: #c32aa3;
}

.floating-socials a:nth-child(3) {
    background-color: #000000;
}

.floating-socials a:nth-child(4) {
    background-color: #25D366;
}

/* Styles pour hero section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg') center/cover fixed;
    color: white;
    text-align: center;
    padding: 150px 20px;
    position: relative;
    min-height: 60vh; /* Hauteur minimale pour garantir une bonne visibilité */
}

.hero:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #fcfcfc, transparent);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    animation: fadeInDown 1.2s;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border: none;
    outline: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1.8s;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--highlight-color), var(--accent-color));
}

section {
    padding: 80px 20px;
    position: relative;
    background: transparent;
}

.leaf-top-right {
    top: 0;
    right: 0;
    transform: rotate(90deg);
    background-position: top right;
}

.leaf-bottom-left {
    bottom: 0;
    left: 0;
    transform: rotate(-90deg);
    background-position: bottom left;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;

    border-radius: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.info-box {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.info-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.info-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.info-box h3 i {
    margin-right: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
}

.info-box p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.product-intro {
    text-align: center;
    margin-bottom: 0px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    aspect-ratio: 0.7;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-card:before {
    content: none;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 8px 40px;
    font-size: 0.8rem;
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
}

.product-image {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8 url('../images/leaf-pattern.png') center/640px repeat;
    padding: 10px;
    cursor: pointer;
    height: 60%;
    z-index: 2;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    transform: scale(0.98);
}

.product-card:hover .product-image img {
    transform: scale(1);
}

/* Lightbox pour les images de produits */
.product-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-lightbox.active {
    display: flex;
    opacity: 1;
}

.product-lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.product-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.5s ease;
}

.product-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-lightbox-close:hover {
    transform: scale(1.2);
}

.product-info {
    padding: 15px;
    height: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.product-title {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.product-desc {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    overflow: visible;
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    -webkit-box-orient: unset;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.social-title {
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-links a {
    color: white !important;
    background: #1b9648 !important;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-5px);
}

.social-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: var(--text-color);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.social-btn i {
    font-size: 1.2rem;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.social-btn.whatsapp {
    background: #25D366;
    color: white;
}

.social-btn.whatsapp:hover {
    background: #128C7E;
}

.social-btn:nth-child(1) {
    background: #3b5998;
    color: white;
}

.social-btn:nth-child(2) {
    background: #c32aa3;
    color: white;
}

.social-btn:nth-child(3) {
    background: #000000;
    color: white;
}

#map {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 50px 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/footer-bg.jpg') center/cover;
    opacity: 0.05;
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.ad-space {
    background: linear-gradient(135deg, var(--gradient-light), var(--accent-color), var(--gradient-light));
    padding: 40px;
    margin: 60px 0;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: visible;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ad-space h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.ad-space p {
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    font-weight: bold;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    gap: 30px;
    margin: 60px 0;
    justify-content: center;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 3s ease-in-out infinite;
    display: inline-block;
}

.benefit-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gallery {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    position: relative;
    min-width: 300px;
    height: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    scroll-snap-align: start;
    overflow: hidden;
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    transform: scale(1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-container {
    position: relative;
    margin: 40px 0;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .gallery-item {
        min-width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        min-width: 200px;
        height: 200px;
    }
}

#contact .info-box {
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#contact .info-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.nav.active {
    right: 0;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-bottom: 15px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}

.nav-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.social-nav {
    display: flex;
    margin-top: 30px;
    justify-content: space-around;
}

.social-nav a {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-light);
    transition: all 0.3s ease;
}

.social-nav a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-nav a.whatsapp {
    background: #25D366;
    color: white;
}

.social-nav a.whatsapp:hover {
    background: #128C7E;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.backdrop.active {
    opacity: 1;
    visibility: visible;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .floating-socials {
        display: none; /* Masquer les boutons sociaux flottants sur mobile */
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .products {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 120px;
        background-attachment: scroll; /* Fix pour Mobile Safari */
        min-height: 80vh; /* Hauteur minimale plus grande sur mobile */
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg') center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero .container {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .products {
        gap: 25px;
    }
    
    .info-box {
        padding: 30px;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .social-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .leaf-bg {
        background-size: 200px auto;
    }
    
    .product-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px 100px;
        min-height: 85vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        margin-top: 10px;
    }
    
    .products {
        grid-template-columns: 1fr;
    }
    
    .benefit-card, .info-box {
        padding: 20px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
}

.special-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.special-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
    border-radius: 2px;
}

@media (max-width: 768px) {
    .special-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .special-title {
        font-size: 1.8rem;
    }
}

/* Styles pour la vidéo WhatsApp */
#whatsapp-video {
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--gradient-light), var(--gradient-dark));
    margin-bottom: 40px;
}

.whatsapp-video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    aspect-ratio: 16/9;
}

.whatsapp-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .whatsapp-video-container {
        max-width: 100%;
    }
}

/* Styles pour la section Notre Univers */
.universe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
    width: 100%;
}

.universe-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.universe-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.universe-card:hover:before {
    transform: scaleX(1);
}

.universe-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.universe-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gradient-light), var(--gradient-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.universe-card:hover .universe-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.universe-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.universe-card p {
    color: #666;
    line-height: 1.4;
    margin: 0;
    font-size: 1rem;
    max-width: 90%;
}

@media (max-width: 1200px) {
    .universe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .universe-grid {
        grid-template-columns: 1fr;
    }
}

/* Styles pour la galerie et le modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.gallery-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Règles spécifiques pour s'assurer que les bandeaux sont visibles sur tous les appareils */
@media screen and (max-width: 768px) {
    .ad-space {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        height: auto !important;
        min-height: 100px !important;
        margin: 30px 0 !important;
        padding: 20px !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        will-change: auto !important;
        backface-visibility: visible !important;
        perspective: none !important;
        transform-style: flat !important;
    }
}

/* Règles pour s'assurer que les bandeaux sont visibles même en mode impression */
@media print {
    .ad-space {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        page-break-inside: avoid !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        will-change: auto !important;
        backface-visibility: visible !important;
        perspective: none !important;
        transform-style: flat !important;
    }
}

/* Règles pour s'assurer que les bandeaux sont visibles même en mode sombre */
@media (prefers-color-scheme: dark) {
    .ad-space {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        will-change: auto !important;
        backface-visibility: visible !important;
        perspective: none !important;
        transform-style: flat !important;
    }
}

/* Règles pour s'assurer que les bandeaux sont visibles même en mode réduit */
@media (prefers-reduced-motion: reduce) {
    .ad-space {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        will-change: auto !important;
        backface-visibility: visible !important;
        perspective: none !important;
        transform-style: flat !important;
    }
}

.promotion {
    background: linear-gradient(135deg, var(--gradient-light), var(--accent-color), var(--gradient-light));
    padding: 60px 0;
    margin: 40px 0;
    text-align: center;
    position: relative;
}

.promotion .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.promotion h2 {
    color: #1a472a; /* Vert foncé élégant */
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.promotion p {
    color: #2d5a3f; /* Vert foncé légèrement plus clair pour le texte */
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-weight: bold;
}

.promotion .social-cta {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .promotion {
        padding: 40px 0;
    }
    
    .promotion h2 {
        font-size: 2rem;
    }
    
    .promotion p {
        font-size: 1.1rem;
    }
}