/**
 * Nature Solution - Charte Graphique Officielle
 * Couleurs: Vert • Noir • Blanc
 */

/* ==========================================================================
   VARIABLES CSS - CHARTE GRAPHIQUE NATURE SOLUTION
   ========================================================================== */

:root {
    --ns-primary-green: #8BC34A;        /* Vert principal Nature Solution */
    --ns-dark-green: #689F38;           /* Vert foncé */
    --ns-light-green: #DCEDC8;          /* Vert clair */
    --ns-black: #1C1C1C;                /* Noir principal */
    --ns-dark-gray: #333333;            /* Gris foncé */
    --ns-white: #FFFFFF;                /* Blanc */
    --ns-light-gray: #F5F5F5;           /* Gris très clair */

    --ns-gradient-primary: linear-gradient(135deg, var(--ns-primary-green), var(--ns-dark-green));
    --ns-gradient-dark: linear-gradient(135deg, var(--ns-black), var(--ns-dark-gray));
    --ns-shadow: 0 10px 30px rgba(28, 28, 28, 0.1);
    --ns-shadow-hover: 0 20px 40px rgba(28, 28, 28, 0.15);
    --ns-shadow-green: 0 10px 30px rgba(139, 195, 74, 0.2);
}

/* ==========================================================================
   HERO SECTION - NATURE SOLUTION
   ========================================================================== */

.naturesolution-homepage .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ns-gradient-dark);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(28, 28, 28, 0.85) 0%,
        rgba(51, 51, 51, 0.75) 50%,
        rgba(139, 195, 74, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem 0;
}

.hero-text {
    text-align: center;
    color: var(--ns-white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    color: var(--ns-white);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
    color: var(--ns-light-gray);
}

/* Certification Badge */
.hero-certification {
    margin: 2rem 0;
}

.certification-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--ns-primary-green);
    color: var(--ns-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--ns-shadow-green);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--ns-primary-green);
    color: var(--ns-white);
    border: 2px solid var(--ns-primary-green);
    box-shadow: var(--ns-shadow);
}

.btn-primary:hover {
    background: var(--ns-dark-green);
    border-color: var(--ns-dark-green);
    transform: translateY(-3px);
    box-shadow: var(--ns-shadow-hover);
    color: var(--ns-white);
}

.btn-outline {
    background: transparent;
    color: var(--ns-white);
    border: 2px solid var(--ns-white);
}

.btn-outline:hover {
    background: var(--ns-white);
    color: var(--ns-black);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--ns-primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.scroll-down:hover {
    color: var(--ns-white);
    transform: translateY(-5px);
}

/* ==========================================================================
   SECTION QUI SOMMES-NOUS
   ========================================================================== */

.about-section {
    padding: 6rem 0;
    background: var(--ns-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--ns-black);
    margin-bottom: 1.5rem;
    position: relative;
}

.about-text .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--ns-primary-green);
    margin-top: 1rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--ns-dark-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about-highlights {
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--ns-primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ns-white);
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ns-black);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: var(--ns-dark-gray);
    line-height: 1.5;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--ns-shadow);
}

.about-placeholder {
    width: 100%;
    height: 500px;
    background: var(--ns-light-gray);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ns-dark-gray);
    border: 2px dashed var(--ns-primary-green);
}

.about-placeholder svg {
    color: var(--ns-primary-green);
    margin-bottom: 1rem;
}

/* ==========================================================================
   SECTIONS PILIERS - NATURE SOLUTION
   ========================================================================== */

.pillars-section {
    padding: 6rem 0;
    background: var(--ns-light-gray);
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--ns-black);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--ns-dark-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.pillar-card {
    background: var(--ns-white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: var(--ns-shadow);
    transition: all 0.4s ease;
    text-align: center;
    border: 3px solid transparent;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ns-shadow-hover);
    border-color: var(--ns-primary-green);
}

.pillar-icon {
    width: 100px;
    height: 100px;
    background: var(--ns-primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--ns-white);
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    background: var(--ns-dark-green);
    transform: scale(1.1);
}

.pillar-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ns-black);
}

