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

:root {
    --primary-dark: #0a3d2a;
    --primary-green: #1a6b52;
    --secondary-brown: #8B4513;
    --accent-gold: #d4af37;
    --light-cream: #FAFAF4;
    --text-dark: #2E2E2E;
    --teal-accent: #134e27;
    --tropical-green: #015513;
    --rhum-primary: #704219;
    --vanilla-cream: #f9f6e6;
    --text-color: #333;
    --border-light: #ccc;   
     --accent-coral: #e67e22;  
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--light-cream);
    line-height: 1.6;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgb(255, 255, 243);
    opacity:90%;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 2px 20px rgba(85, 83, 83, 0);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-size: 2em;
    font-weight: 900;
    background: linear-gradient(135deg, #1a6b52, #4DB6AC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Bodoni Moda',
        Georgia,
        serif;
    letter-spacing: 2px;
}

.logo img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2.5px solid var(--primary-green);
    box-shadow: 0 4px 12px rgba(119, 236, 164, 0.342);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--teal-accent));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-gold);
    font-weight: 900;
}

.nav-link.active:after {
    width: 100%;
}

.btn-contact {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f0e5a8 100%);
    color: var(--primary-dark);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    letter-spacing: 1px;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2.5px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* HERO SECTION */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #184F1A 75%, #209920 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;

}

.hero::before {
    filter: blur(5px);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(117, 98, 36, 0.219) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(25, 247, 92, 0.253) 0%, transparent 50%);

    /* Ensure content stays on top of the decoration */
    z-index: 1; /* Set the decoration layer below the main content (which has a default z-index of auto/0) */
    
    /* --- The Gold SVG Decoration --- */
    background-image: 
        url("data:image/svg+xml,%3Csvg class='palm-bg' viewBox='0 0 1000 1000' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100,800 Q80,600 120,400 Q90,350 150,300' stroke='%23d4af37' stroke-width='8' fill='none' opacity='0.1'/%3E%3Cellipse cx='120' cy='250' rx='60' ry='100' fill='%23d4af37' opacity='0.1' transform='rotate(-20 120 250)'/%3E%3Cellipse cx='180' cy='280' rx='70' ry='90' fill='%23d4af37' opacity='0.1' transform='rotate(20 180 280)'/%3E%3Cpath d='M900,850 Q920,620 870,380 Q910,320 850,280' stroke='%23d4af37' stroke-width='8' fill='none' opacity='0.1'/%3E%3Cellipse cx='900' cy='200' rx='65' ry='110' fill='%23d4af37' opacity='0.1' transform='rotate(25 900 200)'/%3E%3Cellipse cx='820' cy='240' rx='75' ry='95' fill='%23d4af37' opacity='0.1' transform='rotate(-25 820 240)'/%3E%3C/svg%3E");
        
    background-repeat: no-repeat;
    background-position: center;
    background-size: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.palm-leaf {
    position: absolute;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent);
    border-radius: 50%;
}

.leaf-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
    transform: rotate(45deg);
}

.leaf-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
    transform: rotate(-20deg);
}

.leaf-3 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 10%;
    transform: rotate(70deg);
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #fcd332;
    margin-bottom: 2.5rem;
    font-weight: 300;
    font-family: garamond, serif;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 6.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 15px;
}

.hero-tagline {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #fef3c7;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.hero-description {
    font-size: 1.6rem;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.8;
    margin-bottom: 4rem;
    color: #fef3c7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-primary-gold {
    background: linear-gradient(135deg, var(--accent-gold) 10%, #ebd168 100%);
    color: var(--primary-dark);
    box-shadow: 0 8px 25px #1a6b52;
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-primary-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-primary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f1d42a;
    transform: translateY(-3px);
}

/* --- SECTIONS --- */
section {
    padding: 6rem 2rem; /* Increased vertical padding for more breathing room */
}

.container {
    max-width: 1450px;
    margin: 0 auto;
}

/* SECTION HEADER (Label) */
.section-header { /* TARGET THE <p> INSIDE if that's where the text is */
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--primary-green); /* Use a variable for consistency */
    display: inline-block;
    background-color: rgba(26, 107, 82, 0.1); /* Use the primary green with opacity */
    padding: 8px 10px;
    border-radius: 50px;
    margin-bottom: 0; /* Remove default paragraph margin */
    
}


.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; /* Increased size for a main title */
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-align: left; /* Ensure title aligns with left-aligned content */
}

.section-divider {
    width: 100%; /* Make it fill the content area */
    max-width: 120px; /* Keep the max-width you intended */
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--teal-accent));
    margin: 0; /* Reset margins and control spacing with external elements */
    margin-bottom: 2rem; /* Add spacing below it */
    border-radius: 2px;
}

.section-description {
    font-size: 1.25rem; /* Reduced size for better readability as a description */
    color: #666;
    max-width: 800px; /* Slightly wider max-width */
    margin: 0 auto;
}

