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

:root {
    --rouge-profond: #B22222;
    --dore: #FFD700;
    --vert-fonce: #013220;
    --blanc-pur: #FFFFFF;
    --gris-clair: #f8f9fa;
    --text-dark: #333333;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    padding-top: 90px;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Noto Serif SC', serif;
    font-weight: 600;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    text-align: center;
    color: var(--vert-fonce);
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--blanc-pur);
    box-shadow: var(--shadow);
    z-index: 9999;
    transition: var(--transition);
    overflow: visible;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.logo h1 {
    color: var(--rouge-profond);
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--rouge-profond);
}

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

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

/* Language Selector */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid var(--rouge-profond);
    border-radius: 25px;
    color: var(--rouge-profond);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.language-btn:hover {
    background: var(--rouge-profond);
    color: var(--blanc-pur);
}

.language-btn svg {
    transition: transform 0.3s ease;
}

.language-selector.active .language-btn svg {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--blanc-pur);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.language-option:hover {
    background: var(--gris-clair);
    color: var(--rouge-profond);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 10000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--rouge-profond);
    margin: 3px 0;
    transition: var(--transition);
}

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

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

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

/* Hero Section */
.hero {
    height: calc(100vh - 90px);
    margin-top: -90px;
    padding-top: 90px;
    background: linear-gradient(135deg, var(--rouge-profond) 0%, var(--vert-fonce) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../hero.jpg') center/cover;
    opacity: 0.4;
    z-index: 1;
    animation: heroZoom 8s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--blanc-pur);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-logo {
    width: 300px;
    max-width: 90%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    animation: slideInUp 1s ease 0.5s both;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    animation: fadeInUp 1s ease 1.5s both;
    transition: opacity 0.5s ease;
}

.scroll-text {
    color: var(--blanc-pur);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dore);
    border: 2px solid var(--dore);
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow {
    background: var(--dore);
    color: var(--text-dark);
    transform: translateY(5px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--rouge-profond);
    color: var(--blanc-pur);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(178, 34, 34, 0.3);
}

.btn-secondary {
    background: var(--dore);
    color: var(--vert-fonce);
    box-shadow: var(--shadow);
    padding: 1.25rem 2.5rem;
}

.btn-secondary:hover {
    background: #E6C200;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 5rem 0;
}

.promotions {
    background: var(--gris-clair);
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.promo-card {
    background: linear-gradient(135deg, var(--blanc-pur) 0%, #fafbfc 100%);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.05) 0%,
        rgba(178, 34, 34, 0.05) 50%,
        rgba(1, 50, 32, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.promo-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--dore);
    box-shadow: 0 20px 60px rgba(178, 34, 34, 0.15);
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-header {
    position: relative;
    padding: 1.5rem 1.5rem 0;
    z-index: 2;
}

.promo-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.promo-icon {
    font-size: 3.5rem;
    position: relative;
    z-index: 3;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.promo-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--dore) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 2;
}

.promo-corner-decor {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, var(--dore), var(--rouge-profond));
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
    opacity: 0.7;
}

.promo-content {
    position: relative;
    padding: 0 2rem 2rem;
    z-index: 2;
}

.promo-card h3 {
    color: var(--rouge-profond);
    margin-bottom: 1rem;
    font-family: 'Noto Serif SC', serif;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.promo-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--rouge-profond), var(--dore));
    margin: 1rem auto;
    border-radius: 2px;
    position: relative;
}

.promo-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--dore);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.promo-card p {
    color: var(--vert-fonce);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--rouge-profond), #8B0000);
    color: var(--blanc-pur);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(178, 34, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.promo-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.promo-card:hover .promo-badge::before {
    left: 100%;
}

.promo-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background-image:
        radial-gradient(circle at 20% 20%, var(--dore) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, var(--rouge-profond) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.1;
}

/* Wallet-style promo cards */
.promo-card-wallet {
    background: linear-gradient(135deg, var(--blanc-pur) 0%, #f9fafb 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    position: relative;
    overflow: hidden;
}

.promo-card-wallet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--rouge-profond) 0%, var(--dore) 50%, var(--vert-fonce) 100%);
}

