/* Variables de couleurs */
:root {
    --primary: #5a6b7a;
    --secondary: #f2b43a;
    --accent: #9aa5b0;
    --dark-neutral: #989ca4;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #2c3e50;
    --text-gray: #6c757d;
    --gradient-start: #f5f7fa;
    --gradient-end: #fafbfc;
    
    /* Polices */
    --font-primary: 'Merriweather', serif;
    --font-secondary: 'Open Sans', sans-serif;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: linear-gradient(135deg, #fefefe 0%, #fafafa 50%, #fefefe 100%);
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    height: 100%;
    position: relative;
}

html::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Dégradé beige/jaune sur le côté droit */
        linear-gradient(135deg, transparent 0%, rgba(242, 180, 58, 0.08) 60%, rgba(242, 180, 58, 0.12) 100%),
        /* Lignes subtiles plus visibles */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(242, 180, 58, 0.03) 40px,
            rgba(242, 180, 58, 0.03) 42px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(168, 181, 194, 0.03) 40px,
            rgba(168, 181, 194, 0.03) 42px
        ),
        /* Formes géométriques plus visibles */
        radial-gradient(ellipse 800px 600px at 80% 20%, rgba(242, 180, 58, 0.1) 0%, rgba(242, 180, 58, 0.05) 50%, transparent 80%),
        radial-gradient(ellipse 600px 500px at 20% 80%, rgba(168, 181, 194, 0.08) 0%, rgba(168, 181, 194, 0.04) 50%, transparent 75%),
        radial-gradient(ellipse 700px 550px at 50% 50%, rgba(242, 180, 58, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) translateX(20px) rotate(2deg);
    }
    66% {
        transform: translateY(20px) translateX(-25px) rotate(-2deg);
    }
}

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

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #fefefe 0%, #fafafa 50%, #fefefe 100%);
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    min-height: 100%;
    position: relative;
    z-index: 1;
}

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

/* Header */
.header {
    background-color: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 40px 0 40px;
    pointer-events: none;
    margin: 0;
    border: none;
    outline: none;
}