/* --- HERITAGE SECTION --- */
.heritage {
    background: white;
}
.glass-effect {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
}

.glass-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 10px;
    background:  rgba(255, 255, 255, 0.1);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}
.heritage-grid {
    display: grid;
    padding-left: 4rem;
    padding-right: 4rem;
    grid-template-columns: 0.65fr 0.8fr; /* Keep your intended ratio */
    gap: 4rem;
    align-items: stretch; /* CRITICAL: Ensures the image container and content container match the height of the tallest one */
    margin-top: 3rem;
}
/* Ensure image fills its container, which is now stretched to match the text height */
.heritage-image img {
    position:relative;
    width: 100%;
    height: 100%; /* CRITICAL: Must be 100% to fill the stretched grid cell */
    object-fit: cover; /* Ensures the image covers the container without distortion */
    transition: transform 0.8s ease;
    align-items: center;

}

/* Reset image container to ensure stretching works */
.heritage-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}


/* Image Hover effects remain the same */
.heritage-image:hover img {
    transform: scale(1.05);
}


/* Badge remains the same */
.heritage-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--primary-green), var(--teal-accent));
    color: white;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
    z-index: 20;
}

/* HERITAGE CONTENT STYLING */
.heritage-content h2 {
    /* Updated title rule to align with the general section-title */
    font-family: 'Playfair Display', serif;
    font-size: 3.3rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    text-align: left;
    /* Removed the redundant .section-title class styling from the main h2 tag in HTML */
}

.heritage-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; /* Slightly reduced font size for dense reading text */
    line-height: 1.7; /* Slightly better line height for 1.2rem text */
    margin-bottom: 1.2rem;
}
.Mahajanga{
    color:#184F1A;
}

.Ch{
    color:#8B4513;
}
.heritage-quote {
    background: linear-gradient(135deg, rgba(26, 107, 82, 0.05), rgba(77, 182, 172, 0.05));
    border-left: 4px solid var(--primary-green);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    font-style: italic;
    color: var(--primary-green);
    font-size: 1.15rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

/* STAT BOXES - No significant changes needed, they look great! */
.stat-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), white);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.8rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* VALUES SECTION */
.values {
    background: linear-gradient(135deg, var(--white-smoke) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.value-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.value-section-label {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-green);
    margin:20px;
}
.value-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
    color:#8b4513;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--light-cream);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-green);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-top-color: var(--accent-gold);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(26, 107, 82, 0.1), rgba(77, 182, 172, 0.1));
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary-brown);
    margin-bottom: 1rem;
    text-align: left;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* PRODUCTS SECTION */
.products {
    background: var(--light-cream);
    
}

.product-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}
.product-section-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: black;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

/* Use named areas for consistent sizing */
.product-showcase {
    display: grid;
    /* Define a 400px fixed-width column named 'image-area' and a flexible 'content-area' */
    grid-template-columns: [image-area] 400px [content-area] 1fr;
    /* Default layout: image then content */
    grid-template-areas: "image-area content-area";
    gap: 60px;
    align-items:center;
    margin-bottom: 120px;
}

/* For even items, reverse the areas */
.product-showcase:nth-child(even) {
    /* REVERSED SIZING: Large content area (1fr) on the LEFT, small image area (400px) on the RIGHT */
    grid-template-columns: [content-area] 1fr [image-area] 400px;
    grid-template-areas: "content-area image-area";
}

/* Target elements by placing them in their named areas */
.product-image-wrapper {
    grid-area: image-area;
    /* Stays in the 'image-area' definition */
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.product-content {
    grid-area: content-area;
    font-family: garamond, serif;
}

/* The image size is now tied to the 'image-area' dimensions (400px width) */
.product-image-wrapper img {
    display: block;
    width: 100%;
    height: 540px;
    /* Fixed height for consistent look */
    object-fit: fit-cover;
    /* Ensures the image fills the space without distortion */
    transition: transform 1s ease;
}

.product-image-wrapper:hover img {
    transform: scale(1.08);
}

.product-label {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #d8b748;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    
}

/* Adjust label position when the image-area is on the right (even items) */
.product-showcase:nth-child(even) .product-label {
    right: 5px;
    left: auto;
    
}
.product-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    margin-bottom: 5rem;
}

.product-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
}

.product-highlight {
    background: inear-gradient(135deg, var(--primary-green), var(--teal-accent));;
    border-left: 4px solid var(--primary-green);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    font-size: 1.25rem;
    font-style: italic;
    color: #666;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* GALLERY SECTION */
.gallery {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), white);
    
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 3rem;
    
}