.pillar-description {
    color: var(--ns-dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.pillar-features {
    text-align: left;
}

.feature-item {
    padding: 0.5rem 0;
    color: var(--ns-dark-gray);
    position: relative;
    padding-left: 1.5rem;
}

.feature-item::before {
    content: '•';
    color: var(--ns-primary-green);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.2rem;
}

/* ==========================================================================
   PRODUITS ET TÉMOIGNAGES
   ========================================================================== */

.featured-products-section {
    padding: 6rem 0;
    background: var(--ns-white);
}

.testimonials-section {
    padding: 6rem 0;
    background: var(--ns-light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--ns-white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--ns-shadow);
    transition: all 0.3s ease;
    position: relative;
    border-left: 5px solid var(--ns-primary-green);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ns-shadow-hover);
}

.testimonial-quote {
    color: var(--ns-primary-green);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--ns-dark-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author-name {
    font-weight: 700;
    color: var(--ns-black);
    margin-bottom: 0.5rem;
}

.author-location {
    color: var(--ns-dark-gray);
    font-size: 0.9rem;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */

.final-cta-section {
    padding: 6rem 0;
    background: var(--ns-gradient-dark);
    color: var(--ns-white);
    text-align: center;
    position: relative;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--ns-white);
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--ns-light-gray);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.animate-in {
    opacity: 1 !important;
    transform: translate(0) !important;
}

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

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text .section-title {
        font-size: 2.2rem;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2.2rem;
    }
}

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

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

    .pillar-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .about-img,
    .about-placeholder {
        height: 300px;
    }
}

/* ==========================================================================
   UTILITAIRES
   ========================================================================== */

.text-center {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Delays pour animations */
.fade-in-up[data-delay="200"] { transition-delay: 0.2s; }
.fade-in-up[data-delay="300"] { transition-delay: 0.3s; }
.fade-in-up[data-delay="400"] { transition-delay: 0.4s; }
.fade-in-up[data-delay="500"] { transition-delay: 0.5s; }
.fade-in-up[data-delay="600"] { transition-delay: 0.6s; }
.fade-in-up[data-delay="700"] { transition-delay: 0.7s; }
.fade-in-up[data-delay="800"] { transition-delay: 0.8s; }

.fade-in-left[data-delay="200"] { transition-delay: 0.2s; }
.fade-in-left[data-delay="400"] { transition-delay: 0.4s; }
.fade-in-left[data-delay="600"] { transition-delay: 0.6s; }
.fade-in-left[data-delay="800"] { transition-delay: 0.8s; }

/* ==========================================================================
   PAGES SPÉCIFIQUES - NATURE SOLUTION
   ========================================================================== */

/* PAGE ABOUT */
.about-hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ns-gradient-dark);
    color: var(--ns-white);
    overflow: hidden;
}

.about-story-section {
    padding: 6rem 0;
    background: var(--ns-white);
}

.story-content p {
    font-size: 1.1rem;
    color: var(--ns-dark-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.story-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--ns-light-gray);
    border-radius: 15px;
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--ns-shadow);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--ns-primary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--ns-dark-gray);
    font-weight: 500;
}

.mission-section {
    padding: 6rem 0;
    background: var(--ns-light-gray);
}

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

.mission-card {
    background: var(--ns-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--ns-shadow);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ns-shadow-hover);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--ns-primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--ns-white);
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ns-black);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--ns-dark-gray);
    line-height: 1.6;
}

.team-section {
    padding: 6rem 0;
    background: var(--ns-white);
}

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

.team-member {
    background: var(--ns-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--ns-shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--ns-shadow-hover);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--ns-primary-green);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-placeholder {
    width: 100%;
    height: 100%;
    background: var(--ns-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ns-primary-green);
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ns-black);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--ns-primary-green);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--ns-dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* PAGE CONTACT */
.contact-hero-section {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ns-gradient-dark);
    color: var(--ns-white);
}

.contact-info-section {
    padding: 6rem 0;
    background: var(--ns-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-items {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--ns-light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--ns-shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--ns-primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ns-white);
    flex-shrink: 0;
}

.contact-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ns-black);
    margin-bottom: 0.5rem;
}

.contact-content a {
    color: var(--ns-primary-green);
    text-decoration: none;
    font-weight: 500;
}

.contact-content a:hover {
    color: var(--ns-dark-green);
}

.contact-form {
    background: var(--ns-light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--ns-shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ns-black);
    margin-bottom: 2rem;
}

.contact-form-default {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    font-weight: 500;
    color: var(--ns-black);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid transparent;
    background: var(--ns-white);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ns-primary-green);
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.1);
}

.social-links h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ns-black);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--ns-primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ns-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--ns-dark-green);
    transform: translateY(-3px);
}

.faq-section {
    padding: 6rem 0;
    background: var(--ns-light-gray);
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background: var(--ns-white);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--ns-shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--ns-light-gray);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ns-black);
    margin: 0;
}

.faq-icon {
    color: var(--ns-primary-green);
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--ns-dark-gray);
    line-height: 1.6;
}