.promo-card-wallet:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(178, 34, 34, 0.2);
}

.wallet-ribbon {
    background: var(--rouge-profond);
    color: var(--blanc-pur);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.4rem 1.5rem;
    margin: -2rem -1.5rem 1.25rem;
    text-transform: uppercase;
}

.wallet-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--rouge-profond);
    font-family: 'Noto Serif SC', serif;
    margin: 0.75rem 0;
    text-shadow: 2px 2px 0 rgba(255, 215, 0, 0.2);
}

.wallet-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--vert-fonce);
    margin-bottom: 0.5rem;
    font-family: 'Noto Serif SC', serif;
}

.wallet-description {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.wallet-conditions {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px dashed var(--dore);
    margin-top: 1rem;
    z-index: 1;
}

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

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--blanc-pur);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--vert-fonce);
    margin-bottom: 0.5rem;
}

/* Carousel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll-carousel 40s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-slide {
    flex-shrink: 0;
    width: 500px;
    height: 375px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.carousel-slide:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-carousel-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Carousel reverse (scrolls left to right) */
.carousel-reverse {
    margin-top: 2rem;
}

.carousel-reverse .carousel-track {
    animation: scroll-carousel-reverse 40s linear infinite;
}

/* Coups de coeur Section */
.coups-de-coeur {
    background: var(--gris-clair);
    padding: 5rem 0;
}

.section-decoration-top {
    text-align: center;
    margin-bottom: 1.5rem;
    animation: rotate 20s linear infinite;
}

.section-decoration-bottom {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

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

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: -1rem auto 3rem;
    line-height: 1.8;
}

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

.coeur-card {
    background: var(--blanc-pur);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(178, 34, 34, 0.1);
    position: relative;
    cursor: pointer;
}

.coeur-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.coeur-card:hover::before {
    left: 100%;
}

.coeur-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 25px 60px rgba(178, 34, 34, 0.2);
    border-color: var(--dore);
}

.coeur-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.coeur-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.1) 0%, rgba(1, 50, 32, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.coeur-card:hover .coeur-image::after {
    opacity: 1;
}

.coeur-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.coeur-card:hover .coeur-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.coeur-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--rouge-profond);
    color: var(--blanc-pur);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
    transition: all 0.4s ease;
    z-index: 2;
}

.coeur-card:hover .coeur-badge {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(178, 34, 34, 0.5);
}

.coeur-info {
    padding: 2rem 1.75rem;
}

.coeur-info h3 {
    font-size: 1.5rem;
    color: var(--vert-fonce);
    margin-bottom: 1rem;
    font-family: 'Noto Serif SC', serif;
    position: relative;
    padding-bottom: 0.75rem;
}

.coeur-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--dore) 0%, transparent 100%);
    transition: width 0.4s ease;
}

.coeur-card:hover .coeur-info h3::after {
    width: 80px;
}

.coeur-info p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    transition: color 0.3s ease;
}

.coeur-card:hover .coeur-info p {
    color: #333;
}

/* Animation staggered pour coeur cards */
.coeur-card:nth-child(1) {
    animation-delay: 0.1s;
}

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

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

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

/* Blog Section */
.blog-section {
    background: var(--blanc-pur);
    padding: 5rem 0;
}

.blog-carousel-wrapper {
    position: relative;
    margin: 3rem 0;
    padding: 0 60px;
}

.blog-carousel {
    overflow: hidden;
    border-radius: 20px;
}

.blog-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: var(--blanc-pur);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(178, 34, 34, 0.15);
}

.blog-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--blanc-pur);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: var(--vert-fonce);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.blog-nav:hover {
    background: var(--vert-fonce);
    color: var(--blanc-pur);
    transform: translateY(-50%) scale(1.1);
}

.blog-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.blog-nav:disabled:hover {
    background: var(--blanc-pur);
    color: var(--vert-fonce);
    transform: translateY(-50%) scale(1);
}