.gallery-item {
    position: relative;
    aspect-ratio: 2/2.1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit:cover;
    transition: transform 0.7s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* INFUSION*/
.infusion-section {
    padding-top: 6rem;
    /* py-24 */
    padding-bottom: 6rem;
    background-color: white;
    overflow: hidden;
    /* overflow-hidden */
}

/* 2. Conteneur */
.container-infusion {
    max-width: 1350px;
    /* Ajusté pour laisser de l'espace aux bords */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    /* px-4 */
    padding-right: 1rem;
}

/* Adaptation pour les grands écrans (lg:px-8) */
@media (min-width: 1024px) {
    .container-infusion {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* 3. Grille (équivalent à .grid .grid-cols-1 .lg:grid-cols-12 .gap-12 .lg:gap-16) */
.infusion-grid {
    display: grid;
    grid-template-columns: 0.65fr 0.65fr;
    gap: 3rem;
    align-items: center;
}

/* Règle pour les grands écrans (lg) */
@media (min-width: 1024px) {
    .infusion-grid {
        grid-template-columns: 7fr 5fr;
        /* lg:grid-cols-12, lg:col-span-7 et lg:col-span-5 */
        gap: 4rem;
        /* lg:gap-16 = 64px */
    }
}

/* --- COLONNE DE TEXTE --- */

.infusion-text-column {
    /* space-y-8 = 32px d'espace vertical entre les enfants directs */
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Tag (Méthodologie & Sourcing) */
.tag-wrapper {
    display: inline-block;
}

.methodo-tag {
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 900;
    /* font-bold */
    color: var(--rhum-primary);
    text-transform: uppercase;
    /* uppercase */
    letter-spacing: 0.05em;
    /* tracking-wider */
    padding: 0.5rem 1rem;
    /* py-2 px-4 */
    border-radius: 9999px;
    /* rounded-full */
    background-color: rgba(196, 48, 4, 0.247);
    /* bg-terre-rouge/10 */
}

/* Titre (h2) */
.infusion-title {
    font-size: 2.5rem;
    /* text-4xl */
    font-family: 'Playfair Display, sans serif' ;
    /* font-serif-elegant - à ajuster si police spécifique */
    color: var(--teal-accent);
    line-height: 1.2;
    /* leading-tight */
    margin: 0;
}

@media (min-width: 768px) {
    .infusion-title {
        font-size: 3rem;
        /* md:text-5xl */
    }
}

@media (min-width: 1024px) {
    .infusion-title {
        font-size: 3.75rem;
        /* lg:text-6xl */
    }
}

.accent-text {
    color: var(--accent-gold);
    /* text-accent-or */
}

/* Ligne de séparation */
.separator-line {
    width: 6rem;
    /* w-24 */
    height: 0.25rem;
    /* h-1 */
    border-radius: 9999px;
    /* rounded-full */
    /* Simulation de gradient (from-accent-or to-accent-coral) */
    background: linear-gradient(to right, var(--accent-gold), var(--accent-coral));
}

/* Contenu du texte (p et cartes) */
.infusion-content {
    /* space-y-6 = 24px d'espace vertical entre les enfants directs */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.125rem;
    /* text-lg */
    line-height: 1.75;
    /* leading-relaxed */
    color: var(--text-color);
    font-family: 'Montserrat, sans-serif';
}

.highlight-text {
    font-weight: 600;
    /* font-semibold */
    color: var(--teal-accent);
}

/* Grille des cartes de processus */
.process-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* grid-cols-1 */
    gap: 1.5rem;
    /* gap-6 */
    margin-top: 2rem;
    /* mt-8 */
}

@media (min-width: 768px) {
    .process-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        /* md:grid-cols-2 */
    }
}

.process-card {
    padding: 1.5rem;
    /* p-6 */
    border-radius: 0.75rem;
    /* rounded-xl */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    /* shadow-sm */
    background-color: var(--light-cream);
    /* bg-blanc-creme */
    border-left-width: 4px;
    /* border-l-4 */
    border-left-style: solid;
}

.card-sourcing {
    border-left-color: var(--accent-gold);
    /* border-accent-or */
}

.card-processus {
    border-left-color: var(--teal-accent);
    /* border-teal-tropical */
}

.card-title-2 {
    font-weight: 800;
    font-family: 'Montserrat, sans-serif';
    font-size: 1.5rem;
    color: var(--secondary-brown);
    margin-bottom: 0.5rem;
    /* mb-2 */
    margin-top: 0;
}

/* Blockquote */
.infusion-quote {
    font-size: 1.2rem;
    /* text-xl */
    font-style: italic;
    /* italic */
    color: #555;
    /* text-gray-600 */
    text-align: center;
    /* text-center */
    padding-top: 1.5rem;
    /* py-6 */
    padding-bottom: 1.5rem;
    margin-top: 2rem;
    /* mt-8 */
    border-top: 1px solid rgba(39, 174, 96, 0.3);
    /* border-t border-vert-palme/30 */
    border-bottom: 1px solid rgba(39, 174, 96, 0.3);
    /* border-b border-vert-palme/30 */
}

.quote-icon {
    font-size: 1.5rem;
    /* text-2xl */
    color: var(--accent-or);
    margin: 0 0.5rem;
}

/* --- COLONNE D'IMAGE --- */

.infusion-image-column {
    position: relative;
    /* relative */
}

/* Conteneur d'image */
.image-wrapper {
    position: relative;
    /* relative */
    overflow: hidden;
    /* overflow-hidden */
    border-radius: 1rem;
    /* rounded-2xl */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* shadow-2xl */
    transform: none;
    /* transform */
    transition: transform 0.3s ease-in-out;
}

/* Effet au survol (hover-lift) */
.hover-lift:hover {
    transform: translateY(-8px);
}

/* Aspect ratio (aspect-[3/4]) */
.image-aspect-ratio {
    width: 100%;
    padding-top: 133.33%;
    /* 4 / 3 = 1.3333... (4:3 ratio) */
    position: relative;
    overflow: hidden;
}

.infusion-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* w-full */
    height: 100%;
    /* h-full */
    object-fit: cover;
    /* object-cover */
    transition: transform 0.7s ease-in-out;
    /* transition-transform duration-700 */
}

/* Effet de zoom au survol */
.image-wrapper:hover .infusion-image {
    transform: scale(1.1);
    /* hover:scale-110 */
}

/* Bordure interne (decorative) */
.image-border-overlay {
    position: absolute;
    inset: 0;
    /* inset-0 */
    border: 8px solid rgba(255, 255, 255, 0.2);
    /* border-8 border-white/20 */
    pointer-events: none;
    /* pointer-events-none */
    border-radius: 1rem;
    /* rounded-2xl */
}

/* Élément décoratif (Decorative element) */
.decorative-blob {
    position: absolute;
    bottom: -1.5rem;
    /* -bottom-6 */
    right: -1.5rem;
    /* -right-6 */
    width: 8rem;
    /* w-32 */
    height: 8rem;
    /* h-32 */
    border-radius: 9999px;
    /* rounded-full */
    background-color: rgba(241, 196, 15, 0.1);
    /* bg-accent-or/10 */
    filter: blur(40px);
    /* blur-xl */
    display: none;
    /* hidden */
}

/* PRICE SECTION */
.produits-section {
    padding: 80px 0;
    /* py-20 */
    background-color: white;
    font-family: 'Montserrat, sans serif';
}

/* Adaptation pour les grands écrans (md:py-32) */
@media (min-width: 768px) {
    .produits-section {
        padding: 80px 0;
    }
}

/* 2. Conteneur (équivalent à .container .mx-auto .px-4) */
.container2 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    /* px-4 = 16px */
    padding-right: 1rem;
}