.header * {
    pointer-events: auto;
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 34px;
    padding: 0;
    width: 100%;
    border: 1px solid #e0e0e071;
    outline: none;
    box-shadow: none;
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    gap: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-container:hover {
    opacity: 0.8;
}

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

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.2px;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-language-item,
.nav-cta-item {
    display: none;
}

.nav-language-item .language-selector {
    border: none;
    background: transparent;
    padding: 12px 0;
    width: 100%;
    justify-content: flex-start;
    border-bottom: 1px solid #f0f0f0;
}

.nav-cta-item {
    width: 100%;
    padding-top: 10px;
}

.cta-button-nav-mobile {
    background-color: var(--secondary);
    color: var(--text-dark);
    border: none;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    letter-spacing: 0.3px;
    font-family: var(--font-secondary);
}

.cta-button-nav-mobile:hover {
    background-color: #e8a832;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 180, 58, 0.35);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.language-selector:hover {
    border-color: var(--primary);
    background-color: var(--light-gray);
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
    flex-shrink: 0;
}

.language-text {
    font-weight: 500;
    color: var(--text-dark);
}

.chevron {
    font-size: 0.7rem;
    color: var(--text-dark);
    margin-top: 2px;
    opacity: 0.8;
}

.cta-button-nav {
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    padding: 18px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.cta-button-nav:hover {
    background-color: #e8a832;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 180, 58, 0.35);
}

.arrow-icon {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Menu Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    background: 
        /* Dégradé beige/jaune plus visible */
        linear-gradient(135deg, #fefefe 0%, rgba(255, 250, 240, 0.9) 50%, rgba(255, 248, 235, 0.7) 100%),
        radial-gradient(ellipse 600px 450px at 90% 90%, rgba(242, 180, 58, 0.2) 0%, rgba(242, 180, 58, 0.1) 50%, transparent 80%),
        radial-gradient(ellipse 500px 400px at 85% 85%, rgba(168, 181, 194, 0.15) 0%, rgba(168, 181, 194, 0.08) 45%, transparent 75%),
        /* Structure de fond */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(242, 180, 58, 0.025) 100px,
            rgba(242, 180, 58, 0.025) 102px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 100px,
            rgba(168, 181, 194, 0.02) 100px,
            rgba(168, 181, 194, 0.02) 102px
        );
    color: var(--text-dark);
    padding: 80px 40px 200px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding-top: 140px;
    z-index: 0;
    border: none;
    outline: none;
    min-height: auto;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    /* 4 formes jaunes fondues (2 à gauche, 2 à droite) */
    background:
        /* Gauche */
        radial-gradient(ellipse 150px 120px at 18% 24%, rgba(242, 180, 58, 0.42) 0%, rgba(242, 180, 58, 0.26) 45%, rgba(242, 180, 58, 0.10) 62%, transparent 78%),
        radial-gradient(ellipse 140px 110px at 26% 76%, rgba(242, 180, 58, 0.36) 0%, rgba(242, 180, 58, 0.22) 46%, rgba(242, 180, 58, 0.09) 64%, transparent 82%),
        /* Droite */
        radial-gradient(ellipse 155px 125px at 82% 30%, rgba(242, 180, 58, 0.40) 0%, rgba(242, 180, 58, 0.25) 45%, rgba(242, 180, 58, 0.10) 62%, transparent 80%),
        radial-gradient(ellipse 145px 115px at 88% 72%, rgba(242, 180, 58, 0.34) 0%, rgba(242, 180, 58, 0.20) 48%, rgba(242, 180, 58, 0.08) 66%, transparent 84%);
    filter: blur(10px);
    opacity: 0.95;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.word-rotator {
    position: relative;
    display: inline-block;
    min-width: 200px;
}

.word-rotator .word {
    position: absolute;
    left: 0;
    opacity: 0;
    color: var(--secondary);
    font-size: 1.2em;
    font-weight: 800;
    transition: opacity 0.5s ease, transform 0.3s ease;
    transform: translateY(10px);
    white-space: nowrap;
}

.word-rotator .word.active {
    position: relative;
    opacity: 1;
    color: var(--secondary);
    font-size: 1.2em;
    font-weight: 800;
    transform: translateY(0);
}

.word-rotator .word::first-letter {
    font-size: 1.3em;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 45px;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary, .btn-primary-large {
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    padding: 18px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    font-family: var(--font-secondary);
}

.btn-primary:hover, .btn-primary-large:hover {
    background-color: #e8a832;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 180, 58, 0.4);
}

.btn-secondary, .btn-secondary-large {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 16px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    font-family: var(--font-secondary);
}

.btn-secondary:hover, .btn-secondary-large:hover {
    background-color: #4a5a6a;
    border-color: #4a5a6a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 107, 122, 0.4);
}

.btn-primary-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-secondary-large {
    padding: 16px 38px;
    font-size: 1.1rem;
}

/* Brand Story Section */
.brand-story {
    padding: 80px 40px;
    background-color: var(--light-gray);
    margin-top: 0;
}

.brand-logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.brand-logo-img {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
}

.brand-title-section {
    text-align: center;
    margin-bottom: 60px;
}

.brand-name {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.brand-tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-gray);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Bien-être Masculin Section */
.bien-etre-masculin-section {
    padding: 20px 40px 80px 40px;
    background: transparent;
}

.bien-etre-container-wrapper {
    max-width: 1400px;
    margin: -150px auto 0 auto;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.05), 0 0 50px rgba(242, 180, 58, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
    animation: scaleIn 0.8s ease-out;
}

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

.bien-etre-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInLeft 0.8s ease-out;
}

.btn-decouvrir {
    background-color: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: var(--font-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-decouvrir:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 107, 122, 0.3);
}

.bien-etre-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    line-height: 1.2;
}

.bien-etre-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.btn-contacter-section {
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-secondary);
    margin-top: 10px;
    box-shadow: 0 6px 20px rgba(242, 180, 58, 0.35);
    background-size: 200% 200%;
    background-image: linear-gradient(135deg, #f2b43a 0%, #d99b24 100%);
    background-position: 0% 50%;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.btn-contacter-section:hover {
    background-position: 100% 50%;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(242, 180, 58, 0.45);
}

.bien-etre-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

.bien-etre-card {
    background: linear-gradient(135deg, #fffef8 0%, #fffbf0 100%);
    border: 2px solid rgba(242, 180, 58, 0.3);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(242, 180, 58, 0.15), 0 2px 8px rgba(90, 107, 122, 0.1);
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.bien-etre-card:first-child {
    animation-delay: 0.2s;
}

.bien-etre-card:last-child {
    animation-delay: 0.4s;
}

.bien-etre-card:first-child {
    transform: rotate(-2deg);
    z-index: 1;
    border-color: rgba(242, 180, 58, 0.4);
    background: linear-gradient(135deg, #fffef8 0%, #fff9e6 100%);
}

.bien-etre-card:last-child {
    transform: rotate(2deg);
    margin-top: -40px;
    margin-left: 20px;
    z-index: 2;
    border-color: rgba(90, 107, 122, 0.3);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.bien-etre-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 10px 30px rgba(242, 180, 58, 0.25), 0 4px 12px rgba(90, 107, 122, 0.15);
    border-color: var(--secondary);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary) 0%, #e0a832 100%);
    color: var(--text-dark);
    padding: 5px 14px;
    border-radius: 14px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    box-shadow: 0 2px 8px rgba(242, 180, 58, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bien-être Section */
.bien-etre-stats-section {
    padding: 80px 40px;
    background: 
        linear-gradient(135deg, #ffffff 0%, #fafafa 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(242, 180, 58, 0.02) 50px,
            rgba(242, 180, 58, 0.02) 52px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(168, 181, 194, 0.02) 50px,
            rgba(168, 181, 194, 0.02) 52px
        );
}

.stats-grid-bien-etre {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.stat-card-bien-etre {
    background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
    border: 2px solid rgba(242, 180, 58, 0.25);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(242, 180, 58, 0.12), 0 3px 10px rgba(90, 107, 122, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.6s ease-out forwards;
}

.stat-card-bien-etre:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card-bien-etre:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card-bien-etre:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card-bien-etre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card-bien-etre:hover::before {
    transform: scaleX(1);
}

.stat-card-bien-etre:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(242, 180, 58, 0.25), 0 5px 15px rgba(90, 107, 122, 0.15);
    border-color: var(--secondary);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
}

.stat-icon-wrapper {
    margin-bottom: 15px;
}

.stat-icon {
    font-size: 2.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(242, 180, 58, 0.3));
    transition: transform 0.3s ease;
}

.stat-card-bien-etre:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number-bien-etre {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
    letter-spacing: -1px;
    animation: pulse 2s ease-in-out infinite;
}

.stat-label-bien-etre {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
}

.section-main-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Produits Section */
.produits-section {
    padding: 80px 40px;
    background: 
        linear-gradient(45deg, rgba(242, 180, 58, 0.06) 0%, transparent 30%),
        linear-gradient(315deg, rgba(168, 181, 194, 0.05) 0%, transparent 25%),
        radial-gradient(ellipse 750px 550px at 70% 40%, rgba(242, 180, 58, 0.12) 0%, transparent 58%),
        radial-gradient(ellipse 650px 450px at 30% 80%, rgba(154, 165, 176, 0.10) 0%, transparent 52%),
        /* Structure de fond */
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 80px,
            rgba(242, 180, 58, 0.02) 80px,
            rgba(242, 180, 58, 0.02) 82px
        );
    background-color: #ffffff;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Style Shopify - 4 produits par ligne */
.produits-grid-shopify {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 50px auto;
}

.produit-card-shopify {
    background-color: var(--white);
    border: 2px solid rgba(242, 180, 58, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.produit-card-shopify:nth-child(1) {
    animation-delay: 0.1s;
}

.produit-card-shopify:nth-child(2) {
    animation-delay: 0.2s;
}

.produit-card-shopify:nth-child(3) {
    animation-delay: 0.3s;
}

.produit-card-shopify:nth-child(4) {
    animation-delay: 0.4s;
}

.produit-card-shopify:hover {
    border-color: var(--secondary);
    box-shadow: 0 12px 35px rgba(242, 180, 58, 0.25), 0 4px 15px rgba(90, 107, 122, 0.15);
    transform: translateY(-8px) scale(1.02);
}

.produit-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--secondary) 0%, #e0a832 100%);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(242, 180, 58, 0.4);
}

.produit-badge-new {
    background: linear-gradient(135deg, var(--primary) 0%, #4a5a6a 100%);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(90, 107, 122, 0.4);
}

.produit-badge-best {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.4);
}

.produit-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #fffef8 0%, #fffbf0 100%);
    position: relative;
}

.produit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.produit-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 180, 58, 0.08) 0%, rgba(90, 107, 122, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, background 0.4s ease;
}

.produit-card-shopify:hover .produit-image-placeholder {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(242, 180, 58, 0.15) 0%, rgba(90, 107, 122, 0.1) 100%);
}

.produit-card-shopify:hover .produit-image {
    transform: scale(1.06);
    filter: saturate(1.05);
}

.produit-icon {
    font-size: 4.5rem;
    filter: drop-shadow(0 4px 8px rgba(242, 180, 58, 0.3));
    transition: transform 0.4s ease;
}

.produit-card-shopify:hover .produit-icon {
    transform: scale(1.1) rotate(5deg);
}

.produit-info {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--white);
}

.produit-title-shopify {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 2.6em;
}

.produit-description-shopify {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.5;
    min-height: 2.25em;
}

.produit-price-shopify {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    font-family: var(--font-secondary);
    letter-spacing: -0.5px;
}

.produit-buttons {
    margin-top: auto;
}

.btn-acheter {
    background: linear-gradient(135deg, var(--secondary) 0%, #e0a832 100%);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 0.3px;
    font-family: var(--font-secondary);
    box-shadow: 0 6px 20px rgba(242, 180, 58, 0.35);
    text-transform: none;
    background-size: 200% 200%;
    background-position: 0% 50%;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.btn-acheter:hover {
    background-position: 100% 50%;
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(242, 180, 58, 0.45);
}

.produits-voir-plus {
    text-align: center;
    margin-top: 40px;
}

.btn-voir-plus {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 12px 30px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-voir-plus:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 107, 122, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 80px 40px;
    background: 
        linear-gradient(135deg, #fafafa 0%, rgba(255, 250, 240, 0.5) 50%, #fafafa 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(242, 180, 58, 0.015) 60px,
            rgba(242, 180, 58, 0.015) 62px
        );
    color: var(--text-dark);
}

.stats-section .section-main-title {
    color: var(--text-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* CTA Section */
.cta-section {
    padding: 100px 40px;
    background: 
        linear-gradient(135deg, #ffffff 0%, #fafafa 100%),
        radial-gradient(ellipse 600px 400px at 50% 50%, rgba(242, 180, 58, 0.05) 0%, transparent 70%);
    text-align: center;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons button {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Contact Section */
.contact-section {
    padding: 100px 40px;
    background: 
        linear-gradient(135deg, #ffffff 0%, #fafafa 100%),
        radial-gradient(ellipse 600px 400px at 50% 50%, rgba(242, 180, 58, 0.05) 0%, transparent 70%);
    position: relative;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, rgba(242, 180, 58, 0.8) 100%);
    border-radius: 12px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-link {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 0.95rem;
}

.social-link:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive pour produits Shopify */
@media (max-width: 1200px) {
    .produits-grid-shopify {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 600px) {
    .produits-grid-shopify {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
/* Responsive - Tablette */
@media (max-width: 1200px) {
    .produits-grid-shopify {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .bien-etre-content {
        gap: 40px;
    }

    .stats-grid-bien-etre {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .header {
        /* Fixe sur mobile */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 12px 20px;
    }

    .nav-container {
        padding: 12px 20px;
        position: relative;
    }

    .menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
        margin-right: 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        gap: 25px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transform: translateX(110%);
        transition: transform 0.3s ease;
        will-change: transform;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

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

    .nav-menu a {
        font-size: 1.1rem;
        padding: 12px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .header-right {
        order: 3;
        margin-left: 15px;
    }

    .menu-toggle { margin-right: 0; }

    .logo-container {
        order: 1;
    }

    .cta-button-nav {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .nav-language-item,
    .nav-cta-item {
        display: block;
        width: 100%;
    }

    .header-right .cta-button-nav {
        display: none;
    }

    .header-right .language-selector {
        display: none;
    }

    .bien-etre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bien-etre-right {
        order: -1;
    }

    .produits-grid-shopify {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-grid-bien-etre {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .header {
        /* Fixe sur mobile */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 10px 15px;
    }

    .header-wrapper {
        border-radius: 20px;
    }

    .nav-container {
        padding: 10px 15px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo {
        height: 35px;
    }

    .header-right {
        gap: 10px;
    }

    .header-right .language-selector {
        display: none;
    }

    .cta-button-nav {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .cta-button-nav span {
        display: none;
    }

    .language-selector .chevron {
        display: none;
    }

    .hero {
        /* Laisser de la place pour le header fixed */
        padding: 110px 20px 120px 20px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        text-align: center;
        margin-bottom: 14px;
    }

    /* Mobile: simplifier le rotator pour éviter les décalages/espaces */
    .word-rotator {
        display: inline;
        min-width: 0;
    }
    .word-rotator .word {
        position: static;
        display: none;
        transform: none;
    }
    .word-rotator .word.active {
        position: static;
        display: inline;
        transform: none;
    }

    .hero-subtitle {
        font-size: 1.08rem;
        padding: 0 10px;
        margin-bottom: 34px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .bien-etre-masculin-section {
        padding: 20px 15px 60px 15px;
    }

    .bien-etre-container-wrapper {
        padding: 40px 25px;
        margin: -100px auto 0 auto;
    }

    .bien-etre-title {
        font-size: 1.8rem;
    }

    .bien-etre-text {
        font-size: 0.95rem;
    }

    .produits-section {
        padding: 60px 20px;
    }

    .section-main-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .produits-grid-shopify {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .produit-card-shopify {
        max-width: 400px;
        margin: 0 auto;
    }

    .bien-etre-stats-section {
        padding: 60px 20px;
    }

    .stats-grid-bien-etre {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card-bien-etre {
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-section {
        padding: 60px 20px;
    }

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

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-item {
        padding: 30px 20px;
    }

    .contact-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

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

    .contact-link {
        font-size: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
        text-align: center;
        line-height: 1.1;
    }

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

    .section-main-title {
        font-size: 1.5rem;
    }

    .bien-etre-title {
        font-size: 1.5rem;
    }

    .stat-number-bien-etre {
        font-size: 2.2rem;
    }

    .produit-price-shopify {
        font-size: 1.4rem;
    }

    .nav-menu {
        width: 100%;
        right: 0;
        transform: translateX(110%);
    }

    .nav-menu.active {
        transform: translateX(0);
    }
}