.blog-nav-prev {
    left: 0;
}

.blog-nav-next {
    right: 0;
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--rouge-profond);
    color: var(--blanc-pur);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: var(--vert-fonce);
    margin-bottom: 1rem;
    font-family: 'Noto Serif SC', serif;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-date {
    color: #999;
    font-size: 0.85rem;
}

.blog-link {
    color: var(--rouge-profond);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.blog-link:hover {
    color: var(--vert-fonce);
    transform: translateX(5px);
}

.blog-cta-button {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--vert-fonce) 0%, var(--rouge-profond) 100%);
    color: var(--blanc-pur);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    color: var(--dore);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: 'Noto Serif SC', serif;
}

.footer-section h4 {
    color: var(--dore);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.85;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--blanc-pur);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--dore);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dore);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--dore);
    color: var(--text-dark);
    transform: translateY(-3px);
    border-color: var(--dore);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--dore) 50%, transparent 100%);
    margin: 2rem 0;
    opacity: 0.3;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.5rem;
}

.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
    opacity: 0.8;
}

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

.footer-bottom-center {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal-link {
    color: var(--blanc-pur);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-legal-link:hover {
    color: var(--dore);
}

.footer-separator {
    opacity: 0.5;
}

.odyssey-link {
    color: var(--dore);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.odyssey-link:hover {
    color: var(--blanc-pur);
    text-decoration: underline;
}

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
body.loaded {
    opacity: 1;
}

body {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Enhanced scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gris-clair);
}

::-webkit-scrollbar-thumb {
    background: var(--rouge-profond);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8B0000;
}

/* Navbar scroll effect */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Enhanced animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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 heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero enhanced animations */
.hero-content {
    animation: slideInUp 1s ease 0.5s both;
}

.hero-title {
    animation: slideInUp 1s ease 0.3s both;
}

.hero-subtitle {
    animation: slideInUp 1s ease 0.7s both;
}

/* Staggered animations for grids */
.promo-card:nth-child(1) { animation-delay: 0.1s; }
.promo-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced hover effects */
.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
    border-radius: 15px;
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-card {
    position: relative;
    overflow: hidden;
}

/* Chinese decorative elements */
.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--dore) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 2;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(178, 34, 34, 0.1) 0%, transparent 50%);
}

/* Enhanced typography with Chinese inspiration */
.logo {
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--dore);
    opacity: 0.8;
}

/* Section dividers */
section:not(:last-child)::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--rouge-profond), var(--dore));
    margin: 2rem auto 0;
    border-radius: 2px;
}

/* Contact info styling */
.contact-info {
    background: var(--gris-clair);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--rouge-profond);
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Blog CTA section */
.blog-cta {
    background: var(--gris-clair);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid var(--dore);
}

.blog-cta h2 {
    color: var(--vert-fonce);
    margin-bottom: 1rem;
}

.culture-content .btn-primary {
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
}

/* Blog read more functionality */
.article-excerpt-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.article-excerpt-more.expanded {
    max-height: 2000px;
    transition: max-height 0.8s ease-in;
}

.read-more-btn {
    background: var(--vert-fonce);
    color: var(--blanc-pur);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 1rem 0;
    transition: all 0.3s ease;
    float: right;
    clear: both;
}

.read-more-btn:hover {
    background: var(--rouge-profond);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(178, 34, 34, 0.3);
}

/* Article styling enhancements */
.article-content {
    overflow: auto;
}

.article-content::after {
    content: "";
    display: table;
    clear: both;
}

.article-content h4 {
    color: var(--vert-fonce);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
}