/* 3. Titre de la section (h2) */
.section-title {
    font-size: 2.25rem;
    /* text-4xl */
    font-weight: 700;
    /* font-heading */
    color: var(--tropical-green);
    margin-bottom: 4rem;
    /* mb-16 */
    text-align: center;
}

/* 4. Grille des produits (équivalent à .flex .flex-col .lg:flex-row .gap-10) */
.produits-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    /* gap-10 = 40px */
}

/* Règle pour les grands écrans (lg:flex-row) */
@media (min-width: 1024px) {
    .produits-grid {
        flex-direction: row;
    }
}

/* 5. Cartes de produits générales (équivalent à .flex-1 .p-8 .rounded-xl .shadow-xl .bg-vanilla-cream) */
.produit-card {
    flex: 1 1 0%;
    /* flex-1 */
    padding: 2rem;
    /* p-8 */
    border-radius: 0.75rem;
    /* rounded-xl */
    box-shadow: 0 10px 15px -3px rgba(27, 27, 27, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* shadow-xl */
    background-color: var(--vanilla-cream);
    transition: box-shadow 0.3s ease-in-out;
    /* transition duration-300 */
    border-width: 4px;
    /* border-2 */
    border-style: inset;
}

/* Effet au survol (hover:shadow-2xl) */
.produit-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.082), 0 10px 10px -5px rgba(0, 0, 0, 0.226);
}

/* Styles spécifiques aux cartes */
.rhum-card {
    border-color: var(--rhum-primary);
    /* border-rhum-primary */
}

.liqueur-card {
    border-color: var(--tropical-green);
    /* border-tropical-green */
}

/* 6. Titre de la carte (h3) */
.card-title {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 700;
    /* font-heading */
    padding-bottom: 1rem;
    /* pb-4 */
    margin-bottom: 1.5rem;
    /* mb-6 */
    border-bottom-width: 2px;
    /* border-b-2 */
    border-bottom-style: solid;
}

.rhum-title {
    color: var(--rhum-primary);
    border-bottom-color: var(--tropical-green);
    display: flex;
    /* flex */
    justify-content: space-between;
    /* justify-between */
    align-items: center;
    /* items-center */
}

.liqueur-title {
    color: var(--tropical-green);
    border-bottom-color: var(--rhum-primary);
}

.rhum-price {
    font-size: 1.25rem;
    /* text-xl */
    font-weight: 700;
    /* font-bold */
    color: var(--tropical-green);
}

/* 7. Liste des produits (ul) */
.produit-list,
.produit-list-with-price {
    list-style: none;
    padding: 0;
    margin: 0;
    /* space-y-4 = 16px d'espace vertical entre les éléments */
}

