﻿/* ===== ARBORIA — Police principale du site ===== */
@font-face {
    font-family: 'Arboria';
    src: url('../fonts/Arboria-Book.ttf') format('truetype');
    font-weight: 300 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Arboria';
    src: url('../fonts/Arboria-Medium.otf') format('opentype');
    font-weight: 500 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Arboria';
    src: url('../fonts/Arboria_Black.otf') format('opentype');
    font-weight: 700 900;
    font-style: normal;
    font-display: swap;
}

/* ===== ROOT VARIABLES ===== */
:root {
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dark: #A68B3D;
    /* Fond neutre clair */
    --dark:  #F7F3EC;
    --dark2: #EDE7DA;
    --dark3: #FFFFFF;
    --dark4: #E4DDD0;
    /* Verts naturels */
    --green: #1C4A28;
    --green-light: #2E7A3E;
    --green-accent: #3DB564;
    --teal: #0D6E5A;
    --teal-light: #14A882;
    /* Texte */
    --cream: #F2EEE4;
    --text: #1A1108;
    --text-muted: #4A3D30;
    --white: #FFFFFF;
    --gray: #5C4A38;
    --gray-light: #7A6050;
    --red: #D94433;
    /* Effets */
    --glass-bg: rgba(0,0,0,0.025);
    --glass-border: rgba(0,0,0,0.08);
    --shadow-gold: 0 20px 60px rgba(201,168,76,0.2);
    --shadow-deep: 0 20px 60px rgba(0,0,0,0.12);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
/* ── Scrollbar personnalisée ── */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #ffffff;
}
::-webkit-scrollbar-thumb {
    background: #C2641B;
    border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
    background: #D97D3A;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #C2641B #ffffff;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Arboria', 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    max-width: 100%;
    line-height: 1.6;
}

/* Le hero garde son texte clair sur fond image sombre */
#hero {
    color: var(--cream);
}

.bg-dark2 {
    background: var(--dark2);
}

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

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

ul {
    list-style: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

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

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

/* ===== UTILITIES ===== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 120px 0;
}

.bg-dark2 {
    background: var(--dark2);
    position: relative;
}

.bg-gradient {
    background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(237,232,220,0.5) 50%, rgba(247,243,236,0) 100%);
    border-top: 1px solid rgba(201,168,76,0.12);
    border-bottom: 1px solid rgba(201,168,76,0.12);
}

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

/* ===== LOADER ===== */
#loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #F7F3EC; /* fond intact */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Icône 3D */
.loader-icon {
    position: relative;
    margin-bottom: 4px;
}
.loader-shield {
    width: 80px;
    height: 90px;
    filter: drop-shadow(0 12px 28px rgba(194,100,27,0.35));
    animation: loader-float 2s ease-in-out infinite, loader-fadein 0.6s ease both;
}
.loader-shadow {
    animation: loader-shadow-pulse 2s ease-in-out infinite;
}

@keyframes loader-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
@keyframes loader-shadow-pulse {
    0%, 100% { opacity: 0.15; transform: scaleX(1); }
    50%       { opacity: 0.07; transform: scaleX(0.75); }
}
@keyframes loader-fadein {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Texte */
.loader-logo {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #C2641B;
    text-shadow:
        2px 2px 0 rgba(194,100,27,0.2),
        4px 4px 0 rgba(194,100,27,0.1);
    animation: loader-fadein 0.6s 0.2s ease both;
}
.loader-tagline {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(194,100,27,0.5);
    animation: loader-fadein 0.6s 0.35s ease both;
}

/* Barre de progression */
.loader-bar {
    width: 180px;
    height: 2px;
    background: rgba(194,100,27,0.15);
    overflow: hidden;
    animation: loader-fadein 0.6s 0.45s ease both;
}
.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #C2641B, #D97D3A, transparent);
    animation: loader-progress 1.4s ease-in-out infinite;
}
@keyframes loader-progress {
    0%   { transform: translateX(-150%); }
    100% { transform: translateX(400%); }
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s;
    background: transparent;
}

nav.scrolled {
    background: rgba(247,243,236,0.97);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 12px 60px;
    box-shadow: 0 1px 0 rgba(194,100,27,0.15), 0 4px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(194,100,27,0.12);
}

.nav-logo {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #C2641B, #D97D3A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

/* Liens blancs sur fond transparent (hero) */
nav:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.88);
}

nav:not(.scrolled) .nav-links a:hover,
nav:not(.scrolled) .nav-links a.active {
    color: #fff;
}

nav:not(.scrolled) .nav-cart {
    background: rgba(194, 100, 27, 0.85);
    color: #fff;
}

nav:not(.scrolled) .nav-cart:hover {
    background: #C2641B;
    color: #fff;
}

.nav-links a {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
    color: #2E2820;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C2641B;
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #C2641B;
}

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

.nav-cart {
    position: relative;
    cursor: pointer;
    background: #C2641B;
    border: none;
    color: #fff;
    padding: 11px 22px;
    border-radius: 0;
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-cart:hover {
    background: #141414;
    color: #fff;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--red);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
}

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

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

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

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 60px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s 1.6s both;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    writing-mode: vertical-rl;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(0.3); opacity: 0.5; }
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
    overflow: hidden;
    color: var(--text);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200,120,60,0.1) 0%, transparent 65%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,120,60,0.2), transparent);
}

.page-header .overline {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text);
}

.page-header h1 span {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--gray);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
}

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ===== POLICE SECONDAIRE (Arboria) ===== */
#hero .hero-desc,
#hero .btn-primary,
#hero .btn-secondary,
#hero .hero-trust-text,
#hero .hero-avatar,
.alf-text p,
.alf-features li,
.alf-btn {
    font-family: 'Arboria', 'Inter', sans-serif;
}

#hero .btn-primary,
#hero .btn-secondary,
.alf-features li,
.alf-btn {
    font-weight: 500;
}

/* ===== POLICE PRINCIPALE (Arboria Black) ===== */
#hero .hero-title,
.alf-title {
    font-family: 'Arboria', sans-serif;
    font-weight: 900;
}

#hero .hero-title {
    font-size: clamp(2rem, 4.4vw, 3.6rem);
    line-height: 1.28;
    letter-spacing: 1px;
    margin-bottom: 22px;
    padding-top: 0.12em;
    overflow: visible;
}

/* ===== HERO SLIDER ===== */
.hero-slides {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide .hero-bg img {
    transform: scale(1.08);
    transition: transform 7s ease;
}

.hero-slide.active .hero-bg img {
    transform: scale(1);
}

.hero-slide .hero-content > * {
    opacity: 0;
}

.hero-slide.active .hero-title { animation: fadeInUp 0.9s 0.3s both; }
.hero-slide.active .hero-desc { animation: fadeInUp 0.9s 0.5s both; }
.hero-slide.active .hero-btns { animation: fadeInUp 0.9s 0.7s both; }
.hero-slide.active .hero-trust { animation: fadeInUp 0.9s 0.9s both; }

/* ===== HERO ARROWS ===== */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.4);
    background: rgba(15,20,16,0.45);
    color: var(--gold-light);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    display: grid;
    place-items: center;
}

.hero-arrow:hover {
    background: rgba(194,100,27,0.85);
    color: #fff;
    border-color: transparent;
}

.hero-arrow.prev { left: 28px; }
.hero-arrow.next { right: 28px; }

/* ===== HERO DOTS ===== */
.hero-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(245,240,232,0.35);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: #C2641B;
    width: 34px;
    border-radius: 6px;
}

/* ===== ALFRED ABOUT SECTION ===== */
.alf-about {
    position: relative;
    background-color: #EFEBE3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M21 15h6v6h6v6h-6v6h-6v-6h-6v-6h6z' fill='%23C2641B' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 48px 48px;
    background-repeat: repeat;
    overflow: hidden;
}

.alf-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(70% 60% at 80% 0%, rgba(194, 100, 27, 0.06) 0%, transparent 60%),
        radial-gradient(70% 60% at 20% 100%, rgba(46, 122, 62, 0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.alf-container {
    position: relative;
    z-index: 1;
}

.alf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.alf-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 7%;
}

.alf-media {
    overflow: hidden;
    min-height: 480px;
}

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

.alf-title {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #C2641B;
    margin-bottom: 24px;
}

.alf-text p {
    max-width: 480px;
    color: #5C4A33;
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

.alf-features {
    margin-top: 34px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.alf-feature {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.alf-feat-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #2E2820;
    margin-bottom: 12px;
}

.alf-feat-icon svg {
    width: 38px;
    height: 38px;
}

.alf-feat-body h4 {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    color: #2E2820;
    margin-bottom: 8px;
    line-height: 1.25;
}

.alf-feat-body p {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #6B5A40;
    margin: 0;
}

.alf-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 16px 34px;
    background: #141414;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
}

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

.alf-row-reverse .alf-btn {
    margin-top: 40px;
}

@media (max-width: 900px) {
    .alf-row,
    .alf-row.alf-row-reverse {
        grid-template-columns: 1fr;
    }
    .alf-row .alf-media,
    .alf-row.alf-row-reverse .alf-media {
        order: -1;
        min-height: 340px;
    }
    .alf-text { padding: 56px 28px; }
}

@media (max-width: 560px) {
    .alf-features { flex-wrap: wrap; }
    .alf-feature { flex: 1 1 40%; }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(1.1);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8,14,10,0.95) 0%, rgba(8,14,10,0.78) 38%, rgba(28,74,40,0.35) 70%, rgba(8,14,10,0.55) 100%),
        radial-gradient(120% 80% at 0% 100%, rgba(13,110,90,0.30) 0%, transparent 55%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-up 6s infinite;
}

@keyframes float-up {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.8; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 120px 100px 60px;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 22px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 30px;
    margin-bottom: 32px;
    font-size: 0.7rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    animation: fadeInUp 1s 0.5s both;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--green-light);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s 0.7s both;
}

.hero-title span {
    display: inline-block;
    padding-top: 0.18em;
    margin-top: -0.18em;
    background: linear-gradient(135deg, #C2641B, #D97D3A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(245,240,232,0.7);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 1s 0.9s both;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s 1.1s both;
}

/* ===== HERO TRUST ROW ===== */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 38px;
    animation: fadeInUp 1s 1.3s both;
}

.hero-avatars {
    display: flex;
}

.hero-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: 2px solid rgba(8,14,10,0.9);
    margin-left: -12px;
}

.hero-avatar:first-child { margin-left: 0; }

.hero-avatar.more {
    background: rgba(255,255,255,0.12);
    color: var(--gold-light);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-trust-text {
    font-size: 0.85rem;
    color: rgba(245,240,232,0.75);
    line-height: 1.3;
}

.hero-stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* ===== HERO VISUAL CARD ===== */
.hero-visual {
    position: relative;
    justify-self: center;
    animation: fadeInUp 1.1s 0.9s both;
}

.hero-card {
    position: relative;
    width: 380px;
    max-width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.25);
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

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

.hero-card-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(15,20,16,0.72);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    animation: floatChip 5s ease-in-out infinite;
}

.chip-top { top: 22px; left: -28px; }
.chip-bottom { bottom: 22px; right: -28px; animation-delay: 1.5s; }

.hero-card-chip .chip-icon { font-size: 1.5rem; }

.hero-card-chip strong {
    display: block;
    font-size: 0.85rem;
    color: var(--cream);
}

.hero-card-chip small {
    font-size: 0.7rem;
    color: rgba(245,240,232,0.6);
}

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

.hero-stats {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1320px;
    margin: -20px auto 0;
    padding: 0 60px 50px;
    animation: fadeInUp 1s 1.5s both;
}

.stat {
    text-align: center;
    padding: 22px 30px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 18px;
    min-width: 130px;
    transition: var(--transition);
}

.stat:hover {
    background: rgba(201,168,76,0.08);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-4px);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-top: 8px;
    font-weight: 500;
}

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