.article-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article-content ol li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hero {
        height: calc(100vh - 70px);
        margin-top: -70px;
        padding-top: 70px;
    }

    .page-header {
        margin-top: -70px;
        padding-top: calc(8rem + 70px);
    }

    .logo-img {
        height: 55px;
        max-width: 180px;
    }

    .nav-right {
        gap: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .language-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background-color: var(--blanc-pur);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
        z-index: 9998;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Blog carousel responsive tablet */
    .blog-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .blog-carousel-wrapper {
        padding: 0 50px;
    }

    .blog-nav {
        width: 45px;
        height: 45px;
    }

    /* Coeur grid tablet */
    .coeur-grid {
        gap: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Promo cards responsive */
    .promo-card {
        margin: 0 1rem;
    }

    .promo-icon {
        font-size: 3rem;
    }

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

    .promo-content {
        padding: 0 1.5rem 1.5rem;
    }

    .promo-corner-decor {
        width: 25px;
        height: 25px;
    }

    .hero-logo {
        width: 220px;
    }

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

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

    .scroll-indicator {
        bottom: 2rem;
    }

    .scroll-text {
        font-size: 0.8rem;
    }

    .scroll-arrow {
        width: 35px;
        height: 35px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .blog-cta {
        padding: 2rem 1rem;
    }

    /* Map section tablet */
    .map-placeholder {
        height: 400px;
    }

    .map-placeholder-content {
        padding: 2rem;
    }

    .map-placeholder-content h3 {
        font-size: 1.5rem;
    }

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

    .map-locations {
        flex-direction: column;
        gap: 1rem;
    }

    .map-location-item {
        min-width: auto;
        width: 100%;
    }

    /* Carousel responsive */
    .carousel-slide {
        width: 350px;
        height: 260px;
    }

    .carousel-track {
        gap: 1rem;
    }

    .carousel-reverse {
        margin-top: 1.5rem;
    }

    /* Featured products section full width on tablet */
    .featured-products .container {
        max-width: 100%;
        padding: 0;
    }

    .featured-products h2 {
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }

    .hero {
        height: calc(100vh - 60px);
        margin-top: -60px;
        padding-top: 60px;
    }

    .page-header {
        margin-top: -60px;
        padding-top: calc(6rem + 60px);
    }

    .logo-img {
        height: 45px;
        max-width: 150px;
    }

    .hero-logo {
        width: 180px;
        margin-bottom: 2rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
    }

    .scroll-text {
        font-size: 0.75rem;
    }

    .scroll-arrow {
        width: 32px;
        height: 32px;
    }

    .scroll-arrow svg {
        width: 24px;
        height: 24px;
    }

    .container {
        padding: 0 10px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-center {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-separator {
        display: none;
    }

    .hero {
        padding: 0 1rem;
    }

    .promo-card,
    .product-card,
    .store-card {
        margin: 0 0.5rem;
    }

    /* Promo cards mobile */
    .promo-card {
        margin: 0 0.5rem 2rem;
    }

    .promo-icon {
        font-size: 2.5rem;
    }

    .promo-card h3 {
        font-size: 1.1rem;
    }

    .promo-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    /* Carousel mobile */
    .carousel-slide {
        width: 300px;
        height: 225px;
    }

    .carousel-track {
        gap: 0.75rem;
    }

    .carousel-reverse {
        margin-top: 1rem;
    }

    /* Featured products section full width on mobile */
    .featured-products .container {
        max-width: 100%;
        padding: 0;
    }

    .featured-products h2 {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .cta-section {
        padding: 0 1rem;
    }

    /* Blog carousel mobile */
    .blog-card {
        flex: 0 0 100%;
    }

    .blog-carousel-wrapper {
        padding: 0 40px;
    }

    .blog-nav {
        width: 40px;
        height: 40px;
    }

    .blog-nav svg {
        width: 20px;
        height: 20px;
    }

    /* Coeur grid mobile */
    .coeur-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .promo-divider {
        width: 50px;
        height: 2px;
    }

    .promo-pattern {
        width: 60px;
        height: 60px;
    }

    /* Histoire page mobile */
    .histoire-intro {
        padding: 2.5rem 0;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1.05rem;
    }

    .histoire-section {
        padding: 2.5rem 0;
    }

    .histoire-block {
        gap: 2rem;
    }

    .histoire-text h2 {
        font-size: 1.6rem;
    }

    .histoire-text p {
        font-size: 1rem;
    }

    .image-decoration {
        width: 60px;
        height: 60px;
        top: -8px;
        right: -8px;
        border-width: 3px;
    }

    .stats-section-large {
        padding: 3rem 0;
    }

    .stats-grid-large {
        gap: 1.5rem;
    }

    .stat-card-large {
        flex: 1 1 100%;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-icon {
        font-size: 3rem;
    }

    .valeurs-section {
        padding: 3rem 0;
    }

    .valeurs-carousel-wrapper {
        padding: 0 40px;
    }

    .valeur-card {
        flex: 0 0 100%;
        padding: 2rem 1.5rem;
    }

    .valeur-nav {
        width: 40px;
        height: 40px;
    }

    .valeur-nav svg {
        width: 20px;
        height: 20px;
    }

    .valeur-icon {
        font-size: 3rem;
    }

    .engagements-section {
        padding: 3rem 0;
    }

    .engagements-carousel-wrapper {
        padding: 0 40px;
    }

    .engagement-card {
        flex: 0 0 100%;
        padding: 2rem 1.5rem;
    }

    .engagement-nav {
        width: 40px;
        height: 40px;
    }

    .engagement-nav svg {
        width: 20px;
        height: 20px;
    }

    .engagement-icon {
        font-size: 2.5rem;
    }

    /* Map section mobile */
    .map-placeholder {
        height: 450px;
    }

    .map-placeholder-content {
        padding: 1.5rem;
    }

    .map-placeholder-content svg {
        width: 60px;
        height: 60px;
    }

    .map-placeholder-content h3 {
        font-size: 1.2rem;
    }

    .map-placeholder-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .map-locations {
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .map-location-item {
        padding: 1rem;
    }

    .map-location-item strong {
        font-size: 0.9rem;
    }

    .map-location-item span {
        font-size: 0.8rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Hero image optimization */
.hero::before {
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero::before {
        background-attachment: scroll;
    }
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, rgba(51, 79, 51, 0.85) 0%, rgba(178, 34, 34, 0.85) 100%),
                url('../images/decor/asian_market-6.jpg') center/cover no-repeat;
    color: var(--blanc-pur);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    margin-top: -90px;
    padding-top: calc(8rem + 90px);
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-content {
    padding: 4rem 0;
}

.section-main-title {
    text-align: center;
    color: var(--vert-fonce);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
    position: relative;
}

.section-main-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--rouge-profond), var(--dore));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Histoire page styles */
.histoire-intro {
    padding: 4rem 0;
    background: var(--blanc-pur);
    text-align: left;
}

/* Page header padding for histoire page */
body:has(.histoire-intro) .page-header {
    padding: 10rem 0 6rem;
}

/* Page header padding for nos magasins page */
body:has(.store-grid) .page-header {
    padding: 10rem 0 6rem;
}

.intro-content {
    max-width: 750px;
}

.intro-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--vert-fonce);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--rouge-profond), var(--dore));
    border-radius: 2px;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #666;
}

.histoire-section {
    padding: 4.5rem 0;
}

.histoire-section.alt-bg {
    background: var(--gris-clair);
}

.histoire-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.histoire-block.histoire-right {
    direction: rtl;
}

.histoire-block.histoire-right > * {
    direction: ltr;
}

.histoire-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--vert-fonce);
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
    padding-bottom: 0.75rem;
}

.histoire-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--rouge-profond), var(--dore));
    border-radius: 2px;
}

