/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: #FFFDF4;
    color: #14181E;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scroll-triggered fade-in animations */
.fade-in-section {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-section.visible {
    opacity: 1;
}

/* Stagger children */
.fade-in-section.visible .stagger-child {
    opacity: 1;
    transform: translateY(0);
}

.stagger-child {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-child:nth-child(1) { transition-delay: 0.05s; }
.stagger-child:nth-child(2) { transition-delay: 0.1s; }
.stagger-child:nth-child(3) { transition-delay: 0.15s; }
.stagger-child:nth-child(4) { transition-delay: 0.2s; }
.stagger-child:nth-child(5) { transition-delay: 0.25s; }
.stagger-child:nth-child(6) { transition-delay: 0.3s; }

html {
    overflow-x: clip;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utility */
.text-green {
    color: #3B7D23;
}

/* Focus states for accessibility */
.btn:focus-visible,
.nav-link:focus-visible,
.accordion-header:focus-visible,
.footer-social-link:focus-visible,
.footer-col a:focus-visible {
    outline: 2px solid #3B7D23;
    outline-offset: 2px;
}

/* =============================
   DECORATIVE LEAVES
   ============================= */
.decorative-leaf {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.decorative-leaf img {
    width: 464px;
    height: 838px;
    will-change: transform;
}

.decorative-leaf-right {
    right: -400px;
    top: 250px;
}

.decorative-leaf-right img {
    transform: rotate(-30deg);
}

.decorative-leaf-left {
    left: -420px;
    top: 800px;
}

.decorative-leaf-left img {
    transform: rotate(25deg) scaleX(-1);
}

/* =============================
   TOP BANNER
   ============================= */
.top-banner {
    background-color: #F6CE1A;
    text-align: center;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.banner-arrow {
    color: #14181E;
    font-size: 20px;
    cursor: pointer;
    user-select: none;
    padding: 0 16px;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.banner-arrow:hover {
    opacity: 1;
}

.banner-rotator {
    position: relative;
    display: grid;
}

.banner-rotator .banner-text {
    grid-area: 1 / 1;
    color: #14181E;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.banner-rotator .banner-text.banner-text-active {
    opacity: 1;
}

.banner-text strong {
    font-weight: 900;
}

/* =============================
   HEADER
   ============================= */
.header {
    background-color: transparent;
    padding: 0 clamp(16px, 4vw, 60px);
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s, border-color 0.3s;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(0,0,0,0.06);
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.header-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #14181E;
    transition: color 0.2s, background-color 0.25s;
    padding: 10px 20px;
    border-radius: 100px;
    position: relative;
}

.nav-link:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.nav-link.active {
    background-color: #f6f2e3;
    font-weight: 600;
}

.nav-link-pro {
    background-color: #F6CE1A;
    color: #1a1a1a !important;
    font-weight: 500;
}

.nav-link-pro:hover {
    background-color: #e5be10;
}

/* =============================
   MOBILE MENU OVERLAY
   ============================= */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: #FFFDF4;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    padding: 80px 24px 40px;
    animation: mobileMenuIn 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.hidden {
    display: none;
}

.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    color: #14181E;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.mobile-menu-close:active {
    background: rgba(0, 0, 0, 0.12);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-link {
    font-size: 20px;
    font-weight: 600;
    color: #14181E;
    padding: 16px 20px;
    border-radius: 12px;
    transition: background 0.2s;
    text-decoration: none;
}

.mobile-menu-link:active,
.mobile-menu-link:hover {
    background-color: rgba(0, 0, 0, 0.06);
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.flag-icon {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    transition: background-color 0.2s, border-color 0.2s;
}

.lang-current:hover {
    background-color: rgba(0, 0, 0, 0.03);
    border-color: #ccc;
}

.lang-chevron {
    color: #666;
    transition: transform 0.2s;
}

.lang-dropdown.open ~ .lang-current .lang-chevron,
.lang-current[aria-expanded="true"] .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
    min-width: 140px;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #14181E;
    transition: background-color 0.15s;
}

.lang-option:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.lang-option.active {
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.03);
}

.lang-option img {
    border-radius: 2px;
}

/* Mobile menu button (hidden on desktop) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #14181E;
}

/* =============================
   BUTTONS
   ============================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
    position: relative;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-primary {
    background: linear-gradient(180deg, #FFE057 0%, #F6CE1A 100%);
    color: #14181E;
    box-shadow: 0 2px 8px rgba(246, 206, 26, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(246, 206, 26, 0.35);
}

.btn-secondary {
    background-color: #F7F7F7;
    border: 1px solid #E7E7E7;
    color: #14181E;
}

.btn-secondary:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-red {
    background-color: #E53E3E;
    color: white;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(229, 62, 62, 0); }
}

/* =============================
   HERO SECTION
   ============================= */
.hero {
    background: linear-gradient(135deg, #fffef8 0%, #feefb0 40%, #ffdf90 80%, #ffd666 100%);
    padding: 60px 60px 0;
    overflow: hidden;
    border-radius: 30px;
    margin: 20px auto 0;
    max-width: 1400px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: heroContentIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

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

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

.hero-content h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.05;
    margin: 20px 0 24px;
    color: #14181E;
}

.hero-features {
    margin-bottom: 0;
}

.hero-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.5;
}

.hero-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #14181E;
    font-weight: bold;
}

.hero-features li:last-child::before {
    content: '•';
}

.hero-image {
    flex: 1.5;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-right: -60px;
    animation: heroImageIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero-image img {
    max-height: 1240px;
    width: 100%;
    object-fit: contain;
    border-radius: 0;
}

/* =============================
   BENEFITS BAR
   ============================= */
.mobile-br {
    display: none;
}

.benefits-bar {
    background-color: #FFFFFF;
    border-radius: 30px;
    margin: 20px auto 0;
    max-width: 1400px;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 28px 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(16px, 1.5vw, 22px);
    font-weight: 500;
}

.benefit-text strong {
    font-weight: 800;
}

.benefit-icon {
    font-size: 28px;
}

.benefit-icon-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.benefit-icon-img.benefit-colza {
    width: 42px;
    height: 42px;
}

.benefit-icon-img.benefit-flag {
    width: 36px;
    height: 36px;
}

/* =============================
   PRODUCT DESCRIPTION
   ============================= */
.product-description {
    padding: 100px clamp(16px, 4vw, 60px) 60px;
    background: linear-gradient(180deg, #FFFDF4 0%, #FEF3DF 100%);
}

.product-desc-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.product-image-wrapper {
    flex: 1;
    position: relative;
    margin-left: 200px;
    display: flex;
    justify-content: center;
}

.oil-splash-decoration {
    position: absolute;
    left: -320px;
    top: -110px;
    width: 500px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    transform: scaleY(-1) rotate(180deg);
}

.product-main-image {
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.badge-arome-img {
    position: absolute;
    bottom: -30px;
    left: -15px;
    width: 120px;
    height: 120px;
    object-fit: contain;
    z-index: 2;
}

.product-info {
    flex: 1;
}

.product-info h2 {
    font-size: clamp(32px, 3.5vw, 45px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
}

.product-features {
    list-style: none;
}

.product-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.5;
}

.product-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #14181E;
    font-weight: bold;
}

/* Line breaks visible only on mobile */
.mobile-br {
    display: none;
}

/* =============================
   PRODUCT DETAILS / ACCORDION
   ============================= */
.product-details {
    padding: 0 clamp(16px, 4vw, 60px) 40px;
    background: linear-gradient(180deg, #FEF3DF 0%, #FFFDF4 100%);
    position: relative;
    overflow: visible;
}

.decorative-leaf-details-right {
    right: -300px;
    top: 450px;
    z-index: 10;
}

.decorative-leaf-details-right img {
    transform: rotate(-15deg);
    opacity: 0.5;
    filter: blur(1px);
}

.details-inner, .faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-inner h2 {
    text-align: center;
    font-size: clamp(28px, 3.5vw, 45px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 40px;
}

.accordion-item {
    background-color: #FFFDF4;
    border: 1px solid #e1e1e1;
    border-radius: 20px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.accordion-item:hover {
    border-color: #d0d0d0;
}

.accordion-item.active {
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border-color: #ccc;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 700;
    color: #14181E;
    cursor: pointer;
    transition: color 0.2s;
}

.accordion-header:hover {
    color: #333;
}

.accordion-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #14181E;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-item.active .accordion-content {
    max-height: 600px;
}

.accordion-content-inner {
    padding: 20px 24px;
    border-top: 1px solid #e8e4da;
}

.accordion-content-inner p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #444;
}

.accordion-content-inner p:last-child {
    font-weight: 700;
    color: #14181E;
}

/* Nutrition Table */
.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    color: #444;
}

.nutrition-table thead th {
    text-align: left;
    font-weight: 700;
    color: #14181E;
    padding: 8px 0;
    border-bottom: 2px solid #3B7D23;
    font-size: 14px;
}

.nutrition-table thead th:last-child {
    text-align: right;
}

.nutrition-table tbody td {
    padding: 6px 0;
    border-bottom: 1px solid #e8e4da;
}

.nutrition-table tbody td:last-child {
    text-align: right;
    font-weight: 600;
    color: #14181E;
    white-space: nowrap;
}

.nutrition-table .sub-row td {
    padding-left: 20px;
    font-size: 14px;
    color: #666;
}

.nutrition-table .sub-row td:last-child {
    color: #444;
    font-weight: 500;
}

/* =============================
   PRACTICAL BENEFITS SECTION
   ============================= */
.practical-section {
    padding: 50px clamp(16px, 4vw, 60px) 40px;
    background-color: #FFFDF4;
}

.practical-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.practical-inner h2 {
    font-size: clamp(28px, 3.5vw, 45px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 20px;
}

.practical-banner {
    display: inline-block;
    background: linear-gradient(90deg, #F6CE1A, #FFE057);
    padding: 12px 36px;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 800;
    color: #14181E;
    margin-bottom: 50px;
    box-shadow: 0 4px 16px rgba(246, 206, 26, 0.25);
}

/* Orbit layout: left col | center bottle | right col */
.practical-orbit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.practical-orbit-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
    max-width: 340px;
}

/* Individual orbit item */
.practical-orbit-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #FFFFFF;
    padding: 20px 24px;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(59, 125, 35, 0.06);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s;
    will-change: transform;
}

.practical-orbit-item:hover {
    box-shadow: 0 12px 32px rgba(59, 125, 35, 0.12);
    border-color: rgba(59, 125, 35, 0.15);
}

.practical-orbit-item-right {
    justify-content: flex-end;
}

/* Badge (icon or stat) */
.practical-orbit-badge {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: #FFF8E0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.practical-orbit-badge-green,
.practical-orbit-badge-yellow {
    background: #FFF8E0;
    box-shadow: none;
}

.practical-orbit-badge-green span,
.practical-orbit-badge-yellow span {
    font-size: 15px;
    font-weight: 900;
    color: #E5B800;
    letter-spacing: -0.5px;
}

/* Text block */
.practical-orbit-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.practical-orbit-text-right {
    text-align: right;
}

.practical-orbit-text strong {
    font-size: 15px;
    font-weight: 800;
    color: #14181E;
    margin-bottom: 3px;
}

.practical-orbit-text span {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* Center bottle */
.practical-orbit-center {
    position: relative;
    width: 380px;
    min-width: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.practical-orbit-ring {
    display: none;
}

.practical-bottle {
    width: 340px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.10));
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

#bottle-canvas {
    display: none; /* Hidden until frames are loaded */
    width: 340px;
    height: auto;
}

.practical-bottle-fallback {
    display: block;
}

/* =============================
   USAGE / RECIPES SECTION
   ============================= */
.usage-section {
    padding: 50px clamp(16px, 4vw, 60px);
    background-color: #FFFDF4;
}

.usage-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.usage-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.usage-header h2 {
    font-size: clamp(32px, 3.5vw, 45px);
    font-weight: 700;
    line-height: 1.05;
    flex-shrink: 0;
}

.usage-header h2 strong {
    font-weight: 900;
}

.usage-icons-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.usage-icons-row .recipe-search-wrapper {
    margin-left: auto;
}

.usage-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 16px 10px;
    border: 1px solid #e0ddd5;
    border-radius: 16px;
    gap: 0;
    background: #FFFFFF;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
}

.usage-icon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-color: rgba(59, 125, 35, 0.2);
}

.usage-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-top: -4px;
    margin-bottom: -4px;
}

.usage-icon-card span {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #14181E;
}

/* Recipe search (in usage-icons-row) */
.recipe-search-wrapper {
    position: relative;
    flex-shrink: 0;
}

.recipe-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.recipe-search {
    padding: 10px 16px 10px 40px;
    border-radius: 100px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #14181E;
    width: 360px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.recipe-search:focus {
    border-color: #3B7D23;
    box-shadow: 0 0 0 3px rgba(59, 125, 35, 0.12);
}

.recipe-search::placeholder {
    color: #bbb;
}

.recipe-no-result {
    text-align: center;
    font-size: 15px;
    color: #999;
    font-weight: 600;
    padding: 40px 0;
    width: 100%;
}

/* When searching: keep inline, stop auto-scroll, hide nav buttons */
.recipe-slider-wrapper.recipe-filtered .recipe-slider-btn {
    display: none;
}

.recipe-card.card-hidden {
    display: none;
}

/* Recipe Slider */
.recipe-slider-wrapper {
    position: relative;
}

.recipe-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.recipe-grid::-webkit-scrollbar {
    display: none;
}

.recipe-card {
    flex: 0 0 280px;
    height: 450px;
    perspective: 800px;
    scroll-snap-align: start;
}

.recipe-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d;
}

.recipe-card:hover .recipe-card-inner {
    transform: rotateY(180deg);
}

.recipe-card-front,
.recipe-card-back {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.recipe-card-front {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.recipe-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 24px;
    color: white;
}

.recipe-back-green {
    background: linear-gradient(135deg, #2d6b1a 0%, #3B7D23 50%, #4a9a2e 100%);
}

.recipe-back-yellow {
    background: linear-gradient(135deg, #b8960f 0%, #d4ad12 50%, #F6CE1A 100%);
}

.recipe-back-warm {
    background: linear-gradient(135deg, #8a5518 0%, #a86820 50%, #c47e2a 100%);
}

.recipe-card-back .recipe-badge {
    margin-bottom: 16px;
}

.recipe-card-back h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.recipe-card-back p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0.95;
}

.recipe-card-back .recipe-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 10px 20px;
    border-radius: 100px;
    background: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.recipe-back-green .recipe-cta { color: #2d6b1a; }
.recipe-back-yellow .recipe-cta { color: #b8960f; }
.recipe-back-warm .recipe-cta { color: #8a5518; }
.recipe-card-back .recipe-cta:hover { background: rgba(255,255,255,0.85); }
.recipe-card-back .recipe-cta:active { transform: scale(0.95); }
.recipe-card-back .recipe-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

.recipe-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.recipe-slider-btn:hover {
    background: #f6f2e3;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.recipe-slider-btn-left {
    left: -24px;
}

.recipe-slider-btn-right {
    right: -24px;
}

.recipe-slider-btn svg {
    width: 20px;
    height: 20px;
    color: #14181E;
}

.recipe-card-front::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0;
}

.recipe-card-front.gradient-green::before {
    background: linear-gradient(to bottom, transparent 30%, rgba(30,80,15,0.92) 100%);
}

.recipe-card-front.gradient-yellow::before {
    background: linear-gradient(to bottom, transparent 30%, rgba(140,110,15,0.92) 100%);
}

.recipe-card-front.gradient-warm::before {
    background: linear-gradient(to bottom, transparent 30%, rgba(130,80,25,0.92) 100%);
}

.recipe-overlay-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    color: white;
}

.recipe-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 14px;
}

.recipe-badge-sweet {
    background: rgba(246,206,26,0.3);
}

.recipe-overlay-content h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.recipe-overlay-content p {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    opacity: 0.9;
    margin-top: 6px;
}

/* =============================
   COMPARISON SECTION
   ============================= */
.comparison-section {
    padding: 80px clamp(16px, 4vw, 60px) 60px;
    background-color: #FFFDF4;
    position: relative;
    overflow: visible;
}

.comp-leaf-parallax {
    position: absolute;
    left: -400px;
    top: 100px;
    width: 464px;
    height: 838px;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

.comp-leaf-parallax img {
    width: 100%;
    height: 100%;
    transform: rotate(25deg) scaleX(-1);
}

.comparison-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.comparison-inner h2 {
    font-size: clamp(28px, 3.5vw, 45px);
    font-weight: 700;
    margin-bottom: 70px;
    line-height: 1.05;
}

.comparison-inner h2 strong {
    font-weight: 900;
}

/* Layout: 3 columns */
.comparison-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Shared card style */
.comp-card {
    border-radius: 20px;
    overflow: visible;
}

/* Side cards (Margarine + Beurre) */
.comp-card-side {
    flex: 0 0 380px;
    background-color: #F6F5F0;
    border-radius: 20px;
    padding: 16px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}

.comp-card-side:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.comp-card-img {
    width: 220px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto 4px;
}

.comp-card-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

/* Center card (Holéo) */
.comp-card-center {
    flex: 1;
    max-width: 600px;
    background: linear-gradient(135deg, #FFF8E0 0%, #FFE092 60%, #FFD666 100%);
    border-radius: 20px;
    padding: 0 30px 30px;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(246, 206, 26, 0.2);
    border: 1px solid rgba(246, 206, 26, 0.15);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.comp-center-content {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.comp-bottle-wrapper {
    position: relative;
    width: 300px;
    flex-shrink: 0;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: -50px;
    margin-left: 60px;
}

.comp-bottle {
    width: 300px;
    position: relative;
    z-index: 3;
    margin-bottom: -30px;
}

.comp-splash {
    position: absolute;
    top: 40px;
    left: -160px;
    width: 700px;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-10deg);
    opacity: 0.9;
}

.comp-butter-curl {
    position: absolute;
    top: 130px;
    left: -80px;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.comp-leaf-left {
    position: absolute;
    bottom: -50px;
    left: -40px;
    width: 230px;
    z-index: 2;
    pointer-events: none;
    transform: rotate(-30deg) scaleX(-1);
}

.comp-leaf-right {
    position: absolute;
    bottom: -90px;
    left: -80px;
    width: 230px;
    z-index: 2;
    pointer-events: none;
    transform: rotate(0deg);
}

.comp-leaf-right-2 {
    position: absolute;
    bottom: -50px;
    left: -80px;
    width: 230px;
    z-index: 2;
    pointer-events: none;
    transform: rotate(45deg);
}

.comp-center-text {
    text-align: left;
    padding-top: 30px;
    margin-left: -25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

.comp-center-text .comp-line {
    font-size: 17px;
    white-space: nowrap;
}

.comp-side-title {
    font-size: 20px;
    font-weight: 800;
    color: #14181E;
    margin-bottom: 6px;
    display: none;
}

.comp-holeo-title {
    font-family: 'Alkatra', cursive;
    font-size: 30px;
    font-weight: 700;
    color: #14181E;
    margin-bottom: 16px;
}

.comp-holeo-logo {
    width: 120px;
    height: auto;
    margin-bottom: 12px;
}

/* List lines */
.comp-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 6px;
    color: #14181E;
}

.comp-line strong {
    font-weight: 700;
}

/* Bullet dots */
.comp-dot {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.comp-dot.grey {
    background-color: #BCBCBC;
}

.comp-dot.red {
    background-color: #DB514F;
    color: white;
}

.comp-dot.green {
    background-color: #3B7D23;
    color: white;
}

.comp-dot.green::after {
    content: '✓';
    font-size: 13px;
    color: white;
}

.comp-dot.red::after {
    content: '✗';
    font-size: 12px;
    color: white;
}

/* Badge tags */
.comp-tag {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
    margin-top: 14px;
    line-height: 1.4;
    font-weight: 500;
}

.comp-tag.green {
    background-color: rgba(59, 125, 35, 0.1);
    color: #2E7D32;
}

.comp-tag.red {
    background-color: rgba(219, 81, 79, 0.1);
    color: #C62828;
}

/* =============================
   STORY SECTION
   ============================= */
.story-section {
    padding: 80px clamp(16px, 4vw, 60px);
    background: linear-gradient(180deg, #FFFDF4 0%, #FEF3DF 100%);
    position: relative;
    overflow: visible;
}

.story-leaf-parallax {
    position: absolute;
    right: -400px;
    top: 60px;
    width: 464px;
    height: 838px;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
    filter: blur(2px);
    opacity: 0.7;
}

.story-leaf-parallax img {
    width: 100%;
    height: 100%;
    transform: rotate(-30deg);
}

.story-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}

.story-content {
    flex: 1;
    text-align: left;
    max-width: 550px;
}

.story-content h2 {
    font-size: clamp(28px, 3.5vw, 45px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.story-content p strong {
    color: #14181E;
}

.story-companies {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}


.company-circle {
    position: relative;
    width: 380px;
    height: 380px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.company-circle:hover {
    transform: scale(1.03);
}

.company-circle-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    display: block;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.company-label {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 14px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    text-align: center;
    white-space: nowrap;
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.3s, transform 0.3s;
}

.company-circle:hover .company-label {
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    transform: translateX(-50%) translateY(-3px);
}

.company-circle:hover .company-label-top {
    transform: translateY(-3px);
}

.company-label-bottom {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.company-label-top {
    top: -20px;
    right: -20px;
}

.company-label-with-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-label-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.company-label h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 2px;
    color: #14181E;
}

.company-label p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

/* =============================
   VALUES SECTION
   ============================= */
.values-section {
    padding: 60px clamp(16px, 4vw, 60px);
    background-color: #FFFDF4;
}

.values-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.values-inner h2 {
    font-size: clamp(28px, 3.5vw, 45px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 50px;
}

.underline {
    background: linear-gradient(180deg, transparent 15%, #F6CE1A 15%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    padding: 0 4px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 950px;
    margin: 0 auto;
}

.value-card {
    perspective: 1000px;
    cursor: pointer;
}

.value-card-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 0.62;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d;
}

.value-card:hover .value-card-inner {
    transform: rotateY(180deg);
}

.value-card-front,
.value-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.value-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.value-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, #FFE057 0%, #F6CE1A 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 24px;
    text-align: center;
    color: #14181E;
}

.value-card-back-icon {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1;
}

.value-card-back h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-card-back p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    font-weight: 500;
}

/* =============================
   PROFESSIONAL SECTION
   ============================= */
.pro-section {
    padding: 80px clamp(16px, 4vw, 60px);
    background-color: #FFFDF4;
    border-radius: 30px;
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
    overflow: visible;
}

.pro-leaf-parallax {
    position: absolute;
    left: -520px;
    top: -100px;
    width: 464px;
    height: 838px;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
    filter: blur(2px);
    opacity: 0.7;
}

.pro-leaf-parallax img {
    width: 100%;
    height: 100%;
    transform: rotate(25deg) scaleX(-1);
}

.pro-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.pro-image {
    flex: 0 0 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.pro-content {
    flex: 1;
}

.pro-content h2 {
    font-size: clamp(28px, 3.5vw, 45px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 16px;
}

.pro-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pro-features {
    margin-bottom: 28px;
}

.pro-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.5;
}

.pro-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #14181E;
    font-weight: bold;
}

.pro-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

/* =============================
   ARTICLES SECTION
   ============================= */
.articles-section {
    padding: 80px clamp(16px, 4vw, 60px);
    background-color: #FFFDF4;
}

.articles-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.articles-inner h2 {
    font-size: clamp(28px, 3.5vw, 45px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 40px;
    text-align: center;
}

/* Articles toolbar: filters + search */
.articles-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.articles-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.articles-filter-btn {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
}

.articles-filter-btn:hover {
    border-color: #3B7D23;
    color: #3B7D23;
}

.articles-filter-btn.active {
    background: #3B7D23;
    border-color: #3B7D23;
    color: #fff;
}

.articles-search-wrapper {
    position: relative;
    flex-shrink: 0;
}

.articles-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.articles-search {
    padding: 10px 16px 10px 40px;
    border-radius: 100px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #14181E;
    width: 240px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.articles-search:focus {
    border-color: #3B7D23;
    box-shadow: 0 0 0 3px rgba(59, 125, 35, 0.12);
}

.articles-search::placeholder {
    color: #bbb;
}

.articles-no-result {
    text-align: center;
    font-size: 15px;
    color: #999;
    font-weight: 600;
    padding: 40px 0;
}

/* Card hidden state for filter/search */
.article-card.card-hidden {
    display: none;
}

/* Show only first 3 cards by default */
.articles-grid:not(.articles-expanded) .article-card:nth-child(n+4) {
    display: none;
}

/* Show more button */
.articles-show-more-wrapper {
    text-align: center;
    margin-top: 32px;
}

.articles-show-more-btn {
    font-size: 14px;
    padding: 12px 32px;
    border-radius: 100px;
    border: 2px solid #3B7D23;
    background: transparent;
    color: #3B7D23;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    font-family: 'Raleway', sans-serif;
}

.articles-show-more-btn:hover {
    background: #3B7D23;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 125, 35, 0.25);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
    position: relative;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.article-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.article-card:hover .article-card-img img {
    transform: scale(1.05);
}

.article-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #3B7D23;
}

.article-card-content {
    padding: 24px;
}

.article-card-content time {
    font-size: 12px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-card-content h3 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    margin: 8px 0 10px;
    color: #14181E;
}

.article-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-link {
    font-size: 14px;
    font-weight: 700;
    color: #3B7D23;
    transition: color 0.2s;
}

.article-link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.article-link:hover {
    color: #2d6119;
}

/* =============================
   FAQ SECTION
   ============================= */
.faq-section {
    padding: 80px clamp(16px, 4vw, 60px);
    background-color: #FDF6E3;
}

.faq-section .accordion-item {
    background-color: #FFFFFF;
}

.faq-section .accordion-content-inner p:last-child {
    font-weight: 400;
    color: #444;
}

/* =============================
   CONTACT SECTION
   ============================= */
.contact-section {
    padding: 80px clamp(16px, 4vw, 60px);
    background-color: #FFFDF4;
}

.contact-section-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-section-text {
    flex: 1;
}

.contact-section-text h2 {
    font-size: clamp(28px, 3.5vw, 45px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 16px;
}

.contact-section-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-section-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #555;
}

.contact-info-item a {
    color: #3B7D23;
    font-weight: 600;
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-reveal-phone {
    background: none;
    border: 1px dashed #3B7D23;
    color: #3B7D23;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.contact-reveal-phone:hover {
    background: #3B7D23;
    color: #fff;
}

.contact-phone-number {
    color: #3B7D23;
    font-weight: 600;
    text-decoration: none;
}

.contact-phone-number:hover {
    text-decoration: underline;
}

.contact-phone-number.hidden {
    display: none;
}

.contact-section-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #FFFFFF;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-section-form input,
.contact-section-form textarea {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    padding: 14px 18px;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    background: #FAFAFA;
    color: #14181E;
    transition: border-color 0.2s, background-color 0.2s;
    resize: vertical;
}

.contact-section-form input:focus,
.contact-section-form textarea:focus {
    outline: none;
    border-color: #3B7D23;
    background: #fff;
}

.contact-section-form .btn {
    width: 100%;
    margin-top: 4px;
}

.form-success-msg {
    text-align: center;
    color: #3B7D23;
    font-weight: 700;
    font-size: 16px;
    padding: 14px;
    background: #e8f5e0;
    border-radius: 12px;
    margin-top: 12px;
    animation: fadeInSuccess 0.3s ease;
}

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

.form-error-msg {
    color: #c0392b;
    background: #fde8e8;
}

/* =============================
   BOTTOM PROMO
   ============================= */
.bottom-promo {
    padding: 80px clamp(16px, 4vw, 60px);
    background: linear-gradient(135deg, #FFFDF4 0%, #FEF3DF 100%);
}

.promo-inner {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 40px;
}

.promo-image-left {
    flex: 0 0 200px;
    border-radius: 20px;
    overflow: hidden;
}

.promo-image-left img {
    width: 200px;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
}

.promo-image {
    flex: 0 0 200px;
}

.promo-image img {
    max-height: 280px;
    width: auto;
}

.promo-content h2 {
    font-size: clamp(28px, 3.5vw, 45px);
    font-weight: 700;
    line-height: 1.05;
    margin: 16px 0 20px;
}

.promo-content ul {
    list-style: none;
}

.promo-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.5;
}

.promo-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #14181E;
}

/* =============================
   FOOTER
   ============================= */
.site-footer {
    margin-top: 0;
}

.footer-cta {
    background: linear-gradient(135deg, #F6CE1A 0%, #EDBE0A 50%, #E5B800 100%);
    padding: 60px clamp(16px, 4vw, 60px);
    border-radius: 0;
    margin: 0;
    max-width: none;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-cta-text {
    flex: 1;
}

.footer-cta h3 {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 800;
    color: #14181E;
    margin-bottom: 12px;
}

.footer-cta p {
    font-size: 18px;
    color: rgba(20,24,30,0.7);
    margin-bottom: 24px;
}

.btn-cta-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #14181E;
    color: #fff;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-cta-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.btn-cta-dark:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.footer-cta-map {
    flex: 0 0 220px;
}

.france-map-svg {
    width: 100%;
    height: auto;
}

.stores-grid-cta {
    max-width: 1100px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.store-card-cta {
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    padding: 16px;
}

.store-card-cta:hover {
    background: rgba(255,255,255,0.4);
}

.store-card-cta h4 {
    font-size: 13px;
    font-weight: 700;
    color: #14181E;
    margin-bottom: 4px;
}

.store-card-cta p {
    font-size: 12px;
    color: rgba(20,24,30,0.6);
    line-height: 1.4;
    margin-bottom: 0;
}

.stores-contact-cta {
    max-width: 1100px;
    margin: 16px auto 0;
    font-size: 13px;
    color: rgba(20,24,30,0.5);
    text-align: center;
}

.stores-contact-cta a {
    color: #14181E;
    font-weight: 700;
    text-decoration: none;
}

.stores-contact-cta a:hover {
    text-decoration: underline;
}

.footer-main {
    background-color: #1A1A1A;
    padding: 60px clamp(16px, 4vw, 60px) 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    transition: background-color 0.3s, color 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-social-link:hover {
    background-color: #3B7D23;
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-col a {
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #F6CE1A;
}

/* Stores Section */
.stores-section {
    background-color: #1E1E1E;
    padding: 50px clamp(16px, 4vw, 60px) 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.stores-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.stores-inner h3 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.stores-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 30px;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.store-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 20px;
    transition: background 0.2s;
}

.store-card:hover {
    background: rgba(255,255,255,0.08);
}

.store-icon {
    font-size: 20px;
    margin-bottom: 8px;
}

.store-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #F6CE1A;
    margin-bottom: 6px;
}

.store-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.stores-note {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.stores-note a {
    color: #F6CE1A;
    text-decoration: none;
    font-weight: 600;
}

.stores-note a:hover {
    text-decoration: underline;
}

.footer-bottom {
    background-color: #1A1A1A;
    padding: 20px clamp(16px, 4vw, 60px);
}

.footer-bottom p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 13px;
    color: rgba(255,255,255,0.25);
    text-align: center;
}

/* =============================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================= */
@media (max-width: 1024px) {
    .decorative-leaf,
    .decorative-leaf-details-right,
    .comp-leaf-parallax,
    .story-leaf-parallax,
    .pro-leaf-parallax {
        display: none;
    }

    /* Layout stacking */
    .hero-inner,
    .product-desc-inner,
    .story-inner,
    .pro-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .product-info, .story-content, .pro-content {
        max-width: 100%;
    }

    /* Hero */
    .hero {
        margin: 16px 20px 0;
        max-width: none;
        padding: 40px 40px 0;
    }

    .hero-image {
        margin-right: -40px;
    }

    .hero-image img {
        max-height: 1000px;
    }

    /* Benefits bar */
    .benefits-bar {
        margin: 16px 20px 0;
        max-width: none;
        padding: 20px 30px;
    }

    /* Product */
    .product-image-wrapper {
        margin-left: 0;
    }

    .oil-splash-decoration {
        display: none;
    }

    /* Practical */
    .practical-orbit {
        gap: 24px;
    }

    .practical-orbit-center {
        width: 240px;
        min-width: 240px;
    }

    .practical-bottle {
        width: 190px;
    }

    .practical-orbit-col {
        max-width: 280px;
    }

    /* Usage */
    .usage-header {
        flex-direction: column;
        text-align: center;
    }

    .usage-icons-row {
        justify-content: center;
    }

    /* Recipe */
    .recipe-card {
        flex: 0 0 250px;
        height: 400px;
    }

    /* Comparison */
    .comparison-layout {
        flex-direction: column;
        align-items: center;
    }

    .comp-card-side {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .comp-card-center {
        width: 100%;
        max-width: 100%;
    }

    .comp-center-content {
        flex-direction: column;
        align-items: center;
    }

    .comp-bottle-wrapper {
        width: 220px;
        margin-top: 20px;
        margin-left: 0;
    }

    .comp-bottle {
        width: 160px;
    }

    .comp-splash,
    .comp-butter-curl,
    .comp-leaf-right,
    .comp-leaf-right-2 {
        display: none;
    }

    .comp-center-text {
        text-align: center;
        margin-left: 0;
        align-items: center;
    }

    .comp-center-text .comp-line {
        white-space: normal;
    }

    .comparison-inner h2 {
        margin-bottom: 40px;
    }

    /* Values */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Pro */
    .pro-section {
        margin: 0 20px;
        border-radius: 24px;
    }

    .pro-image {
        flex: none;
        width: 100%;
        max-width: 400px;
    }

    /* Story */
    .story-companies {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .company-circle {
        width: 280px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .company-circle-img {
        width: 200px;
        height: 200px;
    }

    .company-label {
        position: static;
        transform: none;
        margin-top: 12px;
        white-space: normal;
        text-align: center;
    }

    .company-circle:hover .company-label,
    .company-circle:hover .company-label-top {
        transform: none;
    }

    /* Promo */
    .promo-inner {
        flex-direction: column;
        text-align: center;
    }

    .promo-image-left {
        display: none;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-cta-map {
        flex: 0 0 160px;
    }
}

/* =============================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================= */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    .decorative-leaf,
    .decorative-leaf-details-right {
        display: none;
    }

    /* Header mobile */
    .header {
        height: 60px;
    }

    .nav {
        display: none;
    }

    .header-right .lang-switcher {
        display: block;
        order: -1;
    }

    /* Mobile: hide Où nous trouver */
    .header-right .btn-primary {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Mobile menu overlay handled by .mobile-menu-overlay (outside header) */

    /* Top banner mobile */
    .top-banner {
        padding: 8px 12px;
        font-size: 13px;
    }

    .banner-arrow {
        padding: 0 8px;
        font-size: 18px;
    }

    /* Hero mobile */
    .hero {
        padding: 28px 16px 0;
        border-radius: 20px;
        margin: 10px 10px 0;
    }

    .hero-inner {
        gap: 20px;
    }

    .hero-content {
        text-align: left;
    }

    .hero-content h1 {
        text-align: center;
        font-size: clamp(24px, 7vw, 36px);
    }

    .hero-content .badge {
        display: block;
        width: fit-content;
        margin: 0 auto 8px;
    }

    .hero-features {
        display: inline-block;
        text-align: left;
    }

    .hero-features li {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .hero-image {
        margin: 0 -16px;
        justify-content: center;
        overflow: hidden;
    }

    .hero-image img {
        object-fit: contain;
        object-position: center;
        width: 110%;
        max-width: 110%;
        max-height: none;
        position: relative;
        left: -2%;
    }

    /* Benefits bar mobile */
    .mobile-br {
        display: inline;
    }

    .benefits-bar {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        margin: 10px 10px 0;
        max-width: none;
        border-radius: 20px;
        padding: 14px 6px;
    }

    .benefit {
        flex: 1;
        flex-direction: column;
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        gap: 6px;
    }

    .benefit-icon-img {
        width: 32px;
        height: 32px;
    }

    .benefit-text {
        font-size: 12px;
        font-weight: 700;
        line-height: 1.3;
    }

    /* Section padding */
    .comparison-section,
    .story-section,
    .values-section,
    .bottom-promo {
        padding: 40px 14px;
    }

    .product-description {
        padding: 40px 14px 14px;
    }

    .product-details {
        padding: 0 14px 40px;
    }

    .usage-section {
        padding: 40px 14px;
    }

    /* Product */
    .product-desc-inner {
        gap: 40px;
    }

    .product-image-wrapper {
        margin-left: 0;
        margin-right: 0;
        display: flex;
        justify-content: center;
    }

    .product-main-image {
        max-width: 100%;
        width: 100%;
        border-radius: 16px;
        height: 45vh;
        object-fit: cover;
        object-position: center center;
    }

    .badge-arome-img {
        width: 80px;
        left: -10px;
        bottom: -10px;
    }

    .oil-splash-decoration {
        display: none !important;
    }

    .product-info {
        text-align: left;
    }

    .product-info h2 {
        text-align: center;
        font-size: clamp(24px, 6vw, 32px);
    }

    .product-features li {
        font-size: 15px;
        text-align: center;
        padding-left: 0;
    }

    .mobile-br {
        display: inline;
    }

    .product-features li::before {
        display: none;
    }

    /* Accordion */
    .details-inner, .faq-inner {
        max-width: 100%;
    }

    .accordion-header {
        padding: 14px 16px;
        font-size: 15px;
    }

    .accordion-content-inner {
        padding: 0 16px 16px;
    }

    .accordion-content-inner p {
        font-size: 14px;
    }

    /* Practical mobile */
    .practical-section {
        padding: 40px 14px;
    }

    .practical-inner h2 {
        margin-bottom: 20px;
        font-size: clamp(24px, 6vw, 32px);
    }

    .practical-banner {
        font-size: 14px;
        padding: 10px 20px;
        margin-bottom: 24px;
    }

    .practical-orbit {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .practical-orbit-center {
        display: none;
    }

    .practical-orbit-col {
        display: contents;
        max-width: 100%;
    }

    .practical-orbit-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        background: #FFFFFF;
        border-radius: 16px;
        padding: 16px 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .practical-orbit-item-right {
        flex-direction: column;
        justify-content: center;
    }

    .practical-orbit-badge {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .practical-orbit-text,
    .practical-orbit-text-right {
        text-align: center;
        align-items: center;
    }

    .practical-orbit-text strong,
    .practical-orbit-text-right strong {
        font-size: 14px;
    }

    .practical-orbit-text span,
    .practical-orbit-text-right span {
        font-size: 12px;
    }

    /* Usage mobile */
    .usage-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }

    .usage-header h2 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .usage-icons-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        width: 100%;
    }

    .usage-icons-row .recipe-search-wrapper {
        grid-column: 1 / -1;
        margin-left: 0;
        width: 100%;
        flex-shrink: 1;
    }

    .usage-icons-row .recipe-search {
        width: 100%;
        font-size: 16px;
        box-sizing: border-box;
    }

    .usage-icon-card {
        padding: 12px 8px;
        border-radius: 12px;
        min-width: 0;
    }

    .usage-icon-card span {
        font-size: 13px;
    }

    .usage-icon-img {
        width: 48px;
        height: 48px;
    }

    .recipe-card {
        flex: 0 0 220px;
        height: 340px;
    }

    .recipe-card-front,
    .recipe-card-back {
        border-radius: 16px;
    }

    .recipe-overlay-content {
        padding: 14px;
    }

    .recipe-overlay-content h4 {
        font-size: 16px;
    }

    .recipe-overlay-content p {
        font-size: 13px;
    }

    .recipe-card-back {
        padding: 20px 16px;
    }

    .recipe-card-back h4 {
        font-size: 18px;
    }

    .recipe-card-back p {
        font-size: 13px;
    }

    .recipe-slider-btn {
        width: 36px;
        height: 36px;
    }

    .recipe-slider-btn-left {
        left: -6px;
    }

    .recipe-slider-btn-right {
        right: -6px;
    }

    /* Comparison mobile */
    .comparison-inner h2 {
        margin-bottom: 20px;
        font-size: clamp(22px, 5.5vw, 30px);
    }

    .comparison-layout {
        gap: 12px;
    }

    .comp-side-title {
        display: block;
        font-size: 16px;
        margin-bottom: 6px;
    }

    .comp-card-side {
        max-width: 100%;
        padding: 20px;
        flex-direction: row;
        gap: 16px;
        align-items: center;
        border-radius: 16px;
    }

    .comp-card-img {
        width: 180px;
        height: 140px;
        margin: 0 auto;
        flex-shrink: 0;
        border-radius: 12px;
        object-fit: contain;
    }

    .comp-card-list {
        align-items: flex-start;
        gap: 2px;
    }

    .comp-line {
        font-size: 13px;
        gap: 6px;
        margin-bottom: 2px;
    }

    .comp-dot {
        width: 18px;
        height: 18px;
        min-width: 18px;
        border-radius: 5px;
        font-size: 10px;
    }

    /* Holéo center card mobile */
    .comp-card-center {
        max-width: 100%;
        padding: 20px 16px 0 16px;
        border-radius: 16px;
        overflow: hidden;
    }

    .comp-bottle-wrapper {
        width: 130px;
        min-width: 130px;
        margin-top: 0;
        margin-left: 0;
        margin-right: auto;
        align-self: flex-end;
        margin-bottom: -4px;
        position: relative;
    }

    .comp-bottle {
        width: 130px;
        margin-bottom: 0;
        display: block;
    }

    .comp-splash,
    .comp-butter-curl,
    .comp-leaf-right,
    .comp-leaf-right-2,
    .comp-leaf-left {
        display: none;
    }

    .comp-center-content {
        flex-direction: row;
        align-items: stretch;
        gap: 10px;
    }

    .comp-center-text {
        text-align: left;
        padding-top: 0;
        padding-bottom: 20px;
        align-items: flex-start;
        width: auto;
        flex: 1;
        order: -1;
    }

    .comp-center-text .comp-line {
        font-size: 13px;
    }

    .comp-holeo-logo {
        width: 80px;
    }

    .comp-holeo-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    /* Story mobile */
    .story-content {
        text-align: center;
    }

    .story-content h2 {
        text-align: center;
        font-size: clamp(24px, 6vw, 32px);
    }

    .story-content p {
        font-size: 15px;
        text-align: center;
    }

    .story-companies {
        gap: 16px;
    }

    .company-circle {
        width: auto;
        flex: 1;
    }

    .company-circle-img {
        width: 150px;
        height: 150px;
    }

    .company-label {
        max-width: none;
        padding: 0;
        box-shadow: none;
        border: none;
        background: transparent;
    }

    .company-label h4 {
        font-size: 13px;
    }

    .company-label p {
        font-size: 11px;
    }

    .company-label-bottom,
    .company-label-top {
        position: static;
        transform: none;
    }

    .company-label-logo {
        width: 28px;
        height: 28px;
    }

    .company-label-with-logo {
        justify-content: center;
    }

    /* Values mobile */
    .values-inner h2 {
        font-size: clamp(22px, 5.5vw, 30px);
    }

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

    .value-card {
        min-height: 200px;
    }

    .value-card-front img {
        border-radius: 14px;
    }

    .value-card-back h3 {
        font-size: 14px;
    }

    .value-card-back p {
        font-size: 11px;
        line-height: 1.4;
    }

    .value-card-back {
        padding: 14px 10px;
        border-radius: 14px;
    }

    .value-card-back-icon {
        font-size: 28px;
        margin-bottom: 6px;
    }

    /* Pro mobile */
    .pro-section {
        margin: 0 10px;
        border-radius: 20px;
        padding: 36px 16px;
    }

    .pro-inner h2 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .pro-image {
        display: none;
    }

    .pro-desc {
        font-size: 15px;
    }

    .pro-features li {
        font-size: 15px;
        text-align: center;
        padding-left: 0;
    }

    .pro-features li::before {
        display: none;
    }

    .pro-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .pro-buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* Articles mobile */
    .articles-section {
        padding: 40px 14px;
    }

    .articles-inner h2 {
        font-size: clamp(22px, 5.5vw, 28px);
        margin-bottom: 24px;
    }

    .articles-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 20px;
        overflow: hidden;
        max-width: 100%;
    }

    .articles-filters {
        overflow-x: visible;
        flex-wrap: wrap;
        padding-bottom: 4px;
        gap: 8px;
        max-width: 100%;
    }

    .articles-filter-btn {
        padding: 7px 14px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .articles-search-wrapper {
        flex-shrink: 1;
        width: 100%;
        max-width: 100%;
    }

    .articles-search {
        width: 100% !important;
        font-size: 16px;
        box-sizing: border-box;
    }

    .articles-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
        padding-bottom: 8px;
    }

    /* Sur mobile : tous les articles visibles dans le scroll horizontal */
    .articles-grid:not(.articles-expanded) .article-card:nth-child(n+4) {
        display: block;
    }

    /* Cacher le bouton "voir plus" sur mobile (scroll horizontal suffit) */
    .articles-show-more-wrapper {
        display: none !important;
    }

    .articles-grid::-webkit-scrollbar {
        display: none;
    }

    .article-card {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }

    /* When filtering on mobile, switch to grid to show/hide properly */
    .articles-grid.filtered {
        display: grid;
        grid-template-columns: 1fr;
        overflow-x: visible;
        scroll-snap-type: none;
    }

    .articles-grid.filtered .article-card {
        flex: none;
    }

    .article-card-img {
        height: 160px;
    }

    .article-card-content {
        padding: 16px;
    }

    .article-card-content h3 {
        font-size: 15px;
    }

    .article-card-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    /* FAQ mobile */
    .faq-section {
        padding: 40px 14px;
    }

    .faq-inner h2 {
        font-size: clamp(22px, 5.5vw, 28px);
        margin-bottom: 24px;
    }

    /* Contact section mobile */
    .contact-section {
        padding: 40px 14px;
    }

    .contact-section-inner {
        flex-direction: column;
        gap: 30px;
    }

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

    .contact-section-text h2 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .contact-section-text p {
        font-size: 15px;
    }

    .contact-section-info {
        align-items: center;
    }

    .contact-section-form {
        padding: 24px 16px;
        border-radius: 16px;
        width: 100%;
    }

    /* Footer CTA mobile */
    .footer-cta {
        padding: 32px 14px;
    }

    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-cta h3 {
        font-size: 24px;
    }

    .footer-cta p {
        font-size: 15px;
    }

    .footer-cta-map {
        flex: none;
        width: 120px;
    }

    .stores-grid-cta {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        padding: 0 4px 12px;
        scrollbar-width: none;
    }

    .stores-grid-cta::-webkit-scrollbar {
        display: none;
    }

    .store-card-cta {
        min-width: 200px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 14px 16px;
    }

    .store-card-cta h4 {
        font-size: 14px;
    }

    .store-card-cta p {
        font-size: 12px;
    }

    .stores-contact-cta {
        font-size: 13px;
        padding: 16px 10px;
    }

    /* Footer mobile */
    .footer-main {
        padding: 32px 14px 0;
    }

    .footer-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        text-align: center;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        font-size: 13px;
    }

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

    .footer-col h4 {
        font-size: 15px;
    }

    .footer-col li {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 16px 14px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

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

    /* Contact bubble mobile — masquée */
    .contact-bubble {
        display: none;
    }

    .contact-panel {
        width: calc(100vw - 32px);
        right: -8px;
    }
}

/* =============================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================= */
@media (max-width: 480px) {
    .hero {
        margin: 6px 6px 0;
        padding: 20px 12px 0;
        border-radius: 14px;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .hero-content {
        text-align: left;
    }

    .hero-content h1 {
        font-size: clamp(22px, 6.5vw, 30px);
    }

    .hero-features {
        display: inline-block;
        text-align: left;
    }

    .hero-features li {
        font-size: 14px;
    }

    .hero-image {
        margin: 0 -12px;
        justify-content: center;
        overflow: hidden;
    }

    .hero-image img {
        width: 115%;
        max-width: 115%;
        max-height: none;
        position: relative;
        left: -4%;
    }

    .benefits-bar {
        margin: 6px 6px 0;
        border-radius: 14px;
        padding: 12px 4px;
    }

    .benefit-text {
        font-size: 12px;
    }

    .benefit-icon-img {
        width: 32px;
        height: 32px;
    }

    .story-companies {
        gap: 12px;
    }

    .company-circle-img {
        width: 130px;
        height: 130px;
    }

    .company-label h4 {
        font-size: 12px;
    }

    .company-label p {
        font-size: 10px;
    }

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

    .pro-section {
        margin: 0 6px;
        border-radius: 14px;
        padding: 30px 12px;
    }

    .pro-inner h2 {
        font-size: clamp(22px, 6vw, 28px);
    }

    .practical-orbit {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .practical-orbit-item {
        padding: 12px 8px;
    }

    .practical-orbit-badge {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }

    .practical-orbit-text strong,
    .practical-orbit-text-right strong {
        font-size: 12px;
    }

    .practical-orbit-text span,
    .practical-orbit-text-right span {
        font-size: 11px;
    }

    .recipe-card {
        flex: 0 0 200px;
        height: 300px;
    }

    .recipe-card-front,
    .recipe-card-back {
        border-radius: 14px;
    }

    .recipe-overlay-content {
        padding: 10px;
    }

    .recipe-overlay-content h4 {
        font-size: 14px;
    }

    .recipe-overlay-content p {
        font-size: 12px;
    }

    .recipe-badge {
        font-size: 11px;
        padding: 3px 8px;
    }

    /* Comparison 480 */
    .comp-card-img {
        width: 150px;
        height: 110px;
    }

    .comp-card-side {
        padding: 14px;
        gap: 12px;
    }

    .comp-line {
        font-size: 12px;
    }

    .comp-card-center {
        padding: 16px 12px;
    }

    /* Footer 480 */
    .footer-cta-map {
        display: none;
    }

    .footer-cta h3 {
        font-size: 20px;
    }

    .footer-inner {
        gap: 12px;
    }

    .footer-col h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer-col li {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .faq-inner h2 {
        font-size: clamp(20px, 5vw, 24px);
    }

    .comparison-inner h2 {
        font-size: clamp(20px, 5vw, 26px);
    }

    .story-content h2 {
        font-size: clamp(22px, 5.5vw, 28px);
    }

    .values-inner h2 {
        font-size: clamp(20px, 5vw, 26px);
    }
}

/* =============================
   FLOATING RECETTES BUTTON (mobile only)
   ============================= */
.floating-recettes-btn {
    display: none;
}

@media (max-width: 768px) {
    .floating-recettes-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        position: fixed;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        padding: 14px 28px;
        border-radius: 100px;
        background: #3B7D23;
        color: #fff;
        font-family: 'Raleway', sans-serif;
        font-size: 14px;
        font-weight: 800;
        text-decoration: none;
        white-space: nowrap;
        box-shadow: 0 4px 20px rgba(59, 125, 35, 0.35);
        z-index: 999;
        animation: recettesBtnEntrance 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.5s both;
    }
    .floating-recettes-btn:active {
        transform: translateX(-50%) scale(0.97);
    }
    .floating-recettes-btn svg {
        flex-shrink: 0;
    }
}

@keyframes recettesBtnEntrance {
    from { opacity: 0; transform: translateX(-50%) scale(0.8) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) scale(1) translateY(0); }
}

/* =============================
   CONTACT BUBBLE
   ============================= */
.contact-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.contact-bubble-btn {
    height: 48px;
    padding: 0 20px;
    border-radius: 100px;
    background: #F6CE1A;
    border: none;
    gap: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.2s, box-shadow 0.3s;
    animation: bubbleEntrance 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1s both;
}

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

.contact-bubble-btn:hover {
    transform: scale(1.06);
    background: #e5bc0f;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.contact-bubble-label {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #14181E;
    white-space: nowrap;
}

.contact-panel {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.95);
    transform-origin: bottom right;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.contact-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.contact-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #3B7D23;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 15px;
}

.contact-panel-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.contact-panel-close:hover {
    opacity: 1;
}

.contact-panel-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

.contact-panel-form input,
.contact-panel-form textarea {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
    color: #14181E;
}

.contact-panel-form input:focus,
.contact-panel-form textarea:focus {
    border-color: #3B7D23;
}

.contact-panel-form .btn {
    align-self: stretch;
    text-align: center;
}

@media (max-width: 480px) {
    .contact-bubble {
        bottom: 16px;
        right: 16px;
    }

    .contact-panel {
        width: calc(100vw - 32px);
        right: 0;
    }
}

/* =============================
   COOKIE CONSENT POPUP
   ============================= */
.cookie-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    transition: opacity 0.4s ease;
}

.cookie-popup.hidden {
    opacity: 0;
    pointer-events: none;
}

.cookie-popup-inner {
    display: flex;
    max-width: 720px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    animation: cookieFadeIn 0.4s ease;
    overflow: hidden;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

/* Crumbs */
.cookie-crumb {
    position: absolute;
    border-radius: 50%;
    z-index: 11;
    pointer-events: none;
}

.cookie-crumb-1 {
    width: 6px; height: 6px;
    top: -10px; right: 70px;
    background: #D4A853;
    border-radius: 40% 60% 50% 45%;
}
.cookie-crumb-2 {
    width: 5px; height: 4px;
    top: -16px; right: 45px;
    background: #E8C87A;
    border-radius: 55% 45% 50% 40%;
}
.cookie-crumb-3 {
    width: 4px; height: 4px;
    top: -6px; right: 30px;
    background: #C9963E;
    border-radius: 45% 55% 40% 50%;
}

.cookie-recipe-img {
    width: 240px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.cookie-content {
    flex: 1;
    padding: 32px 28px 24px;
    text-align: left;
}

@keyframes cookieFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.cookie-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #14181E;
    margin-bottom: 12px;
}

.cookie-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.cookie-recipe {
    background: #FFF9E6;
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: left;
    overflow: hidden;
}

.cookie-recipe-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 18px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
}

.cookie-recipe-title {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #14181E;
}

.cookie-recipe-chevron {
    transition: transform 0.3s ease;
    color: #14181E;
    flex-shrink: 0;
}

.cookie-recipe-toggle.open .cookie-recipe-chevron {
    transform: rotate(180deg);
}

.cookie-recipe-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 18px;
}

.cookie-recipe-content.open {
    max-height: 200px;
    padding: 0 18px 14px;
}

.cookie-recipe-text {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 4px;
}

.cookie-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.cookie-actions .btn {
    flex: 1;
    min-width: 0;
}

.cookie-btn-accept,
.cookie-btn-refuse {
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
    border-radius: 12px;
}

@media (max-width: 620px) {
    .cookie-popup-inner {
        flex-direction: column;
    }

    .cookie-recipe-img {
        width: 100%;
        height: 120px;
    }
}

@media (max-width: 520px) {
    .cookie-popup-inner {
        flex-direction: column;
    }

    .cookie-popup {
        padding: 10px;
        align-items: center;
    }

    .cookie-recipe-img {
        height: 130px;
    }

    .cookie-recipe {
        display: none;
    }

    .cookie-content {
        padding: 14px;
    }

    .cookie-heading {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .cookie-desc {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .cookie-recipe {
        margin-bottom: 12px;
    }

    .cookie-recipe-toggle {
        padding: 10px 14px;
    }

    .cookie-recipe-title {
        font-size: 12px;
    }

    .cookie-recipe-text {
        font-size: 11px;
    }

    .cookie-actions {
        flex-direction: column;
        gap: 6px;
    }

    .cookie-actions .btn {
        width: 100%;
        padding: 10px;
        font-size: 13px;
    }
}

/* =============================
   RESPONSIVE — iPHONE (max-width: 395px)
   iPhone 16: 393px / iPhone 12: 390px / iPhone Mini: 375px
   ============================= */
@media (max-width: 395px) {
    /* Header iPhone */
    .header-inner {
        padding: 0 12px;
    }

    .header-right {
        gap: 8px;
    }

    .lang-current {
        padding: 4px 8px;
    }

    .flag-icon {
        width: 20px;
        height: 15px;
    }

    .lang-chevron {
        width: 8px;
        height: 5px;
    }

    .logo {
        height: 22px;
    }

    /* Top banner */
    .top-banner {
        font-size: 12px;
        padding: 6px 8px;
    }

    /* Hero iPhone */
    .hero {
        margin: 4px 4px 0;
        padding: 16px 10px 0;
        border-radius: 12px;
    }

    .hero-content h1 {
        font-size: 26px;
        line-height: 1.15;
    }

    .hero-features li {
        font-size: 15px;
    }

    .hero-buttons .btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .hero-image img {
        width: 120%;
        max-width: 120%;
        left: -5%;
    }

    /* Benefits bar iPhone */
    .benefits-bar {
        margin: 4px 4px 0;
        padding: 10px 2px;
        border-radius: 12px;
    }

    .benefit-icon-img {
        width: 30px;
        height: 30px;
    }

    .benefit-text {
        font-size: 12px;
    }

    /* Product iPhone */
    .product-description {
        padding: 30px 10px 10px;
    }

    .product-details {
        padding: 0 10px 30px;
    }

    .product-info h2 {
        font-size: 22px;
    }

    .product-features li {
        font-size: 14px;
    }

    .product-main-image {
        height: 38vh;
        border-radius: 12px;
    }

    .badge-arome-img {
        width: 65px;
    }

    /* Practical iPhone */
    .practical-section {
        padding: 30px 10px;
    }

    .practical-inner h2 {
        font-size: 22px;
    }

    .practical-banner {
        font-size: 12px;
        padding: 8px 14px;
    }

    .practical-orbit {
        gap: 6px;
    }

    .practical-orbit-item {
        padding: 10px 6px;
    }

    .practical-orbit-badge {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }

    .practical-orbit-text strong,
    .practical-orbit-text-right strong {
        font-size: 11px;
    }

    .practical-orbit-text span,
    .practical-orbit-text-right span {
        font-size: 10px;
    }

    /* Usage iPhone */
    .usage-section {
        padding: 30px 10px;
    }

    .usage-header h2 {
        font-size: 22px;
    }

    .usage-icons-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        width: 100%;
    }

    .usage-icons-row .recipe-search-wrapper {
        grid-column: 1 / -1;
        margin-left: 0;
        width: 100%;
    }

    .usage-icons-row .recipe-search {
        width: 100%;
        font-size: 16px;
        box-sizing: border-box;
    }

    .usage-icon-card {
        padding: 10px 6px;
        min-width: 0;
    }

    .usage-icon-card span {
        font-size: 12px;
    }

    .usage-icon-img {
        width: 40px;
        height: 40px;
    }

    /* Recipes iPhone */
    .recipe-card {
        flex: 0 0 180px;
        height: 270px;
    }

    .recipe-card-front,
    .recipe-card-back {
        border-radius: 12px;
    }

    .recipe-overlay-content h4 {
        font-size: 13px;
    }

    .recipe-overlay-content p {
        font-size: 11px;
    }

    .recipe-card-back {
        padding: 16px 12px;
    }

    .recipe-card-back h4 {
        font-size: 15px;
    }

    .recipe-card-back p {
        font-size: 12px;
    }

    /* Comparison iPhone */
    .comparison-section {
        padding: 30px 8px;
    }

    .comparison-inner h2 {
        font-size: 20px;
    }

    .comparison-layout {
        gap: 8px;
    }

    .comp-card-side {
        padding: 14px;
        gap: 10px;
        border-radius: 12px;
    }

    .comp-card-img {
        width: 120px;
        height: 90px;
    }

    .comp-line {
        font-size: 11px;
    }

    .comp-dot {
        width: 16px;
        height: 16px;
        min-width: 16px;
        font-size: 9px;
    }

    .comp-card-center {
        padding: 14px 10px 0;
        border-radius: 12px;
    }

    .comp-holeo-logo {
        width: 65px;
    }

    .comp-holeo-title {
        font-size: 18px;
    }

    .comp-bottle-wrapper {
        width: 110px;
        min-width: 110px;
    }

    .comp-bottle {
        width: 110px;
    }

    /* Story iPhone */
    .story-section {
        padding: 30px 10px;
    }

    .story-content h2 {
        font-size: 22px;
    }

    .story-content p {
        font-size: 14px;
    }

    .story-companies {
        gap: 10px;
    }

    .company-circle-img {
        width: 120px;
        height: 120px;
    }

    .company-label h4 {
        font-size: 11px;
    }

    .company-label p {
        font-size: 9px;
    }

    /* Values iPhone */
    .values-section {
        padding: 30px 10px;
    }

    .values-inner h2 {
        font-size: 20px;
    }

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

    .value-card {
        min-height: 150px;
    }

    .value-card-back h3 {
        font-size: 13px;
    }

    .value-card-back p {
        font-size: 10px;
    }

    /* Pro section iPhone */
    .pro-section {
        margin: 0 4px;
        padding: 24px 10px;
        border-radius: 12px;
    }

    .pro-inner h2 {
        font-size: 20px;
    }

    .pro-desc {
        font-size: 14px;
    }

    .pro-features li {
        font-size: 13px;
    }

    .pro-buttons .btn {
        font-size: 14px;
        padding: 12px 16px;
    }

    /* Articles iPhone */
    .articles-section {
        padding: 30px 10px;
    }

    .articles-inner h2 {
        font-size: 20px;
    }

    .article-card {
        flex: 0 0 230px;
    }

    .article-card-img {
        height: 140px;
    }

    .article-card-content {
        padding: 14px;
    }

    .article-card-content h3 {
        font-size: 14px;
    }

    .article-card-content p {
        font-size: 12px;
    }

    /* FAQ iPhone */
    .faq-section {
        padding: 30px 10px;
    }

    .faq-inner h2 {
        font-size: 20px;
    }

    .accordion-header {
        padding: 12px 14px;
        font-size: 14px;
    }

    .accordion-content-inner {
        padding: 0 14px 14px;
    }

    .accordion-content-inner p {
        font-size: 13px;
    }

    /* Contact section iPhone */
    .contact-section {
        padding: 30px 10px;
    }

    .contact-section-text h2 {
        font-size: 22px;
    }

    .contact-section-text p {
        font-size: 14px;
    }

    .contact-section-form {
        padding: 20px 12px;
        border-radius: 14px;
    }

    .contact-section-form input,
    .contact-section-form textarea {
        font-size: 14px;
        padding: 12px 14px;
    }

    /* Bottom promo iPhone */
    .bottom-promo {
        padding: 30px 10px;
    }

    /* Footer CTA iPhone */
    .footer-cta {
        padding: 24px 10px;
    }

    .footer-cta h3 {
        font-size: 18px;
    }

    .footer-cta p {
        font-size: 14px;
    }

    /* Store cards iPhone */
    .store-card-cta {
        min-width: 170px;
    }

    /* Footer iPhone */
    .footer-main {
        padding: 24px 10px 0;
    }

    .footer-inner {
        gap: 10px;
    }

    .footer-col h4 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .footer-col li {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .footer-bottom {
        padding: 12px 10px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    /* Contact bubble iPhone */
    .contact-bubble {
        bottom: 12px;
        right: 12px;
    }

    .contact-bubble-btn {
        height: 42px;
        padding: 0 14px;
    }

    .contact-bubble-label {
        font-size: 12px;
    }

    .contact-panel {
        width: calc(100vw - 24px);
    }

    /* Cookie popup iPhone */
    .cookie-popup {
        padding: 8px;
    }

    .cookie-recipe-img {
        height: 110px;
    }

    .cookie-heading {
        font-size: 15px;
    }

    .cookie-desc {
        font-size: 11px;
    }
}

/* =============================
   ARTICLE PAGES
   ============================= */
.article-page-header {
    background: #FFFDF4;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px clamp(16px, 4vw, 60px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.article-page-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-back-btn {
    font-size: 13px;
    padding: 10px 20px;
}

.article-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px clamp(16px, 4vw, 40px) 80px;
}

.article-page-content {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.article-page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.article-page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-page-hero .article-badge {
    position: absolute;
    top: 20px;
    left: 20px;
}

.article-page-body {
    padding: 40px;
}

.article-page-body time {
    font-size: 12px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-page-body h1 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    line-height: 1.2;
    color: #14181E;
    margin: 12px 0 24px;
}

.article-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.article-page-body h2 {
    font-size: 22px;
    font-weight: 800;
    color: #14181E;
    margin: 32px 0 12px;
}

.article-page-body p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.article-page-body ul,
.article-page-body ol {
    margin: 0 0 16px 24px;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.article-page-body li {
    margin-bottom: 6px;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 15px;
}

.article-table th {
    background: #f6f2e3;
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    color: #14181E;
}

.article-table td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: #444;
}

.article-cta {
    margin-top: 40px;
    padding: 24px;
    background: #f6f2e3;
    border-radius: 16px;
    text-align: center;
}

.article-cta p {
    font-size: 16px;
    font-weight: 600;
    color: #14181E;
    margin: 0;
}

.article-cta a {
    color: #3B7D23;
    font-weight: 700;
    text-decoration: underline;
}

/* Article layout with share sidebar */
.article-page-layout {
    position: relative;
}

/* Article share sidebar (left of article, fixed position) */
.article-share-sidebar {
    position: fixed;
    left: calc(50% - 446px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.article-share-sidebar .article-share-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #bbb;
    margin-bottom: 2px;
    white-space: nowrap;
}

.article-share-sidebar .article-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    color: #444;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    font-size: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.article-share-sidebar .article-share-btn:hover {
    border-color: #3B7D23;
    color: #3B7D23;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.article-share-sidebar .article-share-btn svg {
    flex-shrink: 0;
}

.article-share-sidebar .article-share-btn.copied {
    background: #3B7D23;
    border-color: #3B7D23;
    color: #fff;
}

.article-share-sidebar .article-share-btn.copied svg {
    color: #fff;
}

/* Tooltip on hover */
.article-share-sidebar .article-share-btn {
    position: relative;
}

.article-share-sidebar .article-share-btn::after {
    content: attr(data-label);
    position: absolute;
    left: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%) translateX(-4px);
    background: #14181E;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}

.article-share-sidebar .article-share-btn:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Legacy bottom share bar (hidden on desktop, shown on mobile) */
.article-share {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    display: none;
}

.article-share-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 14px;
}

.article-share-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.article-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 100px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.article-share-btn:hover {
    border-color: #3B7D23;
    color: #3B7D23;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.article-share-btn svg {
    flex-shrink: 0;
}

.article-share-btn.copied {
    background: #3B7D23;
    border-color: #3B7D23;
    color: #fff;
}

.article-share-btn.copied svg {
    color: #fff;
}

.article-page-footer {
    text-align: center;
    padding: 24px;
    font-size: 13px;
    color: #999;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.article-page-footer a {
    color: #666;
}

@media (max-width: 1024px) {
    .article-share-sidebar {
        display: none;
    }

    .article-share {
        display: block;
    }
}

@media (max-width: 768px) {
    .article-page-hero {
        height: 240px;
    }

    .article-page-body {
        padding: 24px 20px;
    }

    .article-page-body h1 {
        font-size: 24px;
    }

    .article-intro {
        font-size: 16px;
    }

    .article-page-body h2 {
        font-size: 19px;
    }

    .article-page-body p,
    .article-page-body ul,
    .article-page-body ol {
        font-size: 15px;
    }

    .article-table {
        font-size: 13px;
    }

    .article-table th,
    .article-table td {
        padding: 8px 10px;
    }

    .article-share-btns {
        gap: 8px;
    }

    .article-share-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}