.produit-list li:not(:last-child),
.produit-list-with-price li:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
    /* border-b border-gray-200 */
    padding-bottom: 0.5rem;
    /* pb-2 */
    margin-bottom: 1rem;
    /* Espace équivalent à space-y-4 */
}

.produit-list li:last-child {
    margin-bottom: 1rem;
    /* Assurer le même espacement pour le dernier élément */
}

.produit-list li,
.produit-list-with-price li {
    display: flex;
    justify-content: space-between;
    /* justify-between */
    align-items: center;
    /* items-center */
}

.item-name {
    font-weight: 600;
    /* font-semibold */
}

/* 8. Prix des autres produits dans la liste */
.item-price {
    font-weight: 700;
    /* font-bold */
    color: var(--rhum-primary);
}

/* 9. Texte de la fiole (p) */
.fiole-price {
    margin-top: 1.5rem;
    /* mt-6 */
    text-align: right;
    /* text-right */
    font-style: italic;
    /* italic */
    color: var(--rhum-primary);
    font-weight: 500;
    /* font-medium */
}

.fiole-price-value {
    font-weight: 700;
    /* font-bold */
}

/* GIFT BOXES SECTION */
.gift-boxes {
    background: white;
}

.boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    padding-left: 50px;
    padding-right: 50px;
}

.gift-box {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.gift-box-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Centrer verticalement */
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.gift-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

.gift-box-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gift-box-content {
    padding: 2.5rem;
}

.gift-box-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--teal-accent));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
    margin-bottom: 0;
}

.gift-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--primary-green);
    margin-bottom: 0;
    /* Important pour supprimer l'ancien espacement */
    max-width: 80%;
    text-align: left;
    line-height: 1.2;
}

.gift-box-price {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.gift-box-amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--secondary-brown);
    margin-bottom: 0.3rem;
}

.gift-box-euro {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.gift-box-items {
    list-style: none;
    margin-bottom: 2rem;
}

.gift-box-items li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.gift-box-items li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 900;
    font-size: 1.2rem;
}

.btn-order {
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 20px rgba(26, 107, 82, 0.1),
        0 0 20px rgba(26, 107, 82, 0.3);
    margin-top: 0.5rem;
}

.btn-text {
    position: relative;
    z-index: 2;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.btn-order::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn-order::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-order:hover {
    color: white;
    border-color: var(--accent-coral);
    box-shadow: 0 0 30px var(--primary-green),
        inset 0 0 20px rgba(26, 107, 82, 0.3),
        0 0 60px rgba(255, 107, 91, 0.4);
    transform: translateY(-3px);
}

.btn-order:hover::before {
    opacity: 1;
}

.btn-order:hover::after {
    left: 100%;
}

.btn-order:active {
    transform: translateY(-1px);
}

.btn-order:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
@media (max-width: 500px) {
    .gift-box-header-flex {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .gift-box h3 {
        max-width: 100%;
        text-align: left;
    }
}

/* CONTACT SECTION */

/* ===== CONTACT SECTION STYLES ===== */

.contact {
    background: linear-gradient(135deg, var(--light-cream), rgba(212, 175, 55, 0.03));
}

/* Main Grid Layout */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

/* Left Column */
.contact-left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Right Column */
.contact-right-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* ===== CONTACT INFO BOX ===== */
.contact-info-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(77, 182, 172, 0.1));
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

.contact-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--secondary-brown));
    -webkit-text-fill-color: transparent; 
    background-clip: text;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon-phone-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #f0e5a8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-icon-email-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background:#FF6B9D;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-icon-location-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background:linear-gradient(135deg, #b3f8f8a6, #edf1f131);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-value {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
}

/* Creator Info */
.contact-creator {
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.creator-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.creator-name {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-green);
}

/* ===== LOCATIONS SECTION ===== */
.locations-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.location-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.gold-location {
    border-left-color: #FFD700;
    background:linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.pink-location {
    border-left-color: #FF6B9D;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 107, 157, 0.05));
}

.teal-location {
    border-left-color: #4DB6AC;
    background: linear-gradient(135deg, rgba(77, 182, 172, 0.1), rgba(77, 182, 172, 0.05));
}

.location-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.gold-location .location-name {
    color: #FF8C00;
}

.pink-location .location-name {
    color: #FF6B9D;
}

.teal-location .location-name {
    color: #4DB6AC;
}

.location-address {
    font-size: 0.95rem;
    color: #666;
}

/* ===== CONTACT FORM BOX ===== */
.contact-form-box {
    background: var(--light-cream);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(26, 107, 82, 0.1);
}

.form-box-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.form-box-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    font-size: 0.9rem;
    background: #fafafa;
    font-family: inherit;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #333;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

/* Focus states */
.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.form-select:focus {
    outline: none;
    border-color: var(--teal-accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(77, 182, 172, 0.15);
    transform: translateY(-2px);
}

.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-brown);
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.15);
    transform: translateY(-2px);
    resize: none;
}