.histoire-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #666;
    margin-bottom: 1.25rem;
}

.histoire-text p:last-child {
    margin-bottom: 0;
}

.histoire-image {
    position: relative;
}

.histoire-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.histoire-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.image-decoration {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 4px solid var(--dore);
    border-radius: 50%;
    top: -20px;
    right: -20px;
    z-index: -1;
    opacity: 0.6;
}

/* Stats Section Large */
.stats-section-large {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--rouge-profond) 0%, var(--vert-fonce) 100%);
    color: var(--blanc-pur);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--vert-fonce);
    text-align: center;
    margin-bottom: 1rem;
}

.stats-section-large .section-title {
    color: var(--blanc-pur);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

/* Force left alignment for Notre Histoire page */
/* .histoire-intro h2,
.histoire-intro .section-title,
.histoire-section h2,
.histoire-section .section-title {
    text-align: left;
} */

.stats-grid-large {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
}

.stat-card-large {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    flex: 0 1 280px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.stat-card-large:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--dore);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dore);
    font-family: 'Noto Serif SC', serif;
    margin-bottom: 0.5rem;
}

.stat-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--blanc-pur);
}

.stat-card-large p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Valeurs Section */
.valeurs-section {
    padding: 5rem 0;
    background: var(--blanc-pur);
}