/* PAGES PRIVACY & TERMS */
.privacy-hero-section,
.terms-hero-section {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ns-gradient-dark);
    color: var(--ns-white);
    text-align: center;
}

.last-updated {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.privacy-content-section,
.terms-content-section {
    padding: 6rem 0;
    background: var(--ns-white);
}

.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section,
.terms-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--ns-light-gray);
    border-radius: 15px;
    box-shadow: var(--ns-shadow);
}

.privacy-section h2,
.terms-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ns-black);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--ns-primary-green);
    padding-left: 1rem;
}

.privacy-subsection,
.terms-subsection {
    margin: 2rem 0;
}

.privacy-subsection h3,
.terms-subsection h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ns-dark-green);
    margin-bottom: 1rem;
}

.privacy-section p,
.terms-section p {
    color: var(--ns-dark-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.health-warning {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.health-warning p {
    color: #856404 !important;
    margin: 0;
}

.contact-info {
    background: var(--ns-light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

/* RESPONSIVE DESIGN PAGES */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .mission-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1rem;
    }

    .privacy-section,
    .terms-section {
        padding: 1.5rem;
    }
}

/* Grille 4 piliers */
  .pillars-grid.four-pillars {
      grid-template-columns: repeat(4, 1fr);
  }

  /* Couleurs spécifiques pour les nouveaux piliers */
  .gratitude-pillar {
      background: linear-gradient(135deg, #FF6B6B, #FFE66D);
  }

  .abundance-pillar {
      background: linear-gradient(135deg, #4ECDC4, #44A08D);
  }

  .love-pillar {
      background: linear-gradient(135deg, #FF6B9D, #FEC8D8);
  }

  .compassion-pillar {
      background: linear-gradient(135deg, #A8E6CF, #7FD8BE);
  }

  /* Responsive 4 piliers */
  @media (max-width: 1024px) {
      .pillars-grid.four-pillars {
          grid-template-columns: repeat(2, 1fr);
      }
  }

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

/* ==========================================================================
     SECTION FONDATRICE COACH LEMAN
     ========================================================================== */

  .founder-section {
      padding: 80px 0;
      background: #f8f9fa;
  }

  .founder-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
  }

  .founder-text {
      padding-right: 2rem;
  }

  .founder-header .section-title {
      color: var(--ns-black);
      margin-bottom: 1rem;
      font-size: 2.2rem;
      font-weight: 700;
  }

  .founder-subtitle {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 2rem;
  }

  .founder-name {
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--ns-primary-green);
  }

  .founder-title {
      font-size: 1rem;
      color: var(--ns-dark-gray);
      opacity: 0.8;
  }

  .founder-bio {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--ns-dark-gray);
      margin-bottom: 2rem;
  }

  .founder-messages {
      margin-bottom: 2rem;
  }

  .founder-messages h4 {
      color: var(--ns-black);
      margin-bottom: 1rem;
      font-weight: 600;
  }

  .message-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
      padding: 0.75rem;
      background: var(--ns-white);
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .message-icon {
      background: var(--ns-primary-green);
      color: var(--ns-white);
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: bold;
      flex-shrink: 0;
  }

  .founder-slogan {
      text-align: center;
  }

  .slogan-container {
      background: var(--ns-primary-green);
      color: var(--ns-white);
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(139, 195, 74, 0.3);
  }

  .slogan-text {
      display: block;
      font-size: 1.1rem;
      font-style: italic;
      margin-bottom: 0.5rem;
  }

  .slogan-author {
      font-weight: 600;
      opacity: 0.9;
  }

  .founder-img-container {
      width: 350px;
      height: 450px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      margin: 0 auto;
  }

  .founder-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .founder-placeholder {
      width: 350px;
      height: 450px;
      background: var(--ns-light-gray);
      border: 2px dashed var(--ns-primary-green);
      border-radius: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--ns-primary-green);
      margin: 0 auto;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .founder-content {
          grid-template-columns: 1fr;
          gap: 40px;
          text-align: center;
      }

      .founder-text {
          padding-right: 0;
          order: 2;
      }

      .founder-image {
          order: 1;
      }

      .founder-img-container,
      .founder-placeholder {
          width: 280px;
          height: 350px;
      }
  }
  
  /* ==========================================================================
     PRODUITS PAGE D'ACCUEIL - NATURE SOLUTION
     ========================================================================== */

  /* Conteneur produits page d'accueil */
  .products-showcase {
      margin: 3rem 0;
  }

  .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin: 2rem 0;
      list-style: none;
      padding: 0;
  }

  /* Cartes produits page d'accueil - même style que shop */
  .products-grid .product {
      background: var(--ns-white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(28, 28, 28, 0.1);
      transition: all 0.3s ease;
      padding: 0;
      border: 3px solid transparent;
      position: relative;
      display: block;
      text-decoration: none;
  }

  .products-grid .product:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(28, 28, 28, 0.15);
      border-color: var(--ns-primary-green);
      text-decoration: none;
  }

  /* Liens produits */
  .products-grid .product a,
  .products-grid .product .woocommerce-loop-product__link {
      display: block;
      text-decoration: none;
      color: inherit;
  }

  .products-grid .product a:hover {
      text-decoration: none;
  }

  /* Images produits page d'accueil */
  .products-grid .product img,
  .products-grid .product .attachment-woocommerce_thumbnail {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 0;
      transition: all 0.3s ease;
      display: block;
  }

  .products-grid .product:hover img,
  .products-grid .product:hover .attachment-woocommerce_thumbnail {
      transform: scale(1.05);
  }

  /* Contenu produit page d'accueil */
  .products-grid .product .woocommerce-loop-product__title,
  .products-grid .product h2 {
      font-size: 1.2rem !important;
      font-weight: 600 !important;
      color: var(--ns-black) !important;
      margin: 1rem !important;
      line-height: 1.4 !important;
      font-family: 'Poppins', sans-serif !important;
  }

  .products-grid .product .woocommerce-loop-product__title:hover,
  .products-grid .product h2:hover {
      color: var(--ns-primary-green) !important;
  }

  /* Prix produits page d'accueil */
  .products-grid .product .price {
      font-size: 1.3rem !important;
      font-weight: 700 !important;
      color: var(--ns-primary-green) !important;
      margin: 0 1rem 1rem !important;
      font-family: 'Poppins', sans-serif !important;
  }

  .products-grid .product .price .amount {
      color: var(--ns-primary-green) !important;
      font-weight: 700 !important;
  }

  .products-grid .product .price del {
      color: var(--ns-dark-gray) !important;
      font-weight: 400 !important;
      margin-right: 0.5rem !important;
  }

  .products-grid .product .price ins {
      text-decoration: none !important;
      color: var(--ns-primary-green) !important;
      font-weight: 700 !important;
  }

  /* Boutons ajouter au panier page d'accueil */
  .products-grid .product .button,
  .products-grid .product .add_to_cart_button {
      background: var(--ns-primary-green) !important;
      color: var(--ns-white) !important;
      border: none !important;
      padding: 1rem 1.5rem !important;
      border-radius: 50px !important;
      font-weight: 600 !important;
      text-transform: uppercase !important;
      letter-spacing: 0.5px !important;
      transition: all 0.3s ease !important;
      margin: 1rem !important;
      display: inline-block !important;
      text-align: center !important;
      font-size: 0.9rem !important;
      font-family: 'Poppins', sans-serif !important;
      text-decoration: none !important;
      cursor: pointer !important;
  }

  .products-grid .product .button:hover,
  .products-grid .product .add_to_cart_button:hover {
      background: var(--ns-dark-green) !important;
      color: var(--ns-white) !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3) !important;
      text-decoration: none !important;
  }

  /* Badge promo ou nouveau */
  .products-grid .product .onsale {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--ns-primary-green);
      color: var(--ns-white);
      padding: 8px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      z-index: 2;
      text-transform: uppercase;
  }

  /* Étoiles notation */
  .products-grid .product .star-rating {
      margin: 0.5rem 1rem;
      color: #ffd700;
  }

  /* Responsive produits accueil */
  @media (max-width: 1024px) {
      .products-grid {
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 1.5rem;
      }
  }

  @media (max-width: 768px) {
      .products-grid {
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 1.5rem;
      }

      .products-grid .product img,
      .products-grid .product .attachment-woocommerce_thumbnail {
          height: 200px;
      }
  }

  @media (max-width: 480px) {
      .products-grid {
          grid-template-columns: 1fr;
          gap: 1rem;
      }

      .products-grid .product {
          border-radius: 15px;
      }

      .products-grid .product img,
      .products-grid .product .attachment-woocommerce_thumbnail {
          height: 180px;
      }

      .products-grid .product .woocommerce-loop-product__title,
      .products-grid .product h2 {
          font-size: 1.1rem !important;
          margin: 0.75rem !important;
      }

      .products-grid .product .price {
          font-size: 1.2rem !important;
          margin: 0 0.75rem 0.75rem !important;
      }

      .products-grid .product .button,
      .products-grid .product .add_to_cart_button {
          padding: 0.75rem 1.25rem !important;
          margin: 0.75rem !important;
          font-size: 0.85rem !important;
      }
  }