/* Hover effects */
.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: rgba(212, 175, 55, 0.6);
    background: #fdfdfd;
}

/* Required indicator */
.required {
    color: var(--accent-coral);
    margin-left: 0.25rem;
}

/* ===== COMMUNITY BOX ===== */
.community-box {
    background: linear-gradient(135deg, #FF6B9D 0%, var(--primary-green) 50%, #4DB6AC 100%);
    padding: 6rem;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(26, 107, 82, 0.1);
    text-align: center;
}

.community-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.community-subtitle {
    font-size: 1rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
    padding-bottom: 2rem;
}

/* Social Links */
.social-links-community {
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.social-link-item {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color:white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.6rem;
}

.social-link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 107, 82, 0.3);
}


/* FOOTER */
footer {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

footer .brand {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--accent-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--teal-accent));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(26, 107, 82, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(26, 107, 82, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f0e5a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Add these media query overrides to your styles.css */

/* ===== TABLET & MOBILE RESPONSIVE ===== */

@media (max-width: 1024px) {
    .heritage-grid {
        display: flex;
        padding-left: 2rem;
        padding-right: 2rem;
        gap: 2rem;
        flex-direction: column-reverse;
        align-items: center;
        
    }

    .heritage-image img {
        height:auto;
        max-height: 600px;
    }

    .infusion-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .infusion-title {
        font-size: 2rem;
    }

    .product-showcase {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
        margin-bottom: 60px;
        align-items: center;
    }

    .product-showcase:nth-child(even) {
        grid-template-areas: "content-area" "image-area";
    }

    .product-image-wrapper {
        max-width: 70%;
        width: 70%;
    }

    .product-image-wrapper img {
        height: auto;
        aspect-ratio: 400 / 540;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .boxes-grid {
        grid-template-columns: 1fr;
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 2rem;
    }

    .value-section-title {
        font-size: 2rem;
    }

    section {
        padding: 4rem 1rem;
    }
}

@media (max-width: 768px) {

    /* Navigation */
    .nav-container {
        padding: 0.8rem 1rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    /* MOBILE MENU STYLES */
    .nav-menu {
        display: none !important;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #fff, #fafaf4);
        backdrop-filter: blur(20px);
        border-bottom: 2px solid rgba(212, 175, 55, 0.3);
        padding: 1.5rem;
        gap: 0.75rem;
        list-style: none;
        z-index: 999;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex !important;
        animation: slideDown 0.3s ease-out;
    }

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

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
        font-size: 0.85rem;
    }

    .nav-link:hover {
        background: rgba(26, 107, 82, 0.1);
    }

    .nav-link.active {
        background: linear-gradient(135deg, rgba(26, 107, 82, 0.1), rgba(77, 182, 172, 0.1));
        color: var(--primary-green);
    }

    .btn-contact {
        background: linear-gradient(135deg, var(--accent-gold), #f0e5a8);
        margin-top: 0.5rem;
    }

    .menu-toggle {
        display: flex !important;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Hero Section */
    .hero {
        margin-top: 70px;
        min-height: 85vh;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 6px;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .btn-primary {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }

    /* Sections */
    section {
        padding: 3rem 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Heritage Section */
    .heritage-grid {
        grid-template-columns: 1fr;
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .heritage-image img {
        height: auto;
        max-height: 550px;
        
    }

    .heritage-content h2 {
        font-size: 2rem;
    }

    .heritage-content p {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Values Section */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-card h3 {
        font-size: 1.2rem;
    }

    /* Products Section */
    .product-container {
        padding: 0 1rem;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .product-showcase:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .product-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .product-content p {
        font-size: 1rem;
    }

    .product-image-wrapper {
        width: 100%;
        max-width: none;
    }

    .product-image-wrapper img {
        height: auto;
        aspect-ratio: 300 / 500;
        object-fit: cover;
    }

    .product-highlight {
        font-size: 1rem;
        padding: 1rem;
    }

    /* Gallery Section */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-item {
        aspect-ratio: 1/1;
    }

    /* Infusion Section */
    .container-infusion {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .infusion-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .infusion-title {
        font-size: 1.8rem;
    }

    .infusion-content {
        font-size: 1rem;
        gap: 1rem;
    }

    .process-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .image-wrapper {
        border-radius: 0.75rem;
    }

    /* Price Section */
    .container2 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .produits-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .produit-card {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .rhum-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .rhum-price {
        font-size: 1rem;
        width: 100%;
    }

    /* Gift Boxes */
    .boxes-grid {
        grid-template-columns: 1fr;
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 1.5rem;
    }

    .gift-box h3 {
        font-size: 1.4rem;
        max-width: 100%;
    }

    .gift-box-image {
        height: 200px;
    }

}

@media (max-width: 480px) {

    /* Extra Small Devices */
    .nav-container {
        padding: 0.6rem 0.8rem;
    }

    .logo {
        font-size: 0.9rem;
        gap: 0.4rem;
        letter-spacing: 1px;
    }

    .logo img {
        width: 32px;
        height: 32px;
        border: 2px solid var(--primary-green);
    }

    /* MOBILE MENU - ENHANCED */
    .nav-menu {
        top: 65px;
        padding: 1rem;
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.65rem 0.8rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(26, 107, 82, 0.15);
        border-left-color: var(--primary-green);
        padding-left: 1.2rem;
    }

    .nav-link.active {
        background: linear-gradient(90deg, rgba(26, 107, 82, 0.2), transparent);
        border-left-color: var(--accent-gold);
        color: var(--primary-green);
        font-weight: 600;
    }

    .btn-contact {
        padding: 0.65rem 1rem;
        font-size: 0.75rem;
        margin-top: 0.75rem;
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    }

    .btn-contact:hover {
        transform: translateY(-2px);
    }

    .menu-toggle span {
        width: 22px;
        height: 2px;
        gap: 4px;
    }

    /* Hero */
    .hero {
        margin-top: 65px;
        min-height: 75vh;
        padding: 1.5rem 1rem;
        background: linear-gradient(135deg, #184F1A 75%, #209920 100%);
    }

    .hero-content {
        padding: 0.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
        margin-bottom: 0.75rem;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    }

    .hero-subtitle {
        font-size: 0.65rem;
        margin-bottom: 0.75rem;
        letter-spacing: 1.5px;
        font-weight: 400;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 0.5rem;
    }

    .btn-primary {
        padding: 0.7rem 1rem;
        font-size: 0.72rem;
        letter-spacing: 1px;
        border-radius: 25px;
    }

    .btn-primary-gold {
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    }

    .btn-primary-outline {
        border-width: 1.5px;
    }

    /* Sections */
    section {
        padding: 2rem 0.8rem;
    }

    .container {
        padding: 0;
    }

    .product-container {
        padding: 0;
    }

    .container-infusion {
        padding-left: 0;
        padding-right: 0;
    }

    .container2 {
        padding-left: 0;
        padding-right: 0;
    }

    /* Section Headers - CREATIVE MOBILE STYLING */
    .value-section-label {
        font-size: 0.8rem;
        margin: 10px;
        padding: 0.5rem 1rem;
        background: linear-gradient(135deg, rgba(26, 107, 82, 0.15), rgba(77, 182, 172, 0.1));
        border-radius: 25px;
        display: inline-block;
    }

    .value-section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .section-divider {
        width: 60px;
        height: 2px;
        margin: 1rem 0 1.5rem 0;
    }

    /* Heritage - CREATIVE CARD STYLE */
    .heritage-grid {
        padding-left: 0;
        padding-right: 0;
        gap: 1rem;
        margin-top: 1rem;
    }

    .heritage-image {
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        overflow: hidden;
    }

    .heritage-image img {
        height: auto;
        max-height: 300px;
        width:400px;
        display: block;
    }

    .heritage-badge {
        padding: 0.5rem 0.8rem;
        font-size: 0.65rem;
        top: -8px;
        right: -8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .heritage-content h2 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .heritage-content p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.6;
    }

    .heritage-quote {
        padding: 1.25rem;
        margin: 1.25rem 0;
        font-size: 0.85rem;
        border-left-width: 3px;
        background: linear-gradient(135deg, rgba(26, 107, 82, 0.08), rgba(77, 182, 172, 0.05));
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .stat-box {
        padding: 1.25rem;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), white);
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Values - CARD GRID */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-card {
        padding: 1.25rem;
        border-radius: 15px;
        border-top-width: 3px;
        background: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .value-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }

    .value-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .value-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        margin: 0 auto 1rem;
    }

    /* Products - ENHANCED MOBILE */
    .product-showcase {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .product-content h2 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .product-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .product-image-wrapper {
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        overflow: hidden;
    }

    .product-image-wrapper img {
        aspect-ratio: 350 / 400;
    }

    .product-label {
        padding: 0.5rem 0.75rem;
        font-size: 0.65rem;
        border-radius: 6px;
        top: 8px;
        right: 8px;
    }

    .product-highlight {
        font-size: 0.85rem;
        padding: 1rem;
        margin: 1rem 0;
        border-radius: 10px;
        border-left-width: 3px;
    }

    /* Gallery - COMPACT */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 1.5rem;
    }

    .gallery-item {
        aspect-ratio: 1/1;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .gallery-overlay {
        padding: 1rem;
    }

    .gallery-title {
        font-size: 0.8rem;
        font-weight: 600;
    }

    /* Infusion */
    .infusion-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .infusion-title {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .methodo-tag {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .separator-line {
        width: 50px;
        height: 2px;
    }

    .infusion-content {
        font-size: 0.85rem;
        gap: 1rem;
    }

    .process-cards-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .process-card {
        padding: 1rem;
        border-radius: 10px;
        border-left-width: 3px;
    }

    .card-title-2 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .infusion-quote {
        font-size: 0.85rem;
        padding: 1rem;
        margin: 1rem 0;
    }

    .image-wrapper {
        border-radius: 12px;
    }

    /* Price Section */
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .produits-grid {
        flex-direction: column;
        gap: 1.25rem;
    }

    .produit-card {
        padding: 1.25rem;
        border-radius: 12px;
        border-width: 3px;
    }

    .card-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .rhum-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .rhum-price {
        font-size: 0.8rem;
        width: 100%;
    }

    .produit-list li,
    .produit-list-with-price li {
        font-size: 0.8rem;
        padding-bottom: 0.4rem;
        margin-bottom: 0.75rem;
    }

    .item-price {
        font-size: 0.75rem;
    }

    /* Gift Boxes - ATTRACTIVE CARDS */
    .boxes-grid {
        grid-template-columns: 1fr;
        padding-left: 0;
        padding-right: 0;
        gap: 1.25rem;
    }

    .gift-box {
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .gift-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    }

    .gift-box-image {
        height: 200px;
        object-fit: cover;
    }

    .gift-box-content {
        padding: 1.25rem;
    }

    .gift-box-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.6rem;
        border-radius: 20px;
        margin-bottom: 0.75rem;
    }

    .gift-box h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        max-width: 100%;
        line-height: 1.2;
    }

    .gift-box-price {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .gift-box-amount {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }

    .gift-box-euro {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .gift-box-items li {
        font-size: 0.75rem;
        padding: 0.5rem 0;
        gap: 0.6rem;
    }

    .gift-box-items li::before {
        font-size: 0.9rem;
    }

    .btn-order {
        padding: 0.65rem 1rem;
        font-size: 0.7rem;
        margin-top: 0.75rem;
        border-radius: 20px;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 1024px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .contact-info-box {
        padding: 2rem;
    }

    .contact-info-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .locations-title {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .location-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .contact-info-box {
        padding: 1.5rem;
    }

    .contact-info-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .contact-item {
        gap: 1rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .contact-label {
        font-size: 0.7rem;
    }

    .contact-value {
        font-size: 0.9rem;
    }

    .contact-creator {
        padding-top: 1rem;
        margin-top: 0.75rem;
    }

    .creator-label {
        font-size: 0.7rem;
    }

    .creator-name {
        font-size: 1.1rem;
    }

    .locations-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .location-card {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .location-name {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .location-address {
        font-size: 0.85rem;
    }

    .contact-form-box {
        padding: 1.5rem;
    }

    .form-box-title {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .form-box-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .form-label {
        font-size: 0.7rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.75rem 0.9rem;
        font-size: 0.85rem;
    }

    .community-box {
        padding: 1.5rem;
    }

    .community-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .community-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .social-links-community {
        gap: 0.75rem;
    }

    .social-link-item {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    /* Back to Top */
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 0.95rem;
        bottom: 1.5rem;
        right: 1.5rem;
        box-shadow: 0 4px 12px rgba(26, 107, 82, 0.3);
    }

    /* Footer */
    footer {
        padding: 2.5rem 1.5rem;
    }

    footer p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    footer .brand {
        font-size: 1.1rem;
    }

    /* Hide decorative elements */
    .leaf-1,
    .leaf-2,
    .leaf-3 {
        display: none;
    }

    .decorative-blob {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .contact-main-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .contact-info-box {
        padding: 1.25rem;
    }

    .contact-info-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .contact-item {
        gap: 0.75rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        min-width: 40px;
    }

    .contact-label {
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
    }

    .contact-value {
        font-size: 0.85rem;
    }

    .contact-creator {
        padding-top: 0.75rem;
        margin-top: 0.5rem;
    }

    .creator-label {
        font-size: 0.65rem;
        margin-bottom: 0.3rem;
    }

    .creator-name {
        font-size: 0.95rem;
    }

    .locations-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .location-card {
        padding: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .location-name {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
    }

    .location-address {
        font-size: 0.8rem;
    }

    .contact-form-box {
        padding: 1.25rem;
    }

    .form-box-title {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }

    .form-box-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1.25rem;
    }

    #contactForm {
        gap: 1.25rem;
    }

    .form-label {
        font-size: 0.65rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.65rem 0.75rem;
        font-size: 0.8rem;
    }

    .community-box {
        padding: 1.25rem;
    }

    .community-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .community-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }

    .social-links-community {
        gap: 0.6rem;
    }

    .social-link-item {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    /* Back to Top */
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        bottom: 1rem;
        right: 1rem;
        box-shadow: 0 4px 12px rgba(26, 107, 82, 0.3);
    }

    /* Footer */
    footer {
        padding: 2rem 1rem;
    }

    footer p {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    footer .brand {
        font-size: 1rem;
    }

    /* Hide decorative elements */
    .leaf-1,
    .leaf-2,
    .leaf-3 {
        display: none;
    }

    .decorative-blob {
        display: none !important;
    }
}