/* ===== BUTTONS ===== */
.btn-primary {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 100%);
    background-size: 200% 200%;
    color: var(--dark);
    font-weight: 700;
    border: none;
    border-radius: 12px;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Arboria', 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 150%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.35), 0 2px 8px rgba(201,168,76,0.2);
    background-position: right center;
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: var(--text);
    font-weight: 600;
    border: 1.5px solid rgba(26,17,8,0.25);
    border-radius: 12px;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Arboria', 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(201,168,76,0.06);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.btn-secondary:hover {
    border-color: rgba(201,168,76,0.7);
    color: var(--gold-dark);
}

/* Hero CTA — aligné sur le style de la section alf-about */
#hero .btn-primary {
    background: #141414;
    background-size: auto;
    color: #fff;
    border-radius: 0;
    box-shadow: none;
}

#hero .btn-primary:hover {
    background: #B5651D;
    color: #fff;
    box-shadow: 0 12px 30px rgba(181, 101, 29, 0.35);
}

#hero .btn-secondary {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 0;
}

#hero .btn-secondary::before {
    background: rgba(181, 101, 29, 0.18);
}

#hero .btn-secondary:hover {
    border-color: #B5651D;
    color: #fff;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: 65px;
}

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

.section-header.left {
    text-align: left;
}

.section-header .overline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 600;
}

.section-header.center .overline {
    display: block;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
}

.section-header h2 span {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header.center h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto 0;
}

.section-header.left h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
    margin: 18px 0 0;
}

.section-header p {
    margin-top: 22px;
    color: var(--gray-light);
    max-width: 580px;
    line-height: 1.85;
    font-size: 0.97rem;
}

.section-header.center p {
    margin-left: auto;
    margin-right: auto;
}

/* ===== ABOUT GRID ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
    z-index: 1;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold-dark), transparent 50%, var(--brown-light));
    border-radius: calc(var(--radius-lg) + 2px);
    z-index: 0;
    opacity: 0.4;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.5px solid rgba(201,168,76,0.25);
    border-radius: var(--radius-lg);
    transform: translate(14px, 14px);
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: rgba(14,7,4,0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 18px 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(200,120,60,0.25);
    z-index: 2;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.about-badge .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
}

.about-badge .label {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 1px;
}

.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--dark2), rgba(34,18,10,0.6));
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.about-feature:hover {
    border-color: rgba(200,120,60,0.22);
    background: linear-gradient(135deg, var(--dark3), rgba(90,39,16,0.12));
    transform: translateX(4px);
}

.about-feature .icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(46,122,62,0.25);
}

.about-feature .text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--cream);
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 42px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: var(--text);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200,120,60,0.08) 0%, rgba(201,168,76,0.04) 50%, transparent 70%);
    transition: opacity 0.4s;
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 0 0 1px rgba(201,168,76,0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 28px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.08));
    border-color: rgba(201,168,76,0.4);
    transform: scale(1.05);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 22px;
}

.service-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    gap: 10px;
    color: var(--gold-light);
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--dark3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    color: var(--text);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 0 0 1px rgba(201,168,76,0.1);
}

.product-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, var(--dark3) 100%);
}

.product-content {
    padding: 30px;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-short-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 20px;
}

.product-price .currency {
    font-size: 1rem;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex: 1;
    padding: 14px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    font-family: 'Arboria', 'Inter', sans-serif;
}

.btn-details:hover {
    background: var(--gold);
    color: var(--dark);
}

.btn-add-cart {
    flex: 1;
    padding: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    color: var(--dark);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    font-family: 'Arboria', 'Inter', sans-serif;
}

.btn-add-cart:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}

/* ===== PROCESS ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 14%;
    right: 14%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4) 20%, rgba(201,168,76,0.4) 80%, transparent);
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.process-step:hover {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--dark);
    margin: 0 auto 28px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
    transition: var(--transition);
}

.process-number::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.25);
    transition: var(--transition);
}

.process-step:hover .process-number {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}

.process-step:hover .process-number::before {
    border-color: rgba(201,168,76,0.5);
    inset: -10px;
}

.process-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.testimonial-card {
    padding: 38px;
    background: var(--dark3);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: var(--text);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.testimonial-card:hover {
    border-color: rgba(201,168,76,0.2);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 18px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem;
    font-style: italic;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-dark), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.93rem;
}

.testimonial-location {
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-location::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.6rem;
}

.testimonial-quote {
    position: absolute;
    top: 16px;
    right: 28px;
    font-size: 5rem;
    color: rgba(201,168,76,0.07);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    pointer-events: none;
}

/* ===== CTA ===== */
#cta {
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200,120,60,0.1) 0%, rgba(201,168,76,0.05) 40%, transparent 65%);
    pointer-events: none;
}

#cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.cta-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 22px;
    line-height: 1.2;
}

.cta-content h2 span {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 38px;
    line-height: 1.85;
    font-size: 1.02rem;
}

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

/* ===== PAYMENT ===== */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.payment-card {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s;
}

.payment-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.payment-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.payment-desc {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ===== SHIPPING BANNER ===== */
.shipping-banner {
    background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(90,39,16,0.1));
    border: 1px solid rgba(200,120,60,0.18);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.shipping-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.shipping-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.shipping-info p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.shipping-info span {
    color: var(--gold);
    font-weight: 700;
}

/* ===== CART DRAWER ===== */
/* ============================================================
   CART DRAWER — charte Docteur Alfred
   #141414 dark · #C2641B terracotta · #EFEBE3 beige · #2E2820 brown
   ============================================================ */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -500px;
    width: 460px;
    max-width: 92vw;
    height: 100vh;
    z-index: 9999;
    background: #EFEBE3;
    border-left: 1px solid rgba(46,40,32,0.12);
    box-shadow: -20px 0 60px rgba(0,0,0,0.18);
    transition: right 0.4s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    color: #141414;
}

.cart-drawer.active {
    right: 0;
}

/* Header */
.cart-header {
    padding: 24px 28px;
    border-bottom: 1px solid rgba(46,40,32,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #141414;
    flex-shrink: 0;
}

.cart-header h3 {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #EFEBE3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h3 svg {
    width: 18px;
    height: 18px;
    color: #C2641B;
}

.cart-close {
    width: 36px;
    height: 36px;
    background: rgba(239,235,227,0.08);
    border: 1px solid rgba(239,235,227,0.15);
    color: #EFEBE3;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 0;
}

.cart-close:hover {
    background: #C2641B;
    border-color: #C2641B;
}

/* Items list */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    color: rgba(46,40,32,0.35);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(46,40,32,0.15) transparent;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 18px 28px;
    border-bottom: 1px solid rgba(46,40,32,0.07);
    background: #EFEBE3;
    transition: background .2s;
    align-items: flex-start;
}

.cart-item:hover {
    background: #F2EEE4;
}

.cart-item-img {
    width: 68px;
    height: 68px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(46,40,32,0.1);
}

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

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: #141414;
    line-height: 1.4;
    margin-bottom: 6px;
}

.cart-item-price {
    color: #C2641B;
    font-weight: 700;
    font-size: 1rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid rgba(46,40,32,0.15);
    color: #141414;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s;
    line-height: 1;
    border-radius: 0;
}

.qty-btn:hover {
    border-color: #C2641B;
    background: #C2641B;
    color: #fff;
}

.cart-item-qty span {
    font-weight: 700;
    font-size: 0.95rem;
    min-width: 20px;
    text-align: center;
    color: #141414;
}

.cart-item-remove {
    color: rgba(46,40,32,0.4);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-top: 10px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
    padding: 0;
}

.cart-item-remove:hover {
    color: #C2641B;
}

/* Empty state */
.cart-empty {
    text-align: center;
    padding: 80px 28px;
    color: rgba(46,40,32,0.4);
}

.cart-empty .icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: .5;
}

.cart-empty p {
    font-size: 0.9rem;
    color: rgba(46,40,32,0.45);
}

/* Footer */
.cart-footer {
    padding: 24px 28px;
    border-top: 2px solid #141414;
    background: #fff;
    flex-shrink: 0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(46,40,32,0.08);
}

.cart-total .label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(46,40,32,0.45);
}

.cart-total .amount {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #141414;
    line-height: 1;
}

.cart-total .amount-currency {
    font-size: 1rem;
    color: #C2641B;
    margin-left: 4px;
}

.btn-checkout {
    width: 100%;
    padding: 18px;
    background: #C2641B;
    border: none;
    border-radius: 0;
    color: #fff;
    font-family: 'Arboria', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, transform .15s;
    font-family: 'Arboria', 'Inter', sans-serif;
}

.btn-checkout:hover {
    background: #a8541a;
    transform: translateY(-1px);
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--dark2);
    border-radius: 25px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(201,168,76,0.2);
    position: relative;
}

.modal::-webkit-scrollbar {
    width: 6px;
}

.modal::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--dark2);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--dark);
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
}

.modal-body {
    padding: 40px;
}

.modal-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-body .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 25px;
}

.modal-section {
    margin-bottom: 25px;
}

.modal-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-section p,
.modal-section li {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.modal-section ul {
    padding: 0;
}

.modal-section ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.modal-section ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

.modal-add-cart {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    color: var(--dark);
    border-radius: 15px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-top: 10px;
    font-family: 'Arboria', 'Inter', sans-serif;
}

.modal-add-cart:hover {
    box-shadow: 0 15px 40px rgba(201,168,76,0.3);
}

/* ===== FOOTER ===== */
footer {
    padding: 90px 0 35px;
    background: var(--dark2);
    position: relative;
    color: var(--text);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,120,60,0.35) 30%, rgba(201,168,76,0.25) 70%, transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.social-link {
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.footer-links-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--cream);
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-payments {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

/* ===== WHATSAPP ===== */
/* ===== FLOATING ACTION BUTTONS (droite) ===== */
.fab-group {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.whatsapp-float {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #20BC5A, #25D366);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 24px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.2);
    animation: waBounce 2.8s ease-in-out infinite;
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 36px rgba(37,211,102,0.45);
    animation: none;
}

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

/* Back to top */
.back-to-top {
    width: 56px;
    height: 56px;
    background: #141414;
    border: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EFEBE3;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: background .25s, transform .25s, opacity .35s, visibility .35s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: #C2641B;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(194,100,27,0.3);
}
.back-to-top svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    background: var(--dark3);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--radius-md);
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    transform: translateY(120%) scale(0.95);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(201,168,76,0.08);
}

.toast.show {
    transform: translateY(0) scale(1);
}


.toast-icon {
    font-size: 1.5rem;
}

.toast-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: linear-gradient(145deg, var(--dark3), rgba(34,18,10,0.8));
    padding: 44px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--green-accent), transparent);
}

.contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 28px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: var(--dark);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.95rem;
    font-family: 'Arboria', 'Inter', sans-serif;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(0,0,0,0.18);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: #FFFFFF;
    border-color: rgba(201,168,76,0.5);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.form-group select option {
    background: var(--dark3);
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info-card {
    background: linear-gradient(135deg, var(--dark3), rgba(34,18,10,0.7));
    border-radius: var(--radius-md);
    padding: 26px;
    display: flex;
    gap: 18px;
    align-items: center;
    border: 1px solid var(--glass-border);
    margin-bottom: 18px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(201,168,76,0.22);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.contact-icon-box {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(201,168,76,0.25);
}

.contact-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--gray-light);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ===== ORDER FORM ===== */
.order-summary {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 25px 0;
}

.order-summary h4 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 1.1rem;
}

.order-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--gray-light);
}

.order-line:last-child {
    border: none;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gold);
    padding-top: 16px;
    margin-top: 4px;
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    display: none;
    text-align: center;
    padding: 70px 40px;
    animation: fadeInUp 0.6s ease both;
}

.success-message.active {
    display: block;
}

.success-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--green), var(--green-accent));
    border-radius: 50%;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    box-shadow: 0 12px 40px rgba(61,181,100,0.25);
    position: relative;
}

.success-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(61,181,100,0.2);
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 0.2; }
}

.success-message h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    margin-bottom: 14px;
}