.valeurs-carousel-wrapper {
    position: relative;
    margin: 3rem 0;
    padding: 0 60px;
}

.valeurs-carousel {
    overflow: hidden;
    border-radius: 20px;
}

.valeurs-carousel-track {
    display: flex;
    gap: 2.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 768px) {
    .valeurs-carousel-track {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .valeurs-carousel-track {
        gap: 1.5rem;
    }
}

.valeur-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--gris-clair);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    flex: 0 0 calc(33.333% - 1.66rem);
    min-width: 280px;
}

.valeur-card:hover {
    transform: translateY(-10px);
    background: var(--blanc-pur);
    border-color: var(--dore);
    box-shadow: 0 20px 50px rgba(178, 34, 34, 0.12);
}

.valeur-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--blanc-pur);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: var(--vert-fonce);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.valeur-nav:hover {
    background: var(--vert-fonce);
    color: var(--blanc-pur);
    transform: translateY(-50%) scale(1.1);
}

.valeur-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.valeur-nav:disabled:hover {
    background: var(--blanc-pur);
    color: var(--vert-fonce);
    transform: translateY(-50%) scale(1);
}

.valeur-nav-prev {
    left: 0;
}

.valeur-nav-next {
    right: 0;
}

.valeur-icon-wrapper {
    margin-bottom: 1.5rem;
}

.valeur-icon {
    font-size: 3.5rem;
    display: inline-block;
}

.valeur-card h3 {
    font-size: 1.4rem;
    color: var(--vert-fonce);
    margin-bottom: 1rem;
}

.valeur-card p {
    color: #666;
    line-height: 1.75;
    font-size: 0.98rem;
}

/* Engagements Section */
.engagements-section {
    padding: 5rem 0;
    background: var(--gris-clair);
}

.engagements-carousel-wrapper {
    position: relative;
    margin: 3rem 0;
    padding: 0 60px;
}

.engagements-carousel {
    overflow: hidden;
    border-radius: 20px;
}

.engagements-carousel-track {
    display: flex;
    gap: 2.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 768px) {
    .engagements-carousel-track {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .engagements-carousel-track {
        gap: 1.5rem;
    }
}

.engagement-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--blanc-pur);
    border-radius: 20px;
    border-left: 4px solid var(--rouge-profond);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    flex: 0 0 calc(33.333% - 1.66rem);
    min-width: 280px;
}

.engagement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(178, 34, 34, 0.15);
    border-left-width: 6px;
}

.engagement-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--blanc-pur);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: var(--vert-fonce);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.engagement-nav:hover {
    background: var(--vert-fonce);
    color: var(--blanc-pur);
    transform: translateY(-50%) scale(1.1);
}

.engagement-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.engagement-nav:disabled:hover {
    background: var(--blanc-pur);
    color: var(--vert-fonce);
    transform: translateY(-50%) scale(1);
}

.engagement-nav-prev {
    left: 0;
}

.engagement-nav-next {
    right: 0;
}

.engagement-number {
    position: absolute;
    top: -12px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(178, 34, 34, 0.08);
    font-family: 'Noto Serif SC', serif;
}