.success-message p {
    color: var(--gray-light);
    line-height: 1.85;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    nav {
        padding: 15px 30px;
    }

    nav.scrolled {
        padding: 10px 30px;
    }

    /* géré par le bloc mobile dédié en fin de fichier */

    .scroll-indicator {
        display: none;
    }

    #hero {
        min-height: 100vh;
    }

    .hero-inner {
        gap: 40px;
        padding: 130px 30px 40px;
        text-align: center;
    }

    .hero-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }

    .hero-arrow.prev { left: 12px; }
    .hero-arrow.next { right: 12px; }

    .hero-content {
        max-width: 680px;
        margin: 0 auto;
    }

    .hero-btns,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-card {
        width: 300px;
    }

    .chip-top { left: -14px; }
    .chip-bottom { right: -14px; }

    .hero-stats {
        margin-top: 20px;
        padding: 0 30px 40px;
        gap: 12px;
    }

    .stat {
        min-width: 110px;
        padding: 18px 22px;
    }

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

    .section-padding {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .process-grid::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .shipping-banner {
        flex-direction: column;
        text-align: center;
    }
}

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

    .hero-btns {
        flex-direction: column;
    }

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

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

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

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .form-group.full {
        grid-column: span 1;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ===== PRODUCT BADGE PREMIUM ===== */
.product-card-badge {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    box-shadow: 0 4px 16px rgba(201,168,76,0.3);
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* ===== PRODUCT CONTENT IMPROVEMENTS ===== */
.product-content {
    padding: 28px;
}

.product-name {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 8px;
}

.product-short-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.product-price {
    font-size: 1.7rem;
    margin-bottom: 18px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.product-actions .btn-details {
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.product-actions .btn-add-cart {
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-actions .btn-add-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.product-actions .btn-add-cart:hover::before {
    left: 150%;
}

/* Cart drawer overrides — nettoyés, voir section CART DRAWER ci-dessus */

.btn-checkout::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-checkout:hover::before {
    left: 150%;
}

/* ===== MODAL IMPROVEMENTS ===== */
.modal {
    background: var(--dark3);
    color: var(--text);
}

.modal-body h2 {
    font-size: 1.9rem;
    line-height: 1.2;
}

.modal-section {
    padding-top: 18px;
    border-top: 1px solid var(--glass-border);
}

.modal-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.modal-add-cart {
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
}

.modal-add-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.modal-add-cart:hover::before {
    left: 150%;
}

/* ===== FOOTER LINKS IMPROVEMENTS ===== */
.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul li a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links-col ul li a::before {
    content: '›';
    color: var(--gold);
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition);
}

.footer-links-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

/* ===== SHIPPING BANNER IMPROVEMENTS ===== */
.shipping-banner {
    background: linear-gradient(135deg, rgba(201,168,76,0.07), rgba(90,39,16,0.12));
    border: 1px solid rgba(200,120,60,0.15);
}

.shipping-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(90,39,16,0.12));
    border-radius: var(--radius-md);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

/* ===== PAYMENT CARDS IMPROVEMENTS ===== */
.payment-card {
    background: linear-gradient(135deg, var(--dark3), var(--dark2));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.payment-card:hover {
    border-color: rgba(201,168,76,0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(34,18,10,0.9));
}

/* ===== SCROLL REVEAL STAGGER ===== */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.19s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.26s; }

.process-grid .process-step:nth-child(1) { transition-delay: 0.05s; }
.process-grid .process-step:nth-child(2) { transition-delay: 0.12s; }
.process-grid .process-step:nth-child(3) { transition-delay: 0.19s; }
.process-grid .process-step:nth-child(4) { transition-delay: 0.26s; }

.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0.05s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.12s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.19s; }

/* ===== SELECTION STYLE ===== */
::selection {
    background: rgba(201,168,76,0.25);
    color: var(--cream);
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
    outline: 2px solid rgba(201,168,76,0.5);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ========================================
   DA REDESIGN — Sections harmonisées
   Palette : #C2641B (terracotta), #141414 (dark), #EFEBE3 (beige), #2E2820 (brown)
   Font : Arboria Black (headings), Arboria Medium/Book (body)
   ======================================== */

/* --- Base layout --- */
.da-section { padding: 100px 0; }
.da-section--dark { background: #1A1208; }
.da-section--beige { background: #EFEBE3; }
.da-container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

/* --- Section header --- */
.da-section-head { text-align: center; margin-bottom: 70px; }
.da-overline {
    display: inline-block;
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C2641B;
    margin-bottom: 16px;
}
.da-overline--light { color: rgba(239,235,227,0.6); }
.da-h2 {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #F2EEE4;
    line-height: 1.15;
    margin-bottom: 18px;
}
.da-section--beige .da-h2 { color: #2E2820; }
.da-h2 span { color: #C2641B; }
.da-lead {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(242,238,228,0.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}
.da-section--beige .da-lead { color: #5C4A33; }
.da-center { text-align: center; }

/* --- Buttons --- */
.da-btn-primary, .da-btn-outline {
    display: inline-block;
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 0;
    transition: all 0.3s;
    cursor: pointer;
}
.da-btn-primary {
    background: #C2641B;
    color: #fff;
    border: 2px solid #C2641B;
}
.da-btn-primary:hover { background: #141414; border-color: #141414; color: #fff; }
.da-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.45);
}
.da-btn-outline:hover { border-color: #C2641B; color: #C2641B; }

/* --- Services --- */
#services-preview .da-container { max-width: 1440px; padding: 0 40px; }

.da-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 60px;
}
.da-service-card {
    padding: 48px 32px;
    background: #231608;
    border-top: 3px solid transparent;
    transition: all 0.35s;
    cursor: default;
}
.da-service-card:hover {
    background: #2C1C0A;
    border-top-color: #C2641B;
    transform: translateY(-4px);
}
.da-service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    color: #C2641B;
}
.da-service-icon svg { width: 100%; height: 100%; }
.da-service-card h3 {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #F2EEE4;
    margin-bottom: 14px;
    line-height: 1.3;
}
.da-service-card p {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.88rem;
    color: rgba(242,238,228,0.55);
    line-height: 1.75;
    margin-bottom: 24px;
}
.da-link {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #C2641B;
    transition: color 0.2s;
}
.da-link:hover { color: #D97D3A; }

/* --- Process --- */
.da-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.da-process-step { padding: 0 32px 0 0; position: relative; }
.da-process-num {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #C2641B;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.da-process-line {
    height: 2px;
    background: linear-gradient(90deg, #C2641B 0%, rgba(194,100,27,0.2) 100%);
    margin-bottom: 28px;
    width: calc(100% - 32px);
}
.da-process-line--last { background: rgba(194,100,27,0.2); }
.da-process-step h4 {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2E2820;
    margin-bottom: 12px;
}
.da-process-step p {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.88rem;
    color: #6B5A40;
    line-height: 1.75;
}

/* --- Testimonials --- */
.da-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.da-testi-card {
    background: #231608;
    padding: 40px 36px;
    border-bottom: 3px solid #C2641B;
    transition: transform 0.3s;
}
.da-testi-card:hover { transform: translateY(-4px); }
.da-testi-stars { margin-bottom: 22px; }
.da-testi-stars svg { width: 88px; height: auto; }
.da-testi-text {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(242,238,228,0.75);
    line-height: 1.85;
    margin-bottom: 32px;
    font-style: italic;
}
.da-testi-author { display: flex; align-items: center; gap: 14px; }
.da-testi-avatar {
    width: 44px;
    height: 44px;
    background: #C2641B;
    color: #fff;
    font-family: 'Arboria', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 0.82rem;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.da-testi-name {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #F2EEE4;
}
.da-testi-loc {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgba(242,238,228,0.45);
    margin-top: 3px;
}

/* --- CTA --- */
.da-cta {
    background: #141414;
    padding: 120px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.da-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(194,100,27,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.da-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.da-cta-title {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #F2EEE4;
    line-height: 1.15;
    margin-bottom: 20px;
}
.da-cta-title span { color: #C2641B; }
.da-cta-lead {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(242,238,228,0.55);
    line-height: 1.85;
    margin-bottom: 44px;
}
.da-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
.da-footer {
    background: #0E0A04;
    padding: 80px 0 0;
}
.da-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(194,100,27,0.15);
}
.da-footer-logo {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #C2641B;
    margin-bottom: 18px;
}
.da-footer-brand p {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.88rem;
    color: rgba(242,238,228,0.45);
    line-height: 1.85;
    margin-bottom: 28px;
}
.da-footer-social { display: flex; gap: 12px; }
.da-social {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(194,100,27,0.3);
    color: rgba(242,238,228,0.5);
    transition: all 0.25s;
}
.da-social:hover { border-color: #C2641B; color: #C2641B; }
.da-social svg { width: 16px; height: 16px; }
.da-footer-col h4 {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #F2EEE4;
    margin-bottom: 22px;
}
.da-footer-col ul { list-style: none; padding: 0; margin: 0; }
.da-footer-col ul li {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.86rem;
    color: rgba(242,238,228,0.45);
    margin-bottom: 12px;
    transition: color 0.2s;
}
.da-footer-col ul li a {
    color: rgba(242,238,228,0.45);
    transition: color 0.2s;
}
.da-footer-col ul li a:hover { color: #C2641B; }
.da-footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.da-footer-bottom p {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgba(242,238,228,0.3);
}

/* --- Produits Populaires (homepage override) --- */
#featured-products { background: #F5F1EA; }
#featured-products .da-h2 { color: #2E2820; }
#featured-products .da-overline { color: #C2641B; }
#featured-products .da-lead { color: #5C4A33; }
#featured-products .da-container { max-width: 1440px; padding: 0 40px; }

#featured-products .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

#featured-products .product-card {
    background: #fff;
    border-radius: 0;
    border: none;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
}
#featured-products .product-card:hover {
    transform: translateY(-5px);
    border-bottom-color: #C2641B;
    box-shadow: 0 16px 40px rgba(0,0,0,0.09);
}

#featured-products .product-card-badge {
    background: #C2641B;
    border-radius: 0;
    color: #fff;
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
}

#featured-products .product-image { height: 220px; }

#featured-products .product-image-overlay {
    background: linear-gradient(180deg, transparent 50%, rgba(255,255,255,0.6) 100%);
}

#featured-products .product-name {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2E2820;
    margin-bottom: 8px;
}

#featured-products .product-short-desc {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.82rem;
    color: #6B5A40;
    line-height: 1.65;
    margin-bottom: 16px;
}

#featured-products .product-price {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #C2641B;
    margin-bottom: 18px;
}

#featured-products .btn-details {
    border-radius: 0;
    border-color: #2E2820;
    color: #2E2820;
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
#featured-products .btn-details:hover {
    background: #2E2820;
    color: #fff;
}

#featured-products .btn-add-cart {
    border-radius: 0;
    background: #C2641B;
    color: #fff;
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
#featured-products .btn-add-cart:hover {
    background: #141414;
    box-shadow: none;
    transform: none;
}
#featured-products .btn-add-cart svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    #featured-products .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    #featured-products .products-grid { grid-template-columns: 1fr; }
}

/* --- About compact (alf2) --- */
.alf2-section {
    background-color: #EFEBE3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M21 15h6v6h6v6h-6v6h-6v-6h-6v-6h6z' fill='%23C2641B' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 48px 48px;
    overflow: hidden;
}
.alf2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 520px;
}
.alf2-media {
    overflow: hidden;
}
.alf2-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.alf2-content {
    padding: 72px 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.alf2-title {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.18;
    color: #2E2820;
    margin: 14px 0 22px;
}
.alf2-title span { color: #C2641B; }
.alf2-desc {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #5C4A33;
    line-height: 1.85;
    margin-bottom: 32px;
    max-width: 480px;
}
.alf2-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 36px;
    align-items: stretch;
}

.alf2-feat {
    position: relative;
    flex: 1;
    padding: 18px 20px 18px 0;
    overflow: hidden;
    cursor: default;
    border-right: 1px solid rgba(46,40,32,0.1);
}
.alf2-feat:last-child { border-right: none; }
.alf2-feat:first-child { padding-left: 0; }

/* Icône fantôme en arrière-plan */
.alf2-feat-bg {
    position: absolute;
    top: -4px;
    right: 2px;
    width: 64px;
    height: 64px;
    color: #C2641B;
    opacity: 0.28;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}
.alf2-feat:hover .alf2-feat-bg {
    opacity: 0.55;
    transform: scale(1.1);
}

/* Ligne terracotta qui se dessine */
.alf2-feat-line {
    width: 24px;
    height: 2px;
    background: #C2641B;
    margin-bottom: 12px;
    transition: width 0.35s ease;
}
.alf2-feat:hover .alf2-feat-line { width: 48px; }

.alf2-feat span {
    display: block;
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2E2820;
    line-height: 1.3;
    transition: color 0.25s;
    position: relative;
    z-index: 1;
}
.alf2-feat:hover span { color: #C2641B; }
@media (max-width: 900px) {
    .alf2-grid { grid-template-columns: 1fr; }
    .alf2-media { min-height: 280px; }
    .alf2-content { padding: 40px 24px; }
}

@media (max-width: 600px) {
    .alf2-content { padding: 32px 20px; }
    .alf2-title { font-size: clamp(1.5rem, 7vw, 2rem); }
    .alf2-desc { font-size: 0.9rem; max-width: 100%; }
    /* Features : 2 par ligne */
    .alf2-feat {
        flex: 1 1 calc(50% - 1px);
        border-right: 1px solid rgba(46,40,32,0.1);
        padding: 14px 12px 14px 0;
    }
    .alf2-feat:nth-child(even) { border-right: none; }
    .alf2-feat:nth-child(3)    { border-top: 1px solid rgba(46,40,32,0.1); }
    .alf2-feat:nth-child(4)    { border-top: 1px solid rgba(46,40,32,0.1); }
    .alf2-feat:first-child     { padding-left: 0; }
    .alf2-feat span { font-size: 0.65rem; letter-spacing: 1.5px; }
    .alf2-media { min-height: 240px; }
}

/* --- Stats bar --- */
.da-stats-bar {
    background: #141414;
    border-top: 3px solid #C2641B;
}
.da-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.da-stat {
    flex: 1;
    text-align: center;
    padding: 36px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.da-stat-num {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #C2641B;
    line-height: 1;
}
.da-stat-suffix {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #C2641B;
}
.da-stat-label {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(242,238,228,0.5);
    margin-top: 4px;
}
.da-stat-sep {
    width: 1px;
    height: 50px;
    background: rgba(194,100,27,0.25);
    flex-shrink: 0;
}

/* --- Rating banner (témoignages) --- */
.da-rating-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    padding: 24px 40px;
    border: 1px solid rgba(194,100,27,0.2);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.da-rating-score {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: #F2EEE4;
    line-height: 1;
    white-space: nowrap;
}
.da-rating-score span {
    font-size: 1rem;
    color: rgba(242,238,228,0.4);
    font-weight: 400;
}
.da-rating-stars svg { width: 96px; height: auto; }
.da-rating-label {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.84rem;
    color: rgba(242,238,228,0.5);
    line-height: 1.5;
}
.da-rating-label strong { color: rgba(242,238,228,0.85); }

/* --- Guarantees (process) --- */
.da-guarantees {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 40px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(194,100,27,0.2);
}
.da-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #5C4A33;
    letter-spacing: 0.5px;
}
.da-guarantee svg {
    width: 18px;
    height: 18px;
    color: #C2641B;
    flex-shrink: 0;
}

/* --- Product filters --- */
.da-prod-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.da-filter {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 24px;
    background: transparent;
    border: 1.5px solid rgba(46,40,32,0.2);
    color: #6B5A40;
    cursor: pointer;
    transition: all 0.25s;
    border-radius: 0;
}
.da-filter:hover,
.da-filter.active {
    background: #C2641B;
    border-color: #C2641B;
    color: #fff;
}

/* --- FAQ --- */
.da-faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.da-faq-item {
    border-bottom: 1px solid rgba(46,40,32,0.15);
}
.da-faq-item:first-child { border-top: 1px solid rgba(46,40,32,0.15); }
.da-faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}
.da-faq-q span {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #2E2820;
    line-height: 1.4;
}
.da-faq-icon {
    width: 20px;
    height: 20px;
    color: #C2641B;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.da-faq-item.open .da-faq-icon { transform: rotate(180deg); }
.da-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}
.da-faq-item.open .da-faq-a { max-height: 200px; padding-bottom: 20px; }
.da-faq-a p {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-size: 0.92rem;
    color: #6B5A40;
    line-height: 1.8;
}
.da-faq-a strong { color: #2E2820; font-weight: 700; }

/* --- WhatsApp float fix (droite via .fab-group) --- */

/* --- Responsive --- */
@media (max-width: 1024px) {
    .da-services-grid { grid-template-columns: repeat(2, 1fr); }
    .da-process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .da-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .da-container { padding: 0 28px; }
    .da-section { padding: 70px 0; }
    .da-services-grid { grid-template-columns: 1fr; gap: 2px; }
    .da-testi-grid { grid-template-columns: 1fr; }
    .da-process-grid { grid-template-columns: 1fr; gap: 40px; }
    .da-footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .da-cta { padding: 80px 28px; }
    .da-cta-btns { flex-direction: column; align-items: center; }
    .da-footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   FONT INHERITANCE — forcer Arboria sur tous les éléments interactifs
   ============================================================ */
button, input, select, textarea, a {
    font-family: 'Arboria', 'Inter', sans-serif;
}

/* ============================================================
   SHOP PAGE STYLES — shop-* / sft-* prefix
   ============================================================ */

/* --- Shop Hero --- */
.shop-hero {
    background-color: #141414;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C2641B' fill-opacity='0.06'%3E%3Cpath d='M20 18v-2h-2v2h-2v2h2v2h2v-2h2v-2h-2zM0 18v-2h-2v2h-2v2h2v2h2v-2h2v-2h-2zM40 18v-2h-2v2h-2v2h2v2h2v-2h2v-2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 140px 0 72px;
    position: relative;
    overflow: hidden;
}
.shop-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(194,100,27,0.08) 0%, transparent 70%);
}
.shop-hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}
.shop-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.shop-hero-breadcrumb a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.25s;
}
.shop-hero-breadcrumb a:hover { color: #C2641B; }
.shop-hero-breadcrumb span { color: rgba(255,255,255,0.2); font-size: 0.65rem; }
.shop-hero-breadcrumb .current {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C2641B;
}
.shop-hero-overline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C2641B;
    margin-bottom: 22px;
}
.shop-hero-overline::before,
.shop-hero-overline::after {
    content: '';
    width: 28px;
    height: 1px;
    background: #C2641B;
    opacity: .6;
}
.shop-hero-title {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    line-height: 1.08;
    color: #EFEBE3;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.shop-hero-title span { color: #C2641B; }
.shop-hero-lead {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    max-width: 500px;
}

/* --- Hero cats & stats --- */
.shop-hero-cats {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.shop-hero-cat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px 8px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.25s;
}
.shop-hero-cat svg { width: 14px; height: 14px; color: #C2641B; }
.shop-hero-cat:hover, .shop-hero-cat.active {
    background: rgba(194,100,27,0.12);
    border-color: rgba(194,100,27,0.4);
    color: #fff;
}
.shop-hero-stats {
    position: absolute;
    right: 5%;
    bottom: -1px;
    display: flex;
    gap: 0;
}
.shop-hero-stat {
    padding: 20px 32px;
    background: #EFEBE3;
    border-top: 3px solid transparent;
    text-align: center;
}
.shop-hero-stat:first-child { border-top-color: #C2641B; }
.shop-hero-stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #141414;
    line-height: 1;
    display: block;
}
.shop-hero-stat-lbl {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2E2820;
    opacity: 0.5;
    margin-top: 4px;
    display: block;
    white-space: nowrap;
}

/* --- Filter bar (sticky) --- */
.shop-filter-bar,
.shop-filter-sticky {
    background: #fff;
    border-bottom: 1px solid rgba(46,40,32,0.08);
    position: sticky;
    top: 64px;
    z-index: 200;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.shop-filter-inner,
.shop-filter-sticky-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 60px;
    overflow-x: auto;
    scrollbar-width: none;
}
.shop-filter-inner::-webkit-scrollbar,
.shop-filter-sticky-inner::-webkit-scrollbar { display: none; }
.shop-filter-tabs { display: flex; gap: 0; }
.shop-filter-count {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(46,40,32,0.35);
    white-space: nowrap;
}
.shop-filter-count span { color: #C2641B; }

/* Tab filter buttons */
.sft-btn {
    display: inline-block;
    padding: 16px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(46,40,32,0.4);
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    position: relative;
    top: 1px;
    text-decoration: none;
}
.sft-btn:hover { color: #2E2820; }
.sft-btn.active {
    color: #C2641B;
    border-bottom-color: #C2641B;
}

/* --- Products area --- */
.shop-products-area,
.shop-main { background: #F8F5F0; min-height: 60vh; padding: 60px 0 80px; }
.shop-products-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}
.shop-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 5% 80px;
    display: grid;
    grid-template-columns: 268px 1fr;
    gap: 40px;
    align-items: start;
}

/* --- Sidebar --- */
.shop-sidebar {
    position: sticky;
    top: 130px;
    background: #fff;
    border: 1px solid rgba(46,40,32,0.08);
}
.shop-sidebar-block {
    padding: 24px 24px 20px;
    border-bottom: 1px solid rgba(46,40,32,0.07);
}
.shop-sidebar-block:last-child { border-bottom: none; }
.shop-sidebar-title {
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #141414;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shop-sidebar-title span {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #C2641B;
    cursor: pointer;
    text-transform: uppercase;
}

/* Custom checkbox items */
.shop-cb-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    cursor: pointer;
    gap: 10px;
}
.shop-cb-left {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.shop-cb-box {
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(46,40,32,0.25);
    background: #fff;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}
.shop-cb-box.checked {
    background: #C2641B;
    border-color: #C2641B;
}
.shop-cb-box.checked::after {
    content: '';
    position: absolute;
    left: 4px; top: 1px;
    width: 5px; height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}
.shop-cb-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: #2E2820;
    transition: color 0.2s;
    user-select: none;
}
.shop-cb-item:hover .shop-cb-label { color: #C2641B; }
.shop-cb-count {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(46,40,32,0.3);
    background: rgba(46,40,32,0.05);
    padding: 2px 7px;
    min-width: 24px;
    text-align: center;
}

/* Price filter items */
.shop-price-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    cursor: pointer;
}
.shop-price-item .shop-cb-label { font-size: 0.78rem; }

/* Stock dot */
.shop-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.shop-stock-dot.in { background: #22c55e; }
.shop-stock-dot.out { background: #ef4444; }

/* Bestseller toggle */
.shop-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
}
.shop-toggle-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: #2E2820;
}
.shop-toggle {
    width: 40px;
    height: 22px;
    background: rgba(46,40,32,0.15);
    border-radius: 11px;
    position: relative;
    cursor: pointer;
    transition: background 0.25s;
    flex-shrink: 0;
    border: none;
    outline: none;
}
.shop-toggle.on { background: #C2641B; }
.shop-toggle::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 16px; height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: left 0.25s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.shop-toggle.on::after { left: 21px; }

/* Reset button */
.shop-reset-btn {
    width: 100%;
    padding: 12px;
    background: none;
    border: 1.5px solid rgba(46,40,32,0.15);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(46,40,32,0.5);
    cursor: pointer;
    transition: all 0.22s;
    margin-top: 4px;
    font-family: inherit;
}
.shop-reset-btn:hover { border-color: #C2641B; color: #C2641B; }
.shop-search-bar {
    display: flex;
    border: 1px solid rgba(46,40,32,0.15);
    background: #fff;
    overflow: hidden;
}
.shop-search-input {
    flex: 1;
    padding: 10px 14px;
    border: none;
    outline: none;
    font-size: 0.82rem;
    color: #2E2820;
    background: transparent;
}
.shop-search-btn {
    width: 42px;
    background: #141414;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s;
    flex-shrink: 0;
}
.shop-search-btn:hover { background: #C2641B; }
.shop-sidebar-options { display: flex; flex-direction: column; gap: 2px; }
.shop-sidebar-opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #2E2820;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    border-left: 2px solid transparent;
}
.shop-sidebar-opt:hover { color: #C2641B; background: rgba(194,100,27,0.04); border-left-color: rgba(194,100,27,0.3); }
.shop-sidebar-opt.checked { color: #C2641B; background: rgba(194,100,27,0.07); border-left-color: #C2641B; font-weight: 700; }
.shop-opt-count {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(46,40,32,0.3);
    background: rgba(46,40,32,0.06);
    padding: 2px 7px;
}

/* --- Sort / results bar --- */
.shop-sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(46,40,32,0.08);
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}
.shop-sort-count {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(46,40,32,0.45);
}
.shop-sort-count span { color: #141414; }
.shop-sort-select {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2E2820;
    border: 1px solid rgba(46,40,32,0.15);
    background: #fff;
    padding: 8px 32px 8px 14px;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%232E2820' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    font-family: inherit;
}

/* Active filter chips */
.shop-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.shop-filter-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(194,100,27,0.08);
    border: 1px solid rgba(194,100,27,0.25);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #C2641B;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}
.shop-filter-chip:hover { background: rgba(194,100,27,0.15); }
.shop-filter-chip svg { width: 10px; height: 10px; }

/* Out of stock */
.shop-out-of-stock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.shop-out-of-stock-label {
    background: #141414;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 16px;
}
.shop-prod-card.out-of-stock .shop-prod-btn-cart {
    background: rgba(46,40,32,0.2);
    cursor: not-allowed;
    pointer-events: none;
}

/* --- Toolbar (results count + search info) --- */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(46,40,32,0.08);
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}
.shop-count {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(46,40,32,0.45);
}
.shop-count strong { color: #141414; }

/* --- Category headers --- */
.shop-cat-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 32px;
    padding-top: 56px;
}
.shop-cat-header:first-child { padding-top: 0; }
.shop-cat-label {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C2641B;
}
.shop-cat-title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #141414;
    letter-spacing: -0.3px;
}
.shop-cat-line {
    flex: 1;
    height: 1px;
    background: rgba(46,40,32,0.1);
}
.shop-cat-count {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(46,40,32,0.3);
}
.shop-cat-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 24px;
    margin-bottom: 16px;
}

/* --- Product card --- */
.shop-prod-card {
    background: #fff;
    border: 1px solid rgba(46,40,32,0.07);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.shop-prod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(46,40,32,0.12);
    border-color: rgba(194,100,27,0.25);
}
.shop-prod-img-wrap { overflow: hidden; position: relative; }
.shop-prod-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}
.shop-prod-card:hover .shop-prod-img { transform: scale(1.04); }
.shop-prod-badge {
    position: absolute;
    top: 14px; left: 0;
    background: #C2641B;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
}
.shop-bestseller-ribbon {
    position: absolute;
    top: 0; right: 0;
    background: #141414;
    color: #C2641B;
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 10px;
    z-index: 2;
    display: flex;
    align-items: center;
}
.shop-prod-cat-tag {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(20,20,20,0.7);
    color: rgba(255,255,255,0.7);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    backdrop-filter: blur(8px);
}
.shop-prod-body {
    padding: 22px 22px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.shop-prod-name {
    font-size: 0.88rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #141414;
    line-height: 1.3;
    margin-bottom: 8px;
}
.shop-prod-desc {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(46,40,32,0.55);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}
.shop-prod-footer {
    border-top: 1px solid rgba(46,40,32,0.07);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.shop-prod-price {
    font-size: 1.1rem;
    font-weight: 900;
    color: #141414;
}
.shop-prod-price span {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(46,40,32,0.4);
    margin-left: 2px;
}
.shop-prod-actions { display: flex; gap: 8px; }
.shop-prod-btn-detail {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 9px 14px;
    background: #EFEBE3;
    border: none;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2E2820;
    cursor: pointer;
    transition: all 0.22s;
    white-space: nowrap;
}
.shop-prod-btn-detail:hover { background: #E0D8CE; }
.shop-prod-btn-cart {
    width: 38px;
    height: 38px;
    background: #141414;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.22s;
    flex-shrink: 0;
}
.shop-prod-btn-cart:hover { background: #C2641B; }
.shop-prod-btn-cart svg { width: 16px; height: 16px; color: #fff; }

/* --- No results --- */
.shop-no-results {
    text-align: center;
    padding: 80px 20px;
    display: none;
}
.shop-no-results.visible { display: block; }
.shop-no-results svg { color: rgba(46,40,32,0.2); margin-bottom: 20px; }
.shop-no-results p {
    font-size: 0.85rem;
    color: rgba(46,40,32,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Checkout Modal (PHP shop version) --- */
.checkout-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.checkout-modal-overlay.active { display: flex; }
.checkout-modal {
    background: #141414;
    border: 1px solid rgba(194,100,27,0.2);
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}
.checkout-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.checkout-modal-header h3 {
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #EFEBE3;
}
.checkout-form { padding: 28px 32px; }
.checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.checkout-form-grid .form-group.full { grid-column: span 2; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(239,235,227,0.5);
}
.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #EFEBE3;
    padding: 12px 14px;
    font-size: 0.88rem;
    font-family: 'Arboria', 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: #C2641B; }
.form-group textarea { min-height: 80px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: #1a1a1a; color: #EFEBE3; }
.order-summary {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    margin-bottom: 24px;
    font-size: 0.82rem;
    color: rgba(239,235,227,0.7);
    line-height: 1.8;
}
.success-message {
    display: none;
    text-align: center;
    padding: 48px 32px;
}
.success-message.visible { display: block; }
.success-icon {
    width: 64px;
    height: 64px;
    border: 2px solid #C2641B;
    color: #C2641B;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.success-message h3 {
    font-size: 1.2rem;
    font-weight: 900;
    color: #EFEBE3;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.success-message p { color: rgba(239,235,227,0.5); font-size: 0.88rem; line-height: 1.7; }

/* Responsive shop */
@media (max-width: 1024px) {
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: relative; top: 0; }
}
@media (max-width: 768px) {
    .shop-hero { padding: 120px 0 60px; }
    .shop-filter-sticky { top: 56px; }
    .shop-cat-group { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
    .shop-layout { padding: 24px 4% 60px; }
    .checkout-form-grid { grid-template-columns: 1fr; }
    .checkout-form-grid .form-group.full { grid-column: span 1; }
}
@media (max-width: 480px) {
    .shop-cat-group { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCT SINGLE PAGE — sp-* prefix
   ============================================================ */

/* Arboria forcé sur tous les éléments sp-* et leurs enfants */
[class^="sp-"], [class*=" sp-"],
[class^="sp-"] *, [class*=" sp-"] * {
    font-family: 'Arboria', 'Inter', sans-serif;
}

.sp-breadcrumb-bar { background: #141414; padding: 72px 0 0; }
.sp-breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(239,235,227,0.4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.sp-breadcrumb-inner a { color: rgba(239,235,227,0.4); text-decoration: none; transition: color .2s; }
.sp-breadcrumb-inner a:hover { color: #C2641B; }
.sp-breadcrumb-inner svg { width: 11px; height: 11px; opacity: .4; }
.sp-breadcrumb-inner span { color: rgba(239,235,227,0.7); }

.sp-main { background: #EFEBE3; padding: 56px 0 80px; }
.sp-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 72px;
    align-items: start;
}

/* Gallery */
.sp-gallery { position: sticky; top: 100px; }
.sp-gallery-main {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(46,40,32,0.08);
    margin-bottom: 14px;
    position: relative;
}
.sp-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .3s; }
.sp-gallery-main-badge {
    position: absolute; top: 16px; left: 16px;
    background: #C2641B; color: #fff;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 14px;
}
.sp-gallery-thumbs { display: flex; gap: 10px; }
.sp-gallery-thumb {
    width: 80px; height: 80px;
    overflow: hidden;
    border: 2px solid transparent;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s;
    flex-shrink: 0;
}
.sp-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-gallery-thumb.active { border-color: #C2641B; }
.sp-gallery-thumb:hover { border-color: rgba(194,100,27,0.4); }

/* Product info */
.sp-info-overline {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    color: #C2641B; display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.sp-info-overline::after { content: ''; width: 32px; height: 1px; background: #C2641B; opacity: .5; }
.sp-info-title {
    font-family: 'Arboria', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.15;
    color: #141414;
    margin-bottom: 16px;
}
.sp-info-short {
    font-size: 0.97rem; line-height: 1.8; color: rgba(46,40,32,0.65);
    margin-bottom: 28px; padding-bottom: 28px;
    border-bottom: 1px solid rgba(46,40,32,0.1);
}
.sp-info-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 28px; }
.sp-info-price { font-weight: 900; font-size: 2.4rem; color: #141414; line-height: 1; }
.sp-info-price-currency { font-size: 1.2rem; color: #C2641B; font-weight: 700; }
.sp-info-price-note { font-size: 0.78rem; color: rgba(46,40,32,0.45); margin-left: 8px; }

/* Trust badges */
.sp-trust-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.sp-trust-badge {
    display: flex; align-items: center; gap: 7px;
    padding: 8px 14px; background: #fff; border: 1px solid rgba(46,40,32,0.08);
    font-size: 0.78rem; font-weight: 600; color: #2E2820;
}
.sp-trust-badge svg { width: 14px; height: 14px; color: #C2641B; }

/* QTY + CTA */
.sp-actions { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; }
.sp-qty { display: flex; align-items: center; border: 1px solid rgba(46,40,32,0.2); background: #fff; flex-shrink: 0; }
.sp-qty-btn {
    width: 44px; height: 52px; background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #141414; transition: background .2s, color .2s; font-family: inherit;
}
.sp-qty-btn:hover { background: #C2641B; color: #fff; }
.sp-qty-val {
    width: 44px; text-align: center; font-weight: 700; font-size: 1rem; color: #141414;
    border-left: 1px solid rgba(46,40,32,0.1); border-right: 1px solid rgba(46,40,32,0.1);
    height: 52px; line-height: 52px;
}
.sp-btn-cart {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 0 28px; height: 52px; background: #C2641B; color: #fff;
    font-weight: 700; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase;
    border: none; cursor: pointer; transition: background .2s, transform .15s;
}
.sp-btn-cart:hover { background: #a8541a; transform: translateY(-1px); }
.sp-btn-cart svg { width: 18px; height: 18px; }
.sp-btn-wa {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 0 24px; height: 52px; background: #25D366; color: #fff;
    font-weight: 700; font-size: 0.82rem; text-decoration: none; border: none;
    cursor: pointer; transition: background .2s; white-space: nowrap;
}
.sp-btn-wa:hover { background: #1ebe59; }
.sp-btn-wa svg { width: 18px; height: 18px; }

/* Stock */
.sp-stock { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(46,40,32,0.5); margin-bottom: 28px; }
.sp-stock-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; flex-shrink: 0; }
.sp-stock strong { color: #141414; }

/* Meta row */
.sp-meta-row {
    display: flex; gap: 16px; padding-top: 20px;
    border-top: 1px solid rgba(46,40,32,0.08); flex-wrap: wrap;
}
.sp-meta-item {
    display: flex; align-items: center; gap: 7px; font-size: 0.8rem;
    color: rgba(46,40,32,0.5); cursor: pointer; transition: color .2s;
    background: none; border: none; padding: 0; font-family: inherit;
}
.sp-meta-item:hover { color: #C2641B; }
.sp-meta-item svg { width: 15px; height: 15px; }
.sp-meta-sep { width: 1px; height: 14px; background: rgba(46,40,32,0.1); align-self: center; }

/* Tabs */
.sp-tabs-section { background: #fff; }
.sp-tabs-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.sp-tabs-nav {
    display: flex;
    border-bottom: 2px solid rgba(46,40,32,0.1);
    border-top: 1px solid rgba(46,40,32,0.08);
    overflow-x: auto;
    scrollbar-width: none;
    position: sticky;
    top: 72px;
    z-index: 40;
    background: #fff;
    box-shadow: 0 2px 12px rgba(46,40,32,0.06);
}
.sp-tabs-nav::-webkit-scrollbar { display: none; }
.sp-tab-btn {
    padding: 18px 28px; background: none; border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(46,40,32,0.4); cursor: pointer; white-space: nowrap;
    transition: color .2s, border-color .2s, background .2s;
    margin-bottom: -2px; flex-shrink: 0;
}
.sp-tab-btn.active { color: #C2641B; border-bottom-color: #C2641B; background: rgba(194,100,27,0.04); }
.sp-tab-btn:hover { color: #141414; background: rgba(46,40,32,0.03); }
.sp-tabs-content { padding: 56px 0 72px; }
.sp-tab-panel { display: none; }
.sp-tab-panel.active { display: block; }

/* Tab content */
.sp-desc-text { font-size: 1rem; line-height: 1.9; color: #2E2820; max-width: 780px; }
.sp-posologie-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 780px; }
.sp-poso-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: #F2EEE4; border-left: 3px solid #C2641B; }
.sp-poso-num { font-weight: 900; font-size: 1.1rem; color: #C2641B; line-height: 1; flex-shrink: 0; min-width: 24px; }
.sp-poso-text { font-size: 0.88rem; line-height: 1.65; color: #2E2820; }
.sp-util-list { list-style: none; padding: 0; max-width: 680px; display: flex; flex-direction: column; gap: 12px; }
.sp-util-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.92rem; line-height: 1.7; color: #2E2820; padding: 14px 18px; background: #F2EEE4; }
.sp-util-list li svg { width: 16px; height: 16px; color: #C2641B; flex-shrink: 0; margin-top: 2px; }
.sp-precautions { max-width: 720px; }
.sp-precautions-box {
    background: #FFF8F3; border: 1px solid rgba(194,100,27,0.2);
    border-left: 4px solid #C2641B; padding: 24px 24px 24px 28px;
    display: flex; gap: 18px; align-items: flex-start;
}
.sp-precautions-box svg { width: 22px; height: 22px; color: #C2641B; flex-shrink: 0; margin-top: 2px; }
.sp-precautions-text { font-size: 0.92rem; line-height: 1.8; color: #2E2820; }

/* Related products */
.sp-related { background: #F2EEE4; padding: 80px 0; }
.sp-related-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.sp-related-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.sp-related-overline { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #C2641B; margin-bottom: 8px; }
.sp-related-title { font-family: 'Arboria', 'Inter', sans-serif; font-weight: 900; font-size: 1.8rem; color: #141414; line-height: 1.15; text-transform: uppercase; letter-spacing: -0.3px; }
.sp-related-title span { color: #C2641B; }
.sp-related-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #C2641B; text-decoration: none; transition: gap .2s; }
.sp-related-link:hover { gap: 14px; }
.sp-related-link svg { width: 14px; height: 14px; }
.sp-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sp-rel-card { background: #fff; border: 1px solid rgba(46,40,32,0.07); overflow: hidden; cursor: pointer; transition: box-shadow .25s, transform .25s; text-decoration: none; color: inherit; display: block; }
.sp-rel-card:hover { box-shadow: 0 12px 40px rgba(46,40,32,0.12); transform: translateY(-4px); }
.sp-rel-img { width: 100%; aspect-ratio: 1/1; overflow: hidden; position: relative; }
.sp-rel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.sp-rel-card:hover .sp-rel-img img { transform: scale(1.04); }
.sp-rel-badge { position: absolute; top: 12px; left: 12px; background: #C2641B; color: #fff; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; }
.sp-rel-body { padding: 18px 16px; }
.sp-rel-name { font-weight: 700; font-size: 0.88rem; color: #141414; line-height: 1.4; margin-bottom: 6px; }
.sp-rel-price { font-weight: 900; font-size: 1rem; color: #C2641B; }

/* CTA strip */
.sp-cta-strip { background: #141414; padding: 56px 32px; text-align: center; position: relative; overflow: hidden; }
.sp-cta-strip::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(194,100,27,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(194,100,27,0.07) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
}
.sp-cta-strip-inner { max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.sp-cta-strip h3 { font-family: 'Arboria', 'Inter', sans-serif; font-weight: 900; font-size: clamp(1.6rem, 3vw, 2.2rem); color: #EFEBE3; margin-bottom: 12px; line-height: 1.2; text-transform: uppercase; }
.sp-cta-strip h3 span { color: #C2641B; }
.sp-cta-strip p { font-size: 0.92rem; color: rgba(239,235,227,0.55); margin-bottom: 28px; line-height: 1.7; }
.sp-cta-strip-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.sp-cta-strip-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: #C2641B; color: #fff; font-weight: 700; font-size: 0.85rem; text-decoration: none; transition: background .2s; }
.sp-cta-strip-btn:hover { background: #a8541a; }
.sp-cta-strip-btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: transparent; border: 1px solid rgba(239,235,227,0.2); color: #EFEBE3; font-weight: 500; font-size: 0.85rem; text-decoration: none; transition: border-color .2s; }
.sp-cta-strip-btn-outline:hover { border-color: #C2641B; color: #C2641B; }

/* Not found */
.sp-not-found { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 32px; background: #EFEBE3; }
.sp-not-found h2 { font-size: 2rem; color: #141414; margin-bottom: 12px; }
.sp-not-found p { color: rgba(46,40,32,0.55); margin-bottom: 28px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive product */
@media (max-width: 1024px) {
    .sp-inner { grid-template-columns: 1fr; gap: 40px; }
    .sp-gallery { position: static; }
    .sp-related-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-posologie-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .sp-inner, .sp-tabs-inner, .sp-related-inner { padding: 0 20px; }
    .sp-related-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .sp-actions { flex-wrap: wrap; }
    .sp-btn-cart { flex: 1 1 100%; }
    .sp-gallery-thumbs { gap: 8px; }
    .sp-gallery-thumb { width: 64px; height: 64px; }
    .sp-tabs-nav { top: 64px; }
    .sp-tab-btn { padding: 14px 18px; font-size: 0.72rem; }
}

/* --- Guarantees --- */
.shop-guarantees {
    background: #141414;
    position: relative;
    overflow: hidden;
}
.shop-guarantees::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C2641B' fill-opacity='0.04'%3E%3Cpath d='M30 27v-2h-2v2h-2v2h2v2h2v-2h2v-2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.shop-guar-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    position: relative;
    z-index: 1;
}
.shop-guar-item {
    padding: 52px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid rgba(255,255,255,0.06);
    position: relative;
    transition: background 0.35s;
    cursor: default;
}
.shop-guar-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg,#C2641B,transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.shop-guar-item:hover::before { transform: scaleX(1); }
.shop-guar-item:hover { background: rgba(194,100,27,0.04); }
.shop-guar-item:last-child { border-right: none; }
.shop-guar-icon-wrap {
    width: 64px; height: 64px;
    border: 1px solid rgba(194,100,27,0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    transition: border-color 0.35s, background 0.35s;
}
.shop-guar-item:hover .shop-guar-icon-wrap { border-color: #C2641B; background: rgba(194,100,27,0.08); }
.shop-guar-icon, .shop-guar-icon svg {
    width: 28px; height: 28px;
    color: #C2641B; stroke: #C2641B;
    display: block;
    transition: transform 0.35s;
}
.shop-guar-item:hover .shop-guar-icon,
.shop-guar-item:hover .shop-guar-icon svg { transform: scale(1.15); }
.shop-guar-text strong {
    display: block;
    font-size: 1rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase;
    color: #fff; margin-bottom: 8px; line-height: 1.2;
}
.shop-guar-text span {
    font-size: 0.78rem; color: rgba(255,255,255,0.38); font-weight: 400; line-height: 1.5;
}
.shop-guar-num {
    position: absolute; bottom: 20px; right: 24px;
    font-size: 3.5rem; font-weight: 900;
    color: rgba(255,255,255,0.03); line-height: 1; user-select: none;
}

/* --- Why Buy --- */
.shop-why { background: #EFEBE3; padding: 80px 0; }
.shop-why-inner { max-width: 1440px; margin: 0 auto; padding: 0 5%; }
.shop-why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2px;
    margin-top: 48px;
    background: rgba(46,40,32,0.08);
}
.shop-why-card {
    background: #EFEBE3; padding: 40px 30px;
    position: relative; overflow: hidden; transition: background 0.3s;
}
.shop-why-card:hover { background: #fff; }
.shop-why-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: #C2641B; transition: width 0.4s;
}
.shop-why-card:hover::after { width: 100%; }
.shop-why-icon { width: 44px; height: 44px; color: #C2641B; margin-bottom: 20px; opacity: 0.85; }
.shop-why-card h4 {
    font-size: 0.72rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
    color: #141414; margin-bottom: 10px;
}
.shop-why-card p { font-size: 0.78rem; color: rgba(46,40,32,0.6); line-height: 1.65; }

/* --- Payment section --- */
.shop-payment {
    background: #141414; padding: 100px 0;
    position: relative; overflow: hidden;
}
.shop-payment::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C2641B' fill-opacity='0.04'%3E%3Cpath d='M30 27v-2h-2v2h-2v2h2v2h2v-2h2v-2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.shop-payment-inner {
    max-width: 1440px; margin: 0 auto; padding: 0 5%;
    position: relative; z-index: 1;
}
.shop-payment-inner .da-section-head { text-align: center; }
.shop-payment-inner .da-h2 { color: #fff; }
.shop-payment-inner .da-h2 span { color: #C2641B; }
.shop-payment-inner .da-overline { color: rgba(194,100,27,0.7); }
.shop-payment-grid {
    display: grid; grid-template-columns: repeat(5,1fr);
    gap: 2px; margin-top: 60px; background: rgba(255,255,255,0.04);
}
.shop-pay-card {
    background: rgba(255,255,255,0.03); padding: 44px 28px 36px;
    text-align: center; position: relative; transition: background 0.3s; cursor: default;
}
.shop-pay-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: #C2641B; transform: scaleX(0); transition: transform 0.35s;
}
.shop-pay-card:hover { background: rgba(194,100,27,0.06); }
.shop-pay-card:hover::after { transform: scaleX(1); }
.shop-pay-icon-wrap {
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px; height: 80px;
    background: transparent; padding: 0;
}
.shop-pay-icon {
    width: 140px; height: 70px; object-fit: contain; display: block;
    opacity: 0.85; transition: opacity 0.3s, transform 0.3s;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}
.shop-pay-card:hover .shop-pay-icon {
    opacity: 1; transform: scale(1.06);
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}
.shop-pay-name {
    font-size: 0.82rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
    color: #fff; margin-bottom: 8px;
}
.shop-pay-desc { font-size: 0.72rem; color: rgba(255,255,255,0.35); line-height: 1.5; }

/* Shipping banner */
.shop-shipping-banner {
    margin-top: 48px;
    border: 1px solid rgba(194,100,27,0.2);
    padding: 44px 48px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}
.shop-shipping-banner::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px; background: #C2641B;
}
.shop-shipping-icon, .shop-shipping-icon svg {
    width: 52px; height: 52px;
    color: #C2641B; stroke: #C2641B;
    flex-shrink: 0; display: block;
}
.shop-shipping-text h3 {
    font-size: clamp(1rem,1.8vw,1.3rem);
    font-weight: 900; letter-spacing: 1px; text-transform: uppercase;
    color: #fff; margin-bottom: 10px; line-height: 1.2;
}
.shop-shipping-text h3 span { color: #C2641B; }
.shop-shipping-text p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 600px; }
.shop-shipping-text p span { color: rgba(255,255,255,0.8); font-weight: 700; }
.shop-shipping-cta { flex-shrink: 0; }
.shop-shipping-cta a {
    display: inline-block; padding: 16px 28px; background: #C2641B; color: #fff;
    font-size: 0.68rem; font-weight: 900; letter-spacing: 2.5px; text-transform: uppercase;
    text-decoration: none; white-space: nowrap; transition: background 0.25s;
}
.shop-shipping-cta a:hover { background: #A8551A; }

/* --- FAQ shop --- */
.shop-faq { background: #EFEBE3; padding: 100px 0; }
.shop-faq-inner {
    max-width: 1440px; margin: 0 auto; padding: 0 5%;
    display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start;
}
.shop-faq-left { position: sticky; top: 140px; }
.shop-faq-overline {
    font-size: 0.62rem; font-weight: 900; letter-spacing: 3px; text-transform: uppercase;
    color: #C2641B; margin-bottom: 16px; display: block;
}
.shop-faq-title {
    font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 900; text-transform: uppercase;
    color: #141414; line-height: 1.05; letter-spacing: -0.5px; margin-bottom: 20px;
}
.shop-faq-title span { color: #C2641B; }
.shop-faq-sub {
    font-size: 0.85rem; color: rgba(46,40,32,0.55); line-height: 1.7; margin-bottom: 36px;
}
.shop-faq-contact {
    display: flex; align-items: center; gap: 14px;
    padding: 20px 22px; background: #141414;
    text-decoration: none; transition: background 0.25s;
}
.shop-faq-contact:hover { background: #C2641B; }
.shop-faq-contact svg { width: 20px; height: 20px; color: #C2641B; flex-shrink: 0; transition: color 0.25s; }
.shop-faq-contact:hover svg { color: #fff; }
.shop-faq-contact span {
    font-size: 0.68rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: #fff;
}
.shop-faq-list { display: flex; flex-direction: column; gap: 0; }
.shop-faq-item { border-bottom: 1px solid rgba(46,40,32,0.12); overflow: hidden; }
.shop-faq-item:first-child { border-top: 1px solid rgba(46,40,32,0.12); }
.shop-faq-btn {
    width: 100%; background: none; border: none; padding: 26px 0;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; cursor: pointer; text-align: left;
}
.shop-faq-btn-num {
    font-size: 0.6rem; font-weight: 900; letter-spacing: 2px;
    color: rgba(46,40,32,0.25); flex-shrink: 0; width: 28px; transition: color 0.25s;
}
.shop-faq-btn-text {
    font-size: 0.95rem; font-weight: 700; color: #141414; flex: 1; transition: color 0.25s;
    font-family: inherit; text-align: left;
}
.shop-faq-btn-icon {
    width: 36px; height: 36px;
    border: 1px solid rgba(46,40,32,0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background 0.25s, border-color 0.25s;
}
.shop-faq-btn-icon svg { width: 14px; height: 14px; color: #2E2820; transition: transform 0.35s, color 0.25s; }
.shop-faq-item.open .shop-faq-btn-num { color: #C2641B; }
.shop-faq-item.open .shop-faq-btn-text { color: #C2641B; }
.shop-faq-item.open .shop-faq-btn-icon { background: #C2641B; border-color: #C2641B; }
.shop-faq-item.open .shop-faq-btn-icon svg { transform: rotate(45deg); color: #fff; }
.shop-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.shop-faq-item.open .shop-faq-answer { max-height: 300px; }
.shop-faq-answer p {
    font-size: 0.85rem; color: rgba(46,40,32,0.6);
    line-height: 1.8; padding: 0 0 28px 42px;
}

/* --- Shop responsive additions --- */
@media (max-width: 1100px) {
    .shop-layout { grid-template-columns: 240px 1fr; gap: 28px; }
}
@media (max-width: 1024px) {
    .shop-guar-inner { grid-template-columns: repeat(2,1fr); }
    .shop-guar-item { padding: 40px 28px; }
    .shop-why-grid { grid-template-columns: repeat(2,1fr); }
    .shop-payment-grid { grid-template-columns: repeat(3,1fr); }
    .shop-shipping-banner { grid-template-columns: auto 1fr; }
    .shop-shipping-cta { display: none; }
    .shop-faq-inner { grid-template-columns: 1fr; gap: 40px; }
    .shop-faq-left { position: relative; top: 0; }
}
@media (max-width: 900px) {
    .shop-hero-stats { position: relative; right: auto; bottom: auto; margin-top: 36px; }
}
@media (max-width: 768px) {
    .shop-filter-bar { top: 56px; }
    .shop-filter-tabs { overflow-x: auto; }
    .sft-btn { padding: 16px; font-size: 0.65rem; }
    .shop-guar-inner { grid-template-columns: 1fr; }
    .shop-guar-item { padding: 36px 24px; flex-direction: row; align-items: center; gap: 20px; }
    .shop-guar-icon-wrap { margin-bottom: 0; flex-shrink: 0; }
    .shop-guar-num { display: none; }
    .shop-why-grid { grid-template-columns: 1fr 1fr; }
    .shop-payment-grid { grid-template-columns: repeat(2,1fr); }
    .shop-shipping-banner { grid-template-columns: 1fr; gap: 20px; padding: 32px 24px; }
    .shop-hero-stats { flex-wrap: wrap; }
    .shop-hero-stat { padding: 16px 24px; }
}
@media (max-width: 480px) {
    .shop-why-grid { grid-template-columns: 1fr; }
    .shop-payment-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1025px) {
    .shop-filter-bar { display: block; }
}

/* Also fix sp-cta-strip buttons to use correct class names */
.sp-cta-strip-btn1 {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; background: #25D366; color: #fff;
    font-weight: 700; font-size: 0.85rem; text-decoration: none; transition: background .2s;
}
.sp-cta-strip-btn1:hover { background: #1ebe59; }
.sp-cta-strip-btn2 {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; background: transparent;
    border: 1px solid rgba(239,235,227,0.2); color: #EFEBE3;
    font-weight: 500; font-size: 0.85rem; text-decoration: none; transition: border-color .2s, color .2s;
}
.sp-cta-strip-btn2:hover { border-color: #C2641B; color: #C2641B; }

/* ============================================================
   MENU MOBILE — source unique de vérité (breakpoint 1024px)
   ============================================================ */

/* Overlay sombre derrière le menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 997;
    transition: opacity 0.3s ease;
    opacity: 0;
}
.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 1024px) {

    /* Hamburger visible */
    .hamburger {
        display: flex !important;
        z-index: 1001;
        position: relative;
    }

    /* Couleur barres hamburger */
    .hamburger span {
        background: #C2641B;
    }
    nav:not(.scrolled) .hamburger span {
        background: #fff;
    }
    body.menu-open .hamburger span {
        background: #fff;
    }

    /* Nav-links : panneau latéral caché par défaut */
    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: min(300px, 85vw) !important;
        height: 100dvh !important;
        background: #141414 !important;
        padding: 90px 28px 40px !important;
        gap: 0 !important;
        z-index: 998 !important;
        overflow-y: auto !important;
        transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: none !important;
    }

    /* Menu ouvert */
    .nav-links.mobile-open {
        right: 0 !important;
        box-shadow: -4px 0 40px rgba(0,0,0,0.4) !important;
    }

    /* Éléments de liste */
    .nav-links li {
        width: 100%;
        list-style: none;
    }

    /* Liens */
    .nav-links a {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        padding: 15px 0 !important;
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        letter-spacing: 2.5px !important;
        text-transform: uppercase !important;
        color: rgba(239,235,227,0.6) !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.07) !important;
        transition: color 0.2s ease, padding-left 0.2s ease !important;
        gap: 0 !important;
    }

    .nav-links a:hover {
        color: #C2641B !important;
        padding-left: 10px !important;
    }

    .nav-links a.active {
        color: #C2641B !important;
        border-left: 3px solid #C2641B !important;
        padding-left: 12px !important;
    }

    .nav-links a::after { display: none !important; }

    /* Navbar padding réduit */
    nav {
        padding: 14px 20px !important;
    }
    nav.scrolled {
        padding: 12px 20px !important;
    }
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-page {
    background: #F2EEE4;
    min-height: 80vh;
    padding: 0 0 80px;
}
.checkout-page-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}
.checkout-page-header {
    padding: 52px 0 44px;
    text-align: center;
}
.checkout-page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #141414;
    line-height: 1.1;
    margin-top: 12px;
    letter-spacing: -0.5px;
}
.checkout-page-title span { color: #C2641B; }

.checkout-page-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 28px;
    align-items: start;
}

/* ── Boîtes ── */
.checkout-summary-box,
.checkout-form-box {
    background: #fff;
    border: 1px solid rgba(46,40,32,0.1);
    border-top: 3px solid #C2641B;
}
.checkout-summary-box { padding: 28px; }
.checkout-form-box    { padding: 36px; }
.checkout-success-box {
    background: #fff;
    border: 1px solid rgba(46,40,32,0.1);
    border-top: 3px solid #22c55e;
    padding: 52px 36px;
    text-align: center;
}

.checkout-box-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #141414;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(46,40,32,0.08);
}
.checkout-box-title svg { color: #C2641B; flex-shrink: 0; }

/* ── Items panier ── */
.checkout-items-list { margin-bottom: 20px; }
.checkout-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(46,40,32,0.06);
}
.checkout-item:last-child { border-bottom: none; }
.checkout-item-img {
    width: 64px;
    height: 64px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(46,40,32,0.1);
    background: #F2EEE4;
}
.checkout-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.checkout-item-info { flex: 1; min-width: 0; }
.checkout-item-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #141414;
    line-height: 1.4;
    margin-bottom: 4px;
}
.checkout-item-qty {
    font-size: 0.72rem;
    color: rgba(46,40,32,0.45);
    font-weight: 500;
}
.checkout-item-price {
    font-size: 0.92rem;
    font-weight: 900;
    color: #C2641B;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Totaux ── */
.checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 0.85rem;
    color: rgba(46,40,32,0.65);
    border-bottom: 1px solid rgba(46,40,32,0.05);
}
.checkout-total-final {
    font-size: 1.05rem;
    font-weight: 900;
    color: #141414;
    border-bottom: none;
    padding-top: 14px;
    margin-top: 6px;
    border-top: 2px solid #141414;
}

/* ── Garanties ── */
.checkout-guarantees {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding: 20px;
    background: #F9F6F1;
    border: 1px solid rgba(46,40,32,0.07);
}
.checkout-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: #2E2820;
    font-weight: 600;
}
.checkout-guarantee i { width: 15px; height: 15px; color: #C2641B; flex-shrink: 0; }

/* ── Formulaire ── */
.checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 24px;
}
.checkout-form-grid .form-group.full { grid-column: span 2; }

/* Surcharge propre des form-group pour fond clair */
.checkout-form-box .form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.checkout-form-box .form-group label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #2E2820;
}
.checkout-form-box .form-group input,
.checkout-form-box .form-group textarea,
.checkout-form-box .form-group select {
    background: #F9F6F1;
    border: 1.5px solid rgba(46,40,32,0.18);
    color: #141414;
    padding: 13px 16px;
    font-size: 0.92rem;
    font-family: 'Arboria','Inter',sans-serif;
    font-weight: 500;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}
.checkout-form-box .form-group input::placeholder,
.checkout-form-box .form-group textarea::placeholder {
    color: rgba(46,40,32,0.3);
    font-weight: 400;
}
.checkout-form-box .form-group input:focus,
.checkout-form-box .form-group textarea:focus,
.checkout-form-box .form-group select:focus {
    border-color: #C2641B;
    background: #fff;
}
.checkout-form-box .form-group textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.6;
}
.checkout-form-box .form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232E2820' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.checkout-form-box .form-group select option {
    background: #fff;
    color: #141414;
}

/* Séparateur section form */
.checkout-section-label {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C2641B;
    margin: 8px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(194,100,27,0.15);
    grid-column: span 2;
}

/* ── Bouton soumettre ── */
.checkout-submit-btn {
    width: 100%;
    padding: 18px 24px;
    background: #C2641B;
    color: #fff;
    border: none;
    font-family: 'Arboria','Inter',sans-serif;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.checkout-submit-btn:hover  { background: #a8541a; transform: translateY(-1px); }
.checkout-submit-btn:disabled { background: rgba(46,40,32,0.25); cursor: not-allowed; transform: none; }

.checkout-legal-note {
    font-size: 0.72rem;
    color: rgba(46,40,32,0.4);
    text-align: center;
    margin-top: 16px;
    line-height: 1.7;
}
.checkout-legal-note a { color: #C2641B; text-decoration: underline; }

/* ── Succès ── */
.checkout-success-icon {
    width: 80px; height: 80px;
    background: rgba(34,197,94,0.1);
    border: 2px solid #22c55e;
    color: #22c55e;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
}
.checkout-success-box h2 {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #141414;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.checkout-success-box p {
    font-size: 0.92rem;
    line-height: 1.85;
    color: rgba(46,40,32,0.65);
    max-width: 460px;
    margin: 0 auto;
}
.checkout-btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px; background: #141414; color: #fff;
    font-weight: 700; font-size: 0.75rem; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none; transition: background .2s;
}
.checkout-btn-secondary:hover { background: #C2641B; }
.checkout-btn-wa {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px; background: #25D366; color: #fff;
    font-weight: 700; font-size: 0.75rem; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none; transition: background .2s;
}
.checkout-btn-wa:hover { background: #1ebe59; }

/* ── Panier vide ── */
.checkout-empty-page {
    flex-direction: column; align-items: center; justify-content: center;
    padding: 100px 24px; text-align: center; color: rgba(46,40,32,0.5);
}
.checkout-empty-page h2 {
    font-size: 1.5rem; font-weight: 900; color: #141414;
    margin-bottom: 12px; text-transform: uppercase;
}
.checkout-empty-page p  { font-size: 0.9rem; margin-bottom: 32px; }
.checkout-empty-msg {
    font-size: 0.85rem; color: rgba(46,40,32,0.45);
    text-align: center; padding: 20px 0;
}
.checkout-empty-msg a { color: #C2641B; text-decoration: none; font-weight: 700; }

/* ── Responsive checkout ── */
@media (max-width: 960px) {
    .checkout-page-grid { grid-template-columns: 1fr; }
    .checkout-summary-col { order: 2; }
    .checkout-form-col    { order: 1; }
    .checkout-form-box { padding: 28px; }
}
@media (max-width: 600px) {
    .checkout-form-grid { grid-template-columns: 1fr; }
    .checkout-form-grid .form-group.full,
    .checkout-form-grid .checkout-section-label { grid-column: span 1; }
    .checkout-summary-box { padding: 20px; }
    .checkout-form-box    { padding: 20px; }
    .checkout-success-box { padding: 36px 20px; }
}

/* ── Process Section 3D ── */
.proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 60px;
    position: relative;
}

.proc-step {
    padding: 0 24px 40px;
    position: relative;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.proc-step.proc-visible {
    opacity: 1;
    transform: translateY(0);
}
.proc-step--1 { transition-delay: 0s; }
.proc-step--2 { transition-delay: 0.15s; }
.proc-step--3 { transition-delay: 0.30s; }
.proc-step--4 { transition-delay: 0.45s; }
/* Fallback : visible si JS ne charge pas */
@media (prefers-reduced-motion: reduce) {
    .proc-step { opacity: 1 !important; transform: none !important; }
}

/* Icône 3D */
.proc-icon-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
}
.proc-icon {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 8px 24px rgba(194,100,27,0.3));
    transition: transform 0.4s ease, filter 0.4s ease;
    animation: proc-float 4s ease-in-out infinite;
}
.proc-step--2 .proc-icon { animation-delay: 0.5s; }
.proc-step--3 .proc-icon { animation-delay: 1s; }
.proc-step--4 .proc-icon { animation-delay: 1.5s; }

.proc-step:hover .proc-icon {
    transform: translateY(-8px) scale(1.06);
    filter: drop-shadow(0 16px 32px rgba(194,100,27,0.5));
}

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

/* Lueur colorée sous l'icône */
.proc-glow {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 20px;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.5;
    transition: opacity 0.4s;
}
.proc-step:hover .proc-glow { opacity: 0.9; }
.proc-glow--1 { background: #C2641B; }
.proc-glow--2 { background: #C2641B; }
.proc-glow--3 { background: #1a3a5c; }
.proc-glow--4 { background: #C2641B; }

/* Numéro */
.proc-num {
    font-family: 'Arboria','Inter',sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: #C2641B;
    line-height: 1;
    margin-bottom: 10px;
}
/* Ligne séparatrice */
.proc-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #C2641B, rgba(194,100,27,0.2));
    margin-bottom: 16px;
    transition: width 0.4s ease;
}
.proc-step:hover .proc-line { width: 72px; }
.proc-line--last { background: rgba(194,100,27,0.2); }

.proc-step h4 {
    font-family: 'Arboria','Inter',sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #141414;
    margin-bottom: 10px;
}
.proc-step p {
    font-size: 0.85rem;
    color: rgba(46,40,32,0.6);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .proc-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
}
@media (max-width: 480px) {
    .proc-grid { grid-template-columns: 1fr; }
    .proc-icon-wrap { margin: 0 auto 24px; }
    .proc-step { text-align: center; }
    .proc-line { margin: 0 auto 16px; }
}

/* ── Trust Bar ── */
.trust-bar {
    background: #1a1a1a;
    border-top: 1px solid rgba(194,100,27,0.2);
    border-bottom: 1px solid rgba(194,100,27,0.2);
    padding: 14px 0;
    overflow: hidden;
}
.trust-bar-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(239,235,227,0.7);
    white-space: nowrap;
}
.trust-bar-item svg { color: #C2641B; flex-shrink: 0; }
.trust-bar-logos {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.trust-bar-logos img,
.trust-bar-logos svg { flex-shrink: 0; filter: brightness(0) invert(1); opacity: 0.75; }
.trust-bar-sep {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .trust-bar-sep { display: none; }
    .trust-bar-inner { gap: 16px; justify-content: center; }
    .trust-bar-item span { display: none; }
}

/* ── Paiement — Cartes radio ── */
.pm-cards {
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap:10px;
    margin-top:4px;
}
.pm-card {
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:8px; padding:14px 10px;
    border:1.5px solid rgba(46,40,32,0.15);
    background:#F9F6F1; cursor:pointer;
    transition:border-color .2s, background .2s;
    position:relative; text-align:center;
    min-height:80px;
}
.pm-card:hover { border-color:#C2641B; background:#fff; }
.pm-card input[type="radio"] {
    position:absolute; opacity:0; width:0; height:0; pointer-events:none;
}
.pm-card input[type="radio"]:checked ~ * { color:#C2641B; }
.pm-card:has(input:checked) {
    border-color:#C2641B; background:#fff;
    box-shadow:0 0 0 3px rgba(194,100,27,0.12);
}
.pm-card img { height:30px; width:auto; max-width:80px; object-fit:contain; }
.pm-card-icon { font-size:1.5rem; }
.pm-card-label { font-size:0.72rem; font-weight:700; color:#2E2820; line-height:1.3; }
.pm-card-check {
    display:none; position:absolute; top:6px; right:6px;
    background:#C2641B; color:#fff; border-radius:50%;
    width:18px; height:18px; align-items:center; justify-content:center;
}
.pm-card:has(input:checked) .pm-card-check { display:flex; }

@media (max-width:480px) {
    .pm-cards { grid-template-columns: repeat(2, 1fr); }
}

.da-footer-legal {
    font-size: 0.7rem;
    color: rgba(242,238,228,0.2);
    letter-spacing: 0.05em;
}

/* ============================================================
   RESPONSIVE GLOBAL — Mobile first fixes
   ============================================================ */

/* Empêcher tout débordement horizontal */
* { max-width: 100%; }
img, video, svg, iframe { max-width: 100%; height: auto; }

/* ── Tablette 1024px ── */
@media (max-width: 1024px) {
    /* Product single — colonne unique */
    .sp-inner {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }
    .sp-gallery { position: static; }

    /* Shop layout — sidebar cachée, produits pleine largeur */
    .shop-layout {
        grid-template-columns: 1fr !important;
        padding: 24px 4% 60px;
    }
    .shop-sidebar { position: relative; top: 0; display: none; }
    .shop-sidebar.mobile-open { display: block; }

    /* Sections grids 4 colonnes → 2 */
    .shop-guar-inner,
    .shop-why-grid { grid-template-columns: repeat(2,1fr) !important; }
    .shop-payment-grid { grid-template-columns: repeat(3,1fr) !important; }
    .shop-shipping-banner { grid-template-columns: auto 1fr !important; }
    .shop-shipping-cta { display: none; }

    /* FAQ shop */
    .shop-faq-inner { grid-template-columns: 1fr !important; gap: 40px; }
    .shop-faq-left  { position: relative; top: 0; }

    /* Da sections */
    .da-footer-grid { grid-template-columns: 1fr 1fr !important; gap: 40px; }
    .da-about-grid  { grid-template-columns: 1fr !important; }
    .da-services-grid { grid-template-columns: repeat(2,1fr) !important; }
    .da-process-grid  { grid-template-columns: repeat(2,1fr) !important; }
}

/* ── Mobile 768px ── */
@media (max-width: 768px) {
    /* Base */
    section, .da-section { padding: 60px 0 !important; }

    /* Navbar — géré par le bloc mobile dédié en fin de fichier */

    /* Hero */
    .shop-hero { padding: 110px 0 56px !important; }
    .shop-hero-stats { position: relative !important; right: auto !important; bottom: auto !important; margin-top: 28px; flex-wrap: wrap; }
    .shop-hero-stat { padding: 14px 20px !important; }

    /* Filter bar */
    .shop-filter-bar { top: 56px; }
    .shop-filter-tabs { overflow-x: auto; scrollbar-width: none; }
    .shop-filter-tabs::-webkit-scrollbar { display: none; }
    .sft-btn { padding: 14px 14px !important; font-size: 0.65rem !important; }

    /* Grids → 1 colonne */
    .shop-guar-inner { grid-template-columns: 1fr !important; }
    .shop-guar-item  { flex-direction: row !important; align-items: center !important; gap: 20px !important; padding: 28px 20px !important; }
    .shop-guar-num   { display: none !important; }
    .shop-guar-icon-wrap { margin-bottom: 0 !important; flex-shrink: 0; }

    .shop-why-grid    { grid-template-columns: 1fr !important; }
    .shop-payment-grid{ grid-template-columns: repeat(2,1fr) !important; }
    .shop-shipping-banner { grid-template-columns: 1fr !important; gap: 16px !important; padding: 28px 20px !important; }

    /* Produit single */
    .sp-inner, .sp-tabs-inner, .sp-related-inner { padding: 0 16px !important; }
    .sp-actions { flex-wrap: wrap !important; }
    .sp-btn-cart { flex: 1 1 100% !important; }
    .sp-btn-wa   { flex: 1 1 100% !important; justify-content: center !important; }
    .sp-related-grid { grid-template-columns: repeat(2,1fr) !important; gap: 12px !important; }
    .sp-posologie-grid { grid-template-columns: 1fr !important; }
    .sp-tabs-nav { top: 56px; }
    .sp-tab-btn  { padding: 14px 16px !important; font-size: 0.7rem !important; }
    .sp-cta-strip { padding: 40px 20px !important; }
    .sp-cta-strip-btns { flex-direction: column !important; align-items: stretch !important; }
    .sp-cta-strip-btn1,
    .sp-cta-strip-btn2 { justify-content: center !important; text-align: center !important; }

    /* Checkout modal */
    .checkout-form-grid { grid-template-columns: 1fr !important; }
    .checkout-form-grid .form-group.full { grid-column: span 1 !important; }

    /* Sections générales */
    .da-footer-grid { grid-template-columns: 1fr !important; }
    .da-services-grid { grid-template-columns: 1fr !important; }
    .da-process-grid  { grid-template-columns: 1fr !important; }

    /* Panier drawer */
    .cart-drawer { width: 100% !important; max-width: 100% !important; }

    /* Tables */
    table { display: block; overflow-x: auto; }
}

/* ── Petit mobile 480px ── */
@media (max-width: 480px) {
    /* Titres */
    .shop-hero h1,
    .shop-hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem) !important; }

    /* Grids → 1 colonne */
    .shop-cat-group   { grid-template-columns: 1fr !important; }
    .shop-payment-grid{ grid-template-columns: 1fr !important; }
    .sp-related-grid  { grid-template-columns: 1fr !important; }

    /* Inner padding réduit */
    .shop-hero-inner,
    .shop-inner,
    .da-container { padding-left: 16px !important; padding-right: 16px !important; }

    /* Breadcrumb */
    .sp-breadcrumb-inner { font-size: 0.68rem !important; flex-wrap: wrap !important; }
}