.engagement-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.engagement-card h3 {
    font-size: 1.3rem;
    color: var(--vert-fonce);
    margin-bottom: 1rem;
}

.engagement-card p {
    color: #666;
    line-height: 1.75;
    font-size: 0.98rem;
}

/* Legal pages */
.legal-content {
    padding: 4rem 0;
    background: var(--gris-clair);
}

.legal-intro {
    background: var(--blanc-pur);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--rouge-profond);
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.legal-intro p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-intro p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #666;
}

.legal-section {
    background: var(--blanc-pur);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.legal-section h2 {
    color: var(--vert-fonce);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--dore);
    text-align: left;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.legal-section ul li {
    margin-bottom: 0.75rem;
}

.legal-section a {
    color: var(--rouge-profond);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--vert-fonce);
}

.legal-section strong {
    color: var(--vert-fonce);
    font-weight: 600;
}

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

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.stat-card {
    background: var(--gris-clair);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid var(--dore);
}

.stat-card h3 {
    color: var(--rouge-profond);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

.value-card {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: var(--vert-fonce);
    margin-bottom: 0.5rem;
}

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

.store-card {
    background: var(--blanc-pur);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--rouge-profond);
}

.store-card .btn-primary {
    display: block;
    margin: 1.5rem auto 0;
    text-align: center;
    max-width: fit-content;
}

.store-card h3 {
    color: var(--rouge-profond);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.store-info {
    margin-bottom: 1rem;
}

.store-info strong {
    color: var(--vert-fonce);
    display: block;
    margin-bottom: 0.5rem;
}

.store-hours {
    background: var(--gris-clair);
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.store-hours h4 {
    color: var(--vert-fonce);
    margin-bottom: 0.5rem;
}

.hours-list {
    list-style: none;
    font-size: 0.9rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 0;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
    padding: 2rem 0;
}

.map-section h2 {
    text-align: center;
    color: var(--vert-fonce);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 1200px;
}

.map-wrapper {
    position: relative;
    width: 100%;
}

.map-container iframe {
    display: block;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.map-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.map-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.map-link:hover .map-placeholder-content {
    transform: scale(1.02);
}

.map-placeholder-content svg {
    color: var(--rouge-profond);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(178, 34, 34, 0.2));
}

.map-placeholder-content h3 {
    color: var(--vert-fonce);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.map-placeholder-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.map-locations {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.map-location-item {
    background: var(--blanc-pur);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.map-location-item strong {
    color: var(--rouge-profond);
    font-size: 1rem;
}

.map-location-item span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.contact-section h2 {
    color: var(--vert-fonce);
    margin-bottom: 1.5rem;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #555;
}

.blog-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.blog-article {
    background: var(--blanc-pur);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.article-content {
    padding: 2rem;
}

.article-content h3 {
    color: var(--rouge-profond);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.article-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.article-meta {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

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

    .page-header {
        padding: 6rem 0 3rem;
    }

    .story-section p {
        text-align: left;
    }

    /* Histoire page responsive */
    .histoire-intro {
        padding: 3rem 0;
    }

    .histoire-section {
        padding: 3.5rem 0;
    }

    .histoire-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .histoire-block.histoire-right {
        direction: ltr;
    }

    .image-decoration {
        width: 80px;
        height: 80px;
        top: -12px;
        right: -12px;
    }

    .stats-section-large {
        padding: 4rem 0;
    }

    .stats-grid-large {
        gap: 2rem;
    }

    .stat-card-large {
        flex: 0 1 calc(50% - 1rem);
    }

    .valeurs-section {
        padding: 4rem 0;
    }

    .valeurs-carousel-wrapper {
        padding: 0 50px;
    }

    .valeur-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .valeur-nav {
        width: 45px;
        height: 45px;
    }

    .engagements-section {
        padding: 4rem 0;
    }

    .engagements-carousel-wrapper {
        padding: 0 50px;
    }

    .engagement-card {
        flex: 0 0 calc(50% - 1.25rem);
    }

    .engagement-nav {
        width: 45px;
        height: 45px;
    }
}