:root {
    --green-dark: #005b35;
    --green-mid: #0a7a4a;
    --green-light: #8dc63f;
    --orange: #f78e1e;
    --orange-deep: #e07810;
    --cream: #f7faf5;
    --mist: #eef6e8;
    --ink: #123528;
    --muted: #4a6b58;
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(0, 91, 53, 0.12);
    --radius: 1.25rem;
    --font-display: "Outfit", sans-serif;
    --font-body: "Figtree", sans-serif;
    --nav-h: 5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background:
        radial-gradient(ellipse 80% 50% at 10% -10%, rgba(141, 198, 63, 0.18), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(247, 142, 30, 0.12), transparent 50%),
        linear-gradient(180deg, #fbfef9 0%, var(--cream) 40%, #f3f8ef 100%);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 2.5rem));
    margin-inline: auto;
}

/* ——— Nav ——— */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--nav-h);
    backdrop-filter: blur(16px);
    background: rgba(251, 254, 249, 0.85);
    border-bottom: 1px solid rgba(0, 91, 53, 0.08);
    transition: box-shadow 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 30px rgba(0, 91, 53, 0.08);
    background: rgba(251, 254, 249, 0.95);
}

.nav {
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover img {
    transform: rotate(-8deg) scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    color: var(--green-dark);
    text-transform: uppercase;
}

.brand-tag {
    font-size: 0.72rem;
    color: var(--green-light);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--muted);
    position: relative;
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--green-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--green-dark);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-link {
    position: relative;
    display: none; /* masqué sur mobile — visible desktop via media query */
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: var(--mist);
    color: var(--green-dark);
    transition: transform 0.25s ease, background 0.25s ease;
}

.cart-link--desktop {
    display: none !important;
}

.cart-link:hover {
    transform: translateY(-2px);
    background: #e3f0d6;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: var(--orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 999px;
    background: var(--mist);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ——— Buttons ——— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    border: 0;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
    color: white;
    box-shadow: 0 12px 28px rgba(247, 142, 30, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 16px 36px rgba(247, 142, 30, 0.45);
}

.btn-secondary {
    background: var(--green-dark);
    color: white;
    box-shadow: 0 12px 28px rgba(0, 91, 53, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--green-dark);
    border: 1.5px solid rgba(0, 91, 53, 0.25);
}

.btn-ghost:hover {
    background: var(--mist);
}

.btn-sm {
    padding: 0.65rem 1.1rem;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

/* ——— Hero carousel ——— */
.hero-carousel {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    overflow: hidden;
    background: #eef6e8;
}

.hero-carousel__track {
    position: relative;
    min-height: inherit;
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: inherit;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(40px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease,
        visibility 0.55s;
    z-index: 1;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 2;
}

.hero-bg--welcome {
    background:
        radial-gradient(circle at 50% 30%, rgba(247, 142, 30, 0.22), transparent 42%),
        radial-gradient(circle at 20% 80%, rgba(141, 198, 63, 0.28), transparent 40%),
        linear-gradient(160deg, #dff0c8 0%, #f7faf5 45%, #fff4e4 100%);
}

.welcome-slide__logo {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.25rem;
    object-fit: contain;
    filter: drop-shadow(0 16px 30px rgba(0, 91, 53, 0.22));
    animation: floatSoft 5s ease-in-out infinite;
}

.welcome-slide__eyebrow {
    margin: 0 0 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--orange);
}

.welcome-slide__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 7vw, 4.2rem);
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1.05;
    margin: 0 0 1rem;
}

.welcome-slide__title span {
    display: inline-block;
    background: linear-gradient(110deg, var(--green-dark) 20%, var(--green-light) 50%, var(--green-dark) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmerText 6s linear infinite;
}

.welcome-slide__text {
    margin: 0 auto 1.75rem;
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 34ch;
}

.welcome-slide .hero-cta {
    justify-content: center;
}

.hero-slide--media {
    display: grid;
    place-items: center;
    background: #0b2f1c;
    overflow: hidden;
}

.hero-slide__blur {
    position: absolute;
    inset: -8%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(28px) saturate(1.15);
    transform: scale(1.12);
    opacity: 0.95;
    z-index: 0;
}

.hero-slide__blur::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 47, 28, 0.28);
}

.hero-slide__img {
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
    max-width: min(100%, 1100px);
    max-height: calc(100vh - var(--nav-h) - 2rem);
    object-fit: contain;
    object-position: center;
    border-radius: 0.35rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.hero-slide__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5rem;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.hero-slide__overlay .btn {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 91, 53, 0.92);
    color: white;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-btn--prev {
    left: 0.85rem;
}

.carousel-btn--next {
    right: 0.85rem;
}

.carousel-btn:hover {
    background: var(--orange);
    transform: translateY(-50%) scale(1.08);
}

.hero-carousel__dots {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.45rem;
    align-items: center;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 91, 53, 0.12);
    box-shadow: 0 8px 22px rgba(0, 91, 53, 0.14);
}

.carousel-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(0, 91, 53, 0.28);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.carousel-dot.is-active {
    width: 1.55rem;
    background: var(--orange);
}

@media (max-width: 900px) {
    .hero-slide__img {
        max-width: calc(100% - 1rem);
        max-height: min(72vh, 640px);
        border-radius: 0.5rem;
    }

    .hero-slide--media {
        min-height: 72vh;
        padding: 1rem 0 3.5rem;
    }

    .hero-slide__blur {
        filter: blur(22px) saturate(1.1);
    }

    .hero-carousel {
        min-height: auto;
    }

    .hero-inner--center {
        min-height: auto;
    }

    .welcome-slide {
        padding: 2.5rem 0 4.5rem;
    }

    .carousel-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.4rem;
    }

    .carousel-btn--prev {
        left: 0.4rem;
    }

    .carousel-btn--next {
        right: 0.4rem;
    }
}

/* ——— Hero (legacy slide content) ——— */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    display: grid;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 40%, rgba(247, 142, 30, 0.2), transparent 45%),
        radial-gradient(circle at 20% 70%, rgba(141, 198, 63, 0.25), transparent 40%),
        linear-gradient(135deg, #e8f5dc 0%, #f7faf5 45%, #fff8ee 100%);
    z-index: 0;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 30% 20%, rgba(141, 198, 63, 0.15) 0 2px, transparent 3px),
        radial-gradient(circle at 70% 60%, rgba(0, 91, 53, 0.08) 0 1.5px, transparent 2px);
    background-size: 48px 48px, 36px 36px;
    animation: drift 28s linear infinite;
    opacity: 0.7;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem 0 4rem;
}

.hero-inner.hero-inner--center {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    text-align: center;
    min-height: calc(100vh - var(--nav-h));
    width: 100%;
}

.welcome-slide {
    width: 100%;
    max-width: 42rem;
    margin-inline: auto;
    padding: 3rem 1rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    animation: fadeUp 0.8s ease both;
}

.hero-brand img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 91, 53, 0.2));
    animation: floatSoft 5s ease-in-out infinite;
}

.hero-brand-copy .name {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--green-dark);
    line-height: 0.95;
    text-transform: uppercase;
}

.hero-brand-copy .tag {
    font-size: 1.05rem;
    color: var(--green-light);
    font-weight: 600;
    margin-top: 0.25rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.2vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem;
    color: var(--ink);
    max-width: 18ch;
    animation: fadeUp 0.8s 0.12s ease both;
}

.hero p.lead {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 38ch;
    margin: 0 0 1.75rem;
    animation: fadeUp 0.8s 0.22s ease both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    animation: fadeUp 0.8s 0.32s ease both;
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 420px;
    animation: fadeUp 1s 0.2s ease both;
}

.hero-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 142, 30, 0.35), rgba(141, 198, 63, 0.15) 45%, transparent 70%);
    animation: pulseGlow 4.5s ease-in-out infinite;
}

.hero-product {
    position: relative;
    width: min(340px, 80%);
    filter: drop-shadow(0 30px 50px rgba(0, 91, 53, 0.25));
    animation: floatProduct 6s ease-in-out infinite;
    transition: transform 0.5s ease;
}

.hero-product:hover {
    transform: scale(1.03) rotate(-2deg);
}

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

.section-head {
    text-align: center;
    margin-bottom: 2.75rem;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--green-dark);
    margin: 0 0 0.65rem;
}

.section-head p {
    margin: 0 auto;
    max-width: 48ch;
    color: var(--muted);
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

/* ——— Product grid ——— */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    perspective: 1000px;
}

.product-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 91, 53, 0.08);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.35s ease;
    backdrop-filter: blur(8px);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.product-card__media {
    aspect-ratio: 1;
    border-radius: 1rem;
    background: linear-gradient(160deg, #f0f7e8, #fff8ef);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.product-card__media img {
    width: 72%;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.08) translateY(-4px);
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin: 0;
    color: var(--green-dark);
}

.product-card .unit {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

.product-card .price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--orange);
    margin: 0;
}

.product-card__actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.product-card__actions form {
    flex: 1;
}

/* ——— About / Story ——— */
.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-panel {
    background: linear-gradient(145deg, var(--green-dark), var(--green-mid));
    color: white;
    border-radius: 2rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.story-panel::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -60px;
    bottom: -60px;
    border-radius: 50%;
    background: rgba(141, 198, 63, 0.25);
}

.story-panel h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
}

.story-panel p {
    margin: 0;
    opacity: 0.92;
    position: relative;
    z-index: 1;
}

.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0, 91, 53, 0.1);
    font-weight: 500;
}

.hours-list li span:last-child {
    color: var(--green-mid);
    font-weight: 700;
}

.hours-list li.is-closed span:last-child {
    color: #b45309;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(141, 198, 63, 0.2);
    color: var(--green-dark);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.status-pill::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: 0 0 0 4px rgba(141, 198, 63, 0.25);
    animation: pulseDot 1.8s ease infinite;
}

/* ——— Contact strip ——— */
.contact-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.contact-item {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 91, 53, 0.08);
}

.contact-item strong {
    display: block;
    font-family: var(--font-display);
    color: var(--green-dark);
    margin-bottom: 0.35rem;
}

.contact-item p,
.contact-item a {
    margin: 0;
    color: var(--muted);
}

.contact-item a:hover {
    color: var(--orange);
}

/* ——— Page headers ——— */
.page-hero {
    padding: 3rem 0 2rem;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--green-dark);
    margin: 0 0 0.5rem;
}

.page-hero p {
    margin: 0 auto;
    color: var(--muted);
    max-width: 40ch;
}

/* ——— Product detail ——— */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 4rem;
}

.product-detail__media {
    background: linear-gradient(160deg, #eef6e8, #fff8ef);
    border-radius: 2rem;
    padding: 2.5rem;
    display: grid;
    place-items: center;
    min-height: 420px;
}

.product-detail__media img {
    width: min(320px, 85%);
    filter: drop-shadow(0 24px 40px rgba(0, 91, 53, 0.2));
    animation: floatProduct 6s ease-in-out infinite;
}

.product-detail__info .price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    margin: 0.75rem 0 1.25rem;
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.qty-label {
    color: var(--green-dark);
}

.qty-row input:not(.qty-input) {
    width: 5rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1.5px solid rgba(0, 91, 53, 0.2);
    text-align: center;
    background: white;
}

.qty-input {
    width: 3rem;
    min-width: 2.5rem;
    border: 0;
    background: transparent;
    text-align: center;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--green-dark);
    font-size: 1.05rem;
    padding: 0;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

/* ——— Cart / Checkout ——— */
.cart-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 2rem;
    align-items: start;
    padding-bottom: 4rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.25rem;
    align-items: stretch;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 91, 53, 0.1);
    border-radius: 1.25rem;
    margin-bottom: 1rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cart-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.cart-item__media {
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, #eef6e8, #fff8ef);
    border-radius: 1rem;
    padding: 0.75rem;
    min-height: 120px;
}

.cart-item__media img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    background: transparent;
    padding: 0;
    transition: transform 0.4s ease;
}

.cart-item:hover .cart-item__media img {
    transform: scale(1.06) translateY(-3px);
}

.cart-item__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.cart-item__top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.cart-item__unit {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
}

.cart-item h3 {
    margin: 0.2rem 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--green-dark);
}

.cart-item__price-unit {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.cart-item__line {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--orange);
    white-space: nowrap;
}

.cart-item__line small {
    font-size: 0.75rem;
    font-weight: 700;
}

.cart-item__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--mist);
    border-radius: 999px;
    padding: 0.25rem;
}

.qty-control--card {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.65rem;
}

.card-cart-form {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.qty-btn {
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: white;
    color: var(--green-dark);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.qty-btn:hover {
    transform: scale(1.08);
    background: var(--green-dark);
    color: white;
}

.qty-value {
    min-width: 2rem;
    text-align: center;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--green-dark);
}

.cart-remove {
    border: 0;
    background: transparent;
    color: #b45309;
    font-weight: 700;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: 0.5rem;
    transition: background 0.25s ease, color 0.25s ease;
}

.cart-remove:hover {
    background: #fff7ed;
    color: #9a3412;
}

.cart-continue {
    margin-top: 0.5rem;
}

.cart-continue a {
    font-weight: 700;
    color: var(--green-dark);
}

.cart-continue a:hover {
    color: var(--orange);
}

.cart-summary .text-free {
    color: var(--green-mid);
    font-weight: 700;
}

.delivery-hint {
    margin: 1rem 0 1.25rem;
}

.delivery-hint__bar {
    height: 8px;
    border-radius: 999px;
    background: rgba(0, 91, 53, 0.1);
    overflow: hidden;
    margin-bottom: 0.55rem;
}

.delivery-hint__bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--green-light), var(--orange));
    transition: width 0.6s ease;
}

.delivery-hint p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
}

.delivery-ok {
    margin: 1rem 0 1.25rem;
    padding: 0.7rem 0.9rem;
    border-radius: 0.75rem;
    background: rgba(141, 198, 63, 0.15);
    color: var(--green-dark);
    font-weight: 700;
    font-size: 0.9rem;
}

.summary-note {
    margin: 0.85rem 0 0;
    font-size: 0.82rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.45;
}

.cart-empty {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 91, 53, 0.1);
    border-radius: 1.75rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.cart-empty__visual {
    position: relative;
    min-height: 260px;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, #eef6e8, #fff8ef);
    border-radius: 1.35rem;
    padding: 1.5rem;
}

.cart-empty__visual img {
    width: min(180px, 55%);
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.28));
    animation: floatProduct 6s ease-in-out infinite;
}

.cart-empty__second {
    position: absolute;
    right: 12%;
    bottom: 12%;
    width: min(140px, 38%) !important;
    animation-delay: 0.7s !important;
}

.cart-empty__copy h2 {
    font-family: var(--font-display);
    color: var(--green-dark);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin: 0 0 0.75rem;
}

.cart-empty__copy p {
    color: var(--muted);
    margin: 0 0 1.5rem;
}

.cart-empty__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cart-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.cart-trust div {
    background: white;
    border-radius: 1rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(0, 91, 53, 0.08);
}

.cart-trust strong {
    display: block;
    font-family: var(--font-display);
    color: var(--green-dark);
    margin-bottom: 0.25rem;
}

.cart-trust span {
    color: var(--muted);
    font-size: 0.9rem;
}

.cart-item img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    background: var(--mist);
    border-radius: 0.75rem;
    padding: 0.4rem;
}

.cart-item .meta {
    color: var(--muted);
    font-size: 0.9rem;
}

.cart-item form.inline {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    margin-top: 0.5rem;
}

.cart-item input[type="number"] {
    width: 4rem;
    padding: 0.4rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 91, 53, 0.2);
    text-align: center;
}

.summary-card {
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 91, 53, 0.1);
    box-shadow: var(--shadow);
}

.summary-card h2 {
    font-family: var(--font-display);
    margin: 0 0 1rem;
    color: var(--green-dark);
    font-size: 1.25rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.65rem;
    color: var(--muted);
}

.summary-row.total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 91, 53, 0.12);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--green-dark);
}

.form-grid {
    display: grid;
    gap: 1rem;
}

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

.field label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
    color: var(--green-dark);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    border: 1.5px solid rgba(0, 91, 53, 0.18);
    background: white;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--green-light);
    box-shadow: 0 0 0 4px rgba(141, 198, 63, 0.2);
}

.field .error {
    color: #b91c1c;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.payment-options {
    display: grid;
    gap: 0.65rem;
}

.payment-options label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 0.85rem;
    border: 1.5px solid rgba(0, 91, 53, 0.15);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.payment-options label:has(input:checked) {
    border-color: var(--green-light);
    background: rgba(141, 198, 63, 0.1);
}

.checkout-form-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 91, 53, 0.08);
}

.fulfillment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.fulfillment-card {
    cursor: pointer;
}

.fulfillment-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.fulfillment-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1.5px solid rgba(0, 91, 53, 0.15);
    background: white;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 110px;
}

.fulfillment-card__body strong {
    font-family: var(--font-display);
    color: var(--green-dark);
    font-size: 1.05rem;
}

.fulfillment-card__body small {
    color: var(--muted);
}

.fulfillment-card__price {
    margin-top: auto;
    font-style: normal;
    font-weight: 800;
    color: var(--orange);
    font-family: var(--font-display);
}

.fulfillment-card:has(input:checked) .fulfillment-card__body {
    border-color: var(--green-light);
    background: rgba(141, 198, 63, 0.12);
    box-shadow: 0 10px 24px rgba(0, 91, 53, 0.1);
    transform: translateY(-2px);
}

.pickup-info {
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(0, 91, 53, 0.08), rgba(141, 198, 63, 0.12));
    border: 1px solid rgba(0, 91, 53, 0.12);
}

.pickup-info strong {
    display: block;
    font-family: var(--font-display);
    color: var(--green-dark);
    margin-bottom: 0.35rem;
}

.pickup-info p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 560px) {
    .fulfillment-options {
        grid-template-columns: 1fr;
    }
}

.success-panel {
    text-align: center;
    max-width: 560px;
    margin: 3rem auto 5rem;
    padding: 2.5rem;
    background: white;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 91, 53, 0.1);
    box-shadow: var(--shadow);
    animation: fadeUp 0.7s ease both;
}

.success-panel .check {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-light), var(--green-dark));
    display: grid;
    place-items: center;
    color: white;
    font-size: 2rem;
    animation: popIn 0.5s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.success-panel h1 {
    font-family: var(--font-display);
    color: var(--green-dark);
    margin: 0 0 0.5rem;
}

.order-ref {
    display: inline-block;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: var(--mist);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--green-dark);
}

.empty-state {
    text-align: center;
    padding: 4rem 1rem;
}

.empty-state h2 {
    font-family: var(--font-display);
    color: var(--green-dark);
}

/* ——— Alerts ——— */
.flash {
    width: min(1120px, calc(100% - 2.5rem));
    margin: 1rem auto 0;
    padding: 0.9rem 1.1rem;
    border-radius: 0.85rem;
    font-weight: 600;
    animation: fadeUp 0.45s ease both;
}

.flash-success {
    background: rgba(141, 198, 63, 0.18);
    color: var(--green-dark);
    border: 1px solid rgba(141, 198, 63, 0.4);
}

.flash-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ——— Footer ——— */
.site-footer {
    background: linear-gradient(160deg, #004a2b, var(--green-dark) 50%, #023d26);
    color: rgba(255, 255, 255, 0.9);
    padding: 3.5rem 0 1.5rem;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-grid--4 {
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
}

.footer-brand {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.footer-brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: white;
    border-radius: 50%;
    padding: 0.25rem;
}

.footer-brand strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    display: block;
}

.footer-brand p {
    margin: 0.4rem 0 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

.site-footer h4 {
    font-family: var(--font-display);
    margin: 0 0 1rem;
    color: var(--green-light);
    font-size: 1rem;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.site-footer a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    opacity: 0.75;
}

/* ——— Reveal animations ——— */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    filter: blur(6px);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.85s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.92);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
    transform: translateX(0);
}

.reveal-scale.is-visible {
    transform: scale(1);
}

.stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ——— Global motion polish ——— */
.page-enter main {
    animation: pageIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 100;
    pointer-events: none;
    background: transparent;
}

.scroll-progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--green-light), var(--orange));
    box-shadow: 0 0 12px rgba(247, 142, 30, 0.45);
    transition: width 0.1s linear;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.35) 50%, transparent 80%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}

.btn:hover::after {
    transform: translateX(120%);
}

.btn-primary,
.btn-secondary {
    animation: none;
}

.hero-cta .btn-primary,
.cta-band .btn-primary,
.page-banner .btn-primary {
    animation: softPulse 3.5s ease-in-out infinite;
}

.hero-cta .btn-secondary,
.cta-band .btn-secondary {
    animation: softPulseGreen 3.5s ease-in-out infinite;
}

.product-card {
    will-change: transform;
}

.product-card.is-tilting {
    transition: transform 0.12s ease-out, box-shadow 0.35s ease;
}

.product-card__media {
    position: relative;
    overflow: hidden;
}

.product-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.35));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-card__media::after {
    opacity: 1;
}

.hero-bg::after {
    content: "";
    position: absolute;
    width: 55vmax;
    height: 55vmax;
    top: -20%;
    right: -15%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(141, 198, 63, 0.2), transparent 65%);
    animation: orbitBlob 18s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-copy .name {
    background: linear-gradient(110deg, var(--green-dark) 30%, var(--green-light) 50%, var(--green-dark) 70%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmerText 6s linear infinite;
}

.stat-block strong {
    display: inline-block;
}

.stat-block.is-counted strong {
    animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.value-card,
.info-block,
.timeline-item,
.contact-item {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.value-card:hover,
.info-block:hover,
.timeline-item:hover,
.contact-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(141, 198, 63, 0.35);
}

.cart-link.is-bump,
.cart-fab.is-bump {
    animation: cartBump 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Floating WhatsApp — partout */
.whatsapp-fab {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1.25rem, calc(1rem + env(safe-area-inset-bottom)));
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-fab:hover,
.whatsapp-fab:active {
    transform: scale(1.07);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.55);
}

/* Floating cart — visible sur mobile par défaut */
.cart-fab {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1.25rem, calc(1rem + env(safe-area-inset-bottom)));
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--orange) 0%, var(--orange-deep) 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(247, 142, 30, 0.5), 0 4px 12px rgba(0, 91, 53, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cart-fab:hover,
.cart-fab:active {
    transform: scale(1.07);
    box-shadow: 0 16px 34px rgba(247, 142, 30, 0.58);
}

.cart-fab .cart-badge {
    top: -2px;
    right: -2px;
    background: var(--green-dark);
    border: 2px solid #fff;
    color: #fff;
}

/* Mobile : WhatsApp au-dessus du panier */
@media (max-width: 900px) {
    .cart-fab {
        bottom: max(1.25rem, calc(1rem + env(safe-area-inset-bottom)));
    }

    .whatsapp-fab {
        bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px) + 3.75rem + 0.75rem);
    }
}

@media (min-width: 901px) {
    .cart-fab {
        display: none !important;
    }

    .cart-link--desktop {
        display: inline-flex !important;
    }

    .whatsapp-fab {
        bottom: max(1.5rem, calc(1.25rem + env(safe-area-inset-bottom)));
    }
}

.site-footer {
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(141, 198, 63, 0.12);
    top: -120px;
    right: -80px;
    animation: pulseGlow 7s ease-in-out infinite;
}

.hours-list li {
    transition: transform 0.3s ease, background 0.3s ease, padding 0.3s ease;
    border-radius: 0.5rem;
}

.hours-list li:hover {
    transform: translateX(6px);
    background: rgba(141, 198, 63, 0.08);
    padding-inline: 0.5rem;
}

.nav-links a {
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
    transform: translateY(-1px);
}

.brand-name {
    transition: letter-spacing 0.35s ease;
}

.brand:hover .brand-name {
    letter-spacing: 0.12em;
}

.flash {
    animation: slideDown 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-banner__copy h1,
.page-hero h1,
.section-head h2 {
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.summary-card {
    animation: fadeUp 0.7s 0.1s ease both;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    transform: translateY(-1px);
}

.field input,
.field textarea,
.field select {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.cta-band,
.contact-quick {
    position: relative;
    overflow: hidden;
}

.cta-band::after,
.contact-quick::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    right: -40px;
    bottom: -50px;
    animation: floatSoft 7s ease-in-out infinite;
}

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

@keyframes softPulse {
    0%,
    100% {
        box-shadow: 0 12px 28px rgba(247, 142, 30, 0.28);
    }
    50% {
        box-shadow: 0 16px 36px rgba(247, 142, 30, 0.42);
    }
}

.btn-secondary {
    animation-name: softPulseGreen;
}

@keyframes softPulseGreen {
    0%,
    100% {
        box-shadow: 0 12px 28px rgba(0, 91, 53, 0.22);
    }
    50% {
        box-shadow: 0 16px 36px rgba(0, 91, 53, 0.36);
    }
}

@keyframes shimmerText {
    to {
        background-position: 200% center;
    }
}

@keyframes orbitBlob {
    from {
        transform: translate(0, 0) scale(1);
    }
    to {
        transform: translate(-8%, 10%) scale(1.12);
    }
}

@keyframes cartBump {
    0% {
        transform: scale(1);
    }
    35% {
        transform: scale(1.18) rotate(-6deg);
    }
    70% {
        transform: scale(0.95) rotate(3deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

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

.search-bar {
    display: flex;
    gap: 0.65rem;
    max-width: 480px;
    margin: 0 auto 2rem;
}

.search-bar input {
    flex: 1;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    border: 1.5px solid rgba(0, 91, 53, 0.18);
    background: white;
}

/* ——— Keyframes ——— */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes floatSoft {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(3deg);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes pulseDot {
    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(141, 198, 63, 0.25);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(141, 198, 63, 0.1);
    }
}

@keyframes popIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes drift {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(48px);
    }
}

/* ——— About & Contact pages ——— */
.page-banner {
    position: relative;
    padding: 3.5rem 0 2.5rem;
    overflow: hidden;
}

.page-banner__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(247, 142, 30, 0.18), transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(141, 198, 63, 0.22), transparent 45%),
        linear-gradient(135deg, #e8f5dc, #f7faf5 55%, #fff8ee);
    z-index: 0;
}

.page-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 2rem;
    align-items: center;
}

.page-banner__copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--green-dark);
    margin: 0 0 0.75rem;
}

.page-banner__copy p {
    margin: 0;
    color: var(--muted);
    max-width: 42ch;
    font-size: 1.08rem;
}

.page-banner__visual {
    display: grid;
    place-items: center;
}

.page-banner__visual img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 16px 30px rgba(0, 91, 53, 0.2));
    animation: floatSoft 5s ease-in-out infinite;
}

.page-banner--contact .page-banner__inner {
    grid-template-columns: 1fr;
}

.section-soft {
    background: rgba(238, 246, 232, 0.55);
}

.about-intro {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

.about-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: var(--green-dark);
    margin: 0 0 1rem;
}

.about-intro p {
    color: var(--muted);
    margin: 0 0 1rem;
}

.about-intro__aside {
    display: grid;
    gap: 0.85rem;
}

.stat-block {
    background: white;
    border: 1px solid rgba(0, 91, 53, 0.08);
    border-radius: 1rem;
    padding: 1.15rem 1.25rem;
    box-shadow: 0 10px 28px rgba(0, 91, 53, 0.06);
}

.stat-block strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--orange);
    line-height: 1.1;
}

.stat-block span {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 91, 53, 0.08);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    background: var(--mist);
    color: var(--green-dark);
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: var(--font-display);
    margin: 0 0 0.5rem;
    color: var(--green-dark);
}

.value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

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

.about-products__media {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, #eef6e8, #fff8ef);
    border-radius: 2rem;
    padding: 2rem;
}

.about-products__media img {
    width: min(220px, 55%);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
    animation: floatProduct 6s ease-in-out infinite;
}

.about-products__second {
    position: absolute;
    right: 8%;
    bottom: 10%;
    width: min(180px, 42%) !important;
    animation-delay: 0.8s !important;
}

.about-products__copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    color: var(--green-dark);
    margin: 0 0 1rem;
}

.about-products__copy p {
    color: var(--muted);
}

.check-list {
    list-style: none;
    margin: 1.25rem 0 1.75rem;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--ink);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: inset 0 0 0 3px var(--mist);
}

.timeline {
    display: grid;
    gap: 1.25rem;
    max-width: 760px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    background: white;
    border-radius: 1.15rem;
    padding: 1.35rem 1.5rem;
    border: 1px solid rgba(0, 91, 53, 0.08);
}

.timeline-step {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--orange);
}

.timeline-item h3 {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    color: var(--green-dark);
}

.timeline-item p {
    margin: 0;
    color: var(--muted);
}

.cta-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 2rem 2.25rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: white;
}

.cta-band h2 {
    font-family: var(--font-display);
    margin: 0 0 0.4rem;
    font-size: 1.8rem;
}

.cta-band p {
    margin: 0;
    opacity: 0.9;
    max-width: 46ch;
}

.cta-band .eyebrow {
    color: var(--green-light);
}

.cta-band__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cta-band .btn-ghost {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: start;
    padding-bottom: 2rem;
}

.contact-info h2,
.contact-form-panel h2 {
    font-family: var(--font-display);
    color: var(--green-dark);
    margin: 0 0 1.25rem;
    font-size: 1.8rem;
}

.info-blocks {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.2rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 91, 53, 0.08);
    border-radius: 1rem;
}

.info-block__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    background: var(--mist);
    color: var(--green-dark);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.info-block strong {
    display: block;
    font-family: var(--font-display);
    color: var(--green-dark);
    margin-bottom: 0.2rem;
}

.info-block p {
    margin: 0;
    color: var(--muted);
}

.info-block a:hover {
    color: var(--orange);
}

.hours-box {
    background: white;
    border-radius: 1.25rem;
    padding: 1.35rem 1.5rem;
    border: 1px solid rgba(0, 91, 53, 0.1);
    margin-bottom: 1.5rem;
}

.hours-box h3 {
    font-family: var(--font-display);
    color: var(--green-dark);
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
}

.map-embed {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(0, 91, 53, 0.1);
    background: white;
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 240px;
    border: 0;
}

.map-caption {
    margin: 0;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.contact-form-panel {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 91, 53, 0.1);
    border-radius: 1.5rem;
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.form-lead {
    color: var(--muted);
    margin: -0.5rem 0 1.25rem;
}

.form-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0.75rem 0 0;
}

.form-note a {
    color: var(--green-dark);
}

.contact-quick {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.75rem 2rem;
    border-radius: 1.25rem;
    background: white;
    border: 1px solid rgba(0, 91, 53, 0.1);
}

.contact-quick h2 {
    font-family: var(--font-display);
    color: var(--green-dark);
    margin: 0 0 0.35rem;
    font-size: 1.4rem;
}

.contact-quick p {
    margin: 0;
    color: var(--muted);
    max-width: 48ch;
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
    .hero-inner,
    .story,
    .product-detail,
    .cart-layout,
    .checkout-layout,
    .footer-grid,
    .contact-strip,
    .about-intro,
    .about-products,
    .contact-layout,
    .page-banner__inner,
    .value-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-visual {
        min-height: 320px;
        order: -1;
    }

    .nav-links {
        position: fixed;
        inset: var(--nav-h) 0 auto 0;
        background: rgba(251, 254, 249, 0.98);
        flex-direction: column;
        padding: 1.25rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(0, 91, 53, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease;
    }

    .nav-links.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-footer {
        padding-bottom: 5.5rem;
    }

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

    .cart-item {
        grid-template-columns: 88px 1fr;
    }

    .cart-item .line-total {
        grid-column: 2;
    }

    .cart-empty,
    .cart-trust {
        grid-template-columns: 1fr;
    }

    .cart-empty__second {
        position: static;
        width: min(120px, 36%) !important;
        margin-top: 0.75rem;
        justify-self: center;
    }

    .cart-item__top {
        flex-direction: column;
        gap: 0.5rem;
    }

    .about-products__second {
        position: static;
        width: min(160px, 40%) !important;
        margin-top: 1rem;
        justify-self: center;
    }

    .about-products__media {
        min-height: auto;
    }
}

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

    .benefit-grid,
    .benefit-grid--home,
    .learn-grid,
    .format-table,
    .info-cards {
        grid-template-columns: 1fr;
    }

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

    .content-nav {
        position: static;
    }
}

/* ——— Content / editorial pages ——— */
.content-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.content-nav {
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
    display: grid;
    gap: 0.55rem;
    padding: 1.15rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 91, 53, 0.1);
    border-radius: 1rem;
}

.content-nav strong {
    font-family: var(--font-display);
    color: var(--green-dark);
    margin-bottom: 0.35rem;
}

.content-nav a {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.content-nav a:hover {
    color: var(--orange);
    transform: translateX(3px);
}

.content-main {
    display: grid;
    gap: 2rem;
}

.prose-block h2 {
    font-family: var(--font-display);
    color: var(--green-dark);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin: 0.35rem 0 0.9rem;
}

.prose-block p {
    color: var(--muted);
    margin: 0 0 1rem;
    line-height: 1.7;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.info-card {
    padding: 1.15rem;
    border-radius: 1rem;
    background: white;
    border: 1px solid rgba(0, 91, 53, 0.1);
}

.info-card strong {
    display: block;
    font-family: var(--font-display);
    color: var(--green-dark);
    margin-bottom: 0.35rem;
}

.info-card p {
    margin: 0;
    font-size: 0.95rem;
}

.tip-box {
    margin-top: 1.25rem;
    padding: 1.1rem 1.25rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(247, 142, 30, 0.12), rgba(141, 198, 63, 0.15));
    border: 1px solid rgba(247, 142, 30, 0.25);
}

.tip-box strong {
    display: block;
    color: var(--orange-deep);
    font-family: var(--font-display);
    margin-bottom: 0.3rem;
}

.tip-box p {
    margin: 0;
}

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

.format-table > div {
    padding: 1.25rem;
    border-radius: 1rem;
    background: white;
    border: 1px solid rgba(0, 91, 53, 0.1);
    text-align: center;
}

.format-table strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--green-dark);
}

.format-table span {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--orange);
    font-size: 1.15rem;
    margin: 0.35rem 0;
}

.format-table p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.cta-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.benefit-grid--home {
    grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 91, 53, 0.1);
    border-radius: 1.15rem;
    padding: 1.35rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.benefit-num {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 0.55rem;
}

.benefit-card h3 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    color: var(--green-dark);
    font-size: 1.1rem;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.learn-card {
    display: block;
    padding: 1.6rem;
    border-radius: 1.25rem;
    background: white;
    border: 1px solid rgba(0, 91, 53, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.learn-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.learn-card h3 {
    font-family: var(--font-display);
    color: var(--green-dark);
    margin: 0.35rem 0 0.55rem;
    font-size: 1.35rem;
}

.learn-card p {
    margin: 0 0 1rem;
    color: var(--muted);
}

.learn-link {
    font-weight: 800;
    color: var(--orange);
    font-family: var(--font-display);
}

.content-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.content-split h2 {
    font-family: var(--font-display);
    color: var(--green-dark);
    margin: 0.35rem 0 0.9rem;
}

.content-split p {
    color: var(--muted);
}

.content-split__media {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(0, 91, 53, 0.1);
    background: #0b2f1c;
}

.content-split__media img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid rgba(0, 91, 53, 0.1);
    border-radius: 1rem;
    padding: 0.35rem 1.1rem;
}

.faq-item summary {
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--green-dark);
    padding: 0.85rem 0;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;
    color: var(--orange);
    font-weight: 800;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0 0 1rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ——— Témoignages ——— */
.trust-section {
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: "";
    position: absolute;
    inset: 8% -10% auto auto;
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(141, 198, 63, 0.2), transparent 70%);
    pointer-events: none;
}

.trust-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.75rem 2rem;
    align-items: stretch;
}

.trust-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.trust-quote {
    margin: 0;
    padding: 0 0 0 1.25rem;
    border-left: 3px solid var(--green-light);
    position: relative;
}

.trust-quote--featured {
    padding: 1.75rem 1.5rem 1.75rem 1.75rem;
    border-left: none;
    border-radius: 1.5rem;
    background: linear-gradient(155deg, var(--green-dark) 0%, var(--green-mid) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    box-shadow: 0 24px 50px rgba(0, 91, 53, 0.2);
}

.trust-quote--solo {
    max-width: 40rem;
    margin-inline: auto;
    min-height: auto;
    justify-content: center;
}

.trust-quote--featured::before {
    content: "“";
    font-family: var(--font-display);
    font-size: 6.5rem;
    line-height: 0.75;
    color: rgba(141, 198, 63, 0.45);
    position: absolute;
    top: 1.1rem;
    left: 1.35rem;
    pointer-events: none;
}

.trust-quote p {
    margin: 0 0 1.15rem;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    font-weight: 600;
    line-height: 1.45;
    color: var(--ink);
    position: relative;
    z-index: 1;
}

.trust-quote--featured p {
    color: white;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.trust-quote footer {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    position: relative;
    z-index: 1;
}

.trust-quote footer strong {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--green-dark);
}

.trust-quote footer span {
    color: var(--muted);
    font-size: 0.92rem;
}

.trust-quote--featured footer strong {
    color: var(--green-light);
}

.trust-quote--featured footer span {
    color: rgba(255, 255, 255, 0.78);
}

.trust-footnote {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.65rem 1rem;
    margin: 2.25rem 0 0;
    color: var(--muted);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .trust-layout {
        grid-template-columns: 1fr;
    }

    .trust-quote--featured {
        min-height: auto;
    }
}

.field-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

.field-label-row label {
    margin-bottom: 0;
}

.geo-btn {
    border: 1px solid rgba(0, 91, 53, 0.2);
    background: var(--mist);
    color: var(--green-dark);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
}

.geo-btn:hover {
    background: var(--green-light);
    border-color: transparent;
}

.geo-btn:disabled {
    opacity: 0.6;
    cursor: wait;
}

.geo-status {
    margin: 0.45rem 0 0;
    font-size: 0.88rem;
    color: var(--muted);
}

.geo-status[data-tone="ok"] {
    color: var(--green-mid);
}

.geo-status[data-tone="warn"] {
    color: var(--orange-deep);
}

/* ——— Galerie lifestyle (huile) ——— */
.lifestyle-gallery {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.lifestyle-gallery figure {
    margin: 0;
}

.lifestyle-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1.15rem;
}

.lifestyle-gallery__hero {
    min-height: 280px;
}

.lifestyle-gallery__hero img {
    min-height: 280px;
    max-height: 360px;
}

.lifestyle-gallery__side img {
    min-height: 280px;
    max-height: 360px;
}

.lifestyle-gallery figcaption {
    margin-top: 0.65rem;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

@media (max-width: 700px) {
    .lifestyle-gallery {
        grid-template-columns: 1fr;
    }

    .lifestyle-gallery__hero img,
    .lifestyle-gallery__side img {
        min-height: 220px;
        max-height: 280px;
    }
}

.product-shot-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.product-shot-pair figure {
    margin: 0;
}

.product-shot-pair img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
    border-radius: 1.15rem;
    border: 1px solid rgba(0, 91, 53, 0.1);
}

.product-shot-pair figcaption {
    margin-top: 0.65rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 700px) {
    .product-shot-pair {
        grid-template-columns: 1fr;
    }
}

/* ——— Paiement / suivi ——— */
.payment-options--rich {
    display: grid;
    gap: 0.75rem;
}

.payment-card {
    display: block;
    cursor: pointer;
}

.payment-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-card__body {
    display: block;
    padding: 0.95rem 1.1rem;
    border-radius: 1rem;
    border: 1.5px solid rgba(0, 91, 53, 0.14);
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.payment-card__body strong {
    display: block;
    color: var(--green-dark);
    font-family: var(--font-display);
}

.payment-card__body small {
    color: var(--muted);
}

.payment-card:has(input:checked) .payment-card__body {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(247, 142, 30, 0.18);
}

.pay-hint {
    margin-top: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    background: var(--mist);
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.pay-layout,
.track-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 2rem;
    align-items: start;
    padding-bottom: 4rem;
}

.pay-main {
    display: grid;
    gap: 1.25rem;
}

.pay-box {
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: white;
    border: 1px solid rgba(0, 91, 53, 0.1);
    box-shadow: var(--shadow);
}

.pay-box h2 {
    font-family: var(--font-display);
    color: var(--green-dark);
    margin: 0.35rem 0 1rem;
    font-size: 1.35rem;
}

.pay-highlight {
    display: grid;
    gap: 0.25rem;
    padding: 1.25rem;
    border-radius: 1rem;
    background: linear-gradient(145deg, var(--green-dark), var(--green-mid));
    color: white;
    margin-bottom: 1.25rem;
}

.pay-highlight span {
    opacity: 0.8;
    font-size: 0.85rem;
}

.pay-highlight strong {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2rem);
    letter-spacing: 0.04em;
}

.pay-highlight em {
    font-style: normal;
    color: var(--green-light);
    font-weight: 600;
}

.pay-steps {
    margin: 0 0 1.25rem;
    padding-left: 1.2rem;
    color: var(--muted);
    line-height: 1.7;
}

.pay-rib {
    display: grid;
    gap: 0.75rem;
    margin: 0 0 1rem;
}

.pay-rib > div {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    gap: 0.5rem;
}

.pay-rib dt {
    color: var(--muted);
    font-size: 0.88rem;
}

.pay-rib dd {
    margin: 0;
    font-weight: 600;
    color: var(--ink);
}

.pay-rib .mono,
.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.92rem;
    word-break: break-all;
}

.pay-note {
    color: var(--muted);
    margin: 0 0 1rem;
}

.pay-rib-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.pay-aside-links {
    display: grid;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.pay-aside-links a {
    color: var(--green-mid);
    font-weight: 600;
}

.track-status-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: linear-gradient(145deg, var(--green-dark), var(--green-mid));
    color: white;
    margin-bottom: 1.5rem;
}

.track-status-card h2 {
    font-family: var(--font-display);
    margin: 0.35rem 0 0.65rem;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.track-status-card p {
    margin: 0;
    opacity: 0.9;
}

.track-timeline {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.track-timeline li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--muted);
    font-weight: 600;
}

.track-dot {
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    border: 2px solid rgba(0, 91, 53, 0.25);
    background: white;
    flex-shrink: 0;
}

.track-timeline li.is-done {
    color: var(--green-dark);
}

.track-timeline li.is-done .track-dot {
    background: var(--green-light);
    border-color: var(--green-light);
}

.track-timeline li.is-active {
    color: var(--orange-deep);
}

.track-timeline li.is-active .track-dot {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(247, 142, 30, 0.2);
}

.track-actions {
    margin-bottom: 1rem;
}

.track-proof-note,
.track-meta {
    color: var(--muted);
    line-height: 1.55;
}

.admin-wrap {
    padding: 2rem 0 4rem;
}

.admin-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-bar strong {
    font-family: var(--font-display);
    color: var(--green-dark);
    font-size: 1.25rem;
}

.admin-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.admin-filters a {
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: white;
    border: 1px solid rgba(0, 91, 53, 0.12);
    font-size: 0.85rem;
    color: var(--muted);
}

.admin-filters a.is-active {
    background: var(--green-dark);
    color: white;
    border-color: var(--green-dark);
}

.admin-table-wrap {
    overflow-x: auto;
    background: white;
    border-radius: 1rem;
    border: 1px solid rgba(0, 91, 53, 0.1);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.admin-table th,
.admin-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 91, 53, 0.08);
    vertical-align: top;
}

.admin-table th {
    background: var(--mist);
    color: var(--green-dark);
    font-family: var(--font-display);
}

.admin-detail {
    display: grid;
    gap: 1.25rem;
}

@media (max-width: 900px) {
    .pay-layout,
    .track-layout {
        grid-template-columns: 1fr;
    }

    .pay-rib > div {
        grid-template-columns: 1fr;
    }
}

.admin-bar__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.verify-wrap {
    padding-bottom: 5rem;
}

.verify-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
}

.verify-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: white;
    border: 1px solid rgba(0, 91, 53, 0.12);
    color: var(--muted);
    font-weight: 600;
    font-size: 0.88rem;
}

.verify-filter em {
    font-style: normal;
    background: var(--mist);
    color: var(--green-dark);
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    font-size: 0.78rem;
}

.verify-filter.is-active {
    background: var(--green-dark);
    color: white;
    border-color: var(--green-dark);
}

.verify-filter.is-active em {
    background: rgba(255, 255, 255, 0.18);
    color: white;
}

.verify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.15rem;
}

.verify-card {
    background: white;
    border: 1px solid rgba(0, 91, 53, 0.1);
    border-radius: 1.15rem;
    padding: 1.15rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.verify-card__top {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: flex-start;
}

.verify-card__top strong {
    font-family: var(--font-display);
    color: var(--green-dark);
}

.verify-card__top span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
}

.verify-badges {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-end;
}

.verify-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: var(--mist);
    color: var(--green-dark);
    white-space: nowrap;
}

.verify-badge--pay {
    background: rgba(247, 142, 30, 0.15);
    color: var(--orange-deep);
}

.verify-card__client {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.verify-proof {
    display: block;
    border-radius: 0.85rem;
    overflow: hidden;
    background: #f3f6f2;
    border: 1px solid rgba(0, 91, 53, 0.1);
    text-decoration: none;
}

.verify-proof img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.verify-proof span,
.verify-proof__pdf,
.verify-proof--empty {
    display: block;
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-mid);
}

.verify-proof__pdf,
.verify-proof--empty {
    min-height: 120px;
    display: grid;
    place-items: center;
    color: var(--muted);
}

.verify-card__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.verify-empty {
    grid-column: 1 / -1;
    color: var(--muted);
    text-align: center;
    padding: 2rem;
}

.verify-detail {
    display: grid;
    gap: 1.25rem;
}

.verify-proof-full {
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 91, 53, 0.12);
}

.verify-proof-full img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    background: #f4f4f4;
    display: block;
}

.verify-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.verify-meta {
    color: var(--muted);
    font-size: 0.9rem;
}

.verify-pagination {
    margin-top: 1.75rem;
}

@media (min-width: 900px) {
    .verify-detail {
        grid-template-columns: 1fr 1fr;
    }
}

/* ——— Visite locaux (vidéo portrait) ——— */
.tour-section .section-head {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.tour-video {
    margin: 0 auto;
    max-width: 380px;
}

.tour-video__frame {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #0a2e1c;
    box-shadow: 0 28px 60px rgba(0, 91, 53, 0.22);
    aspect-ratio: 9 / 16;
}

.tour-video__frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.tour-video figcaption {
    margin-top: 0.85rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
}

@media (min-width: 768px) {
    .tour-video {
        max-width: 420px;
    }
}

/* ——— Autorisation ——— */
.auth-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
}

.auth-copy h2 {
    font-family: var(--font-display);
    color: var(--green-dark);
    margin: 0.35rem 0 1rem;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.auth-copy > p {
    color: var(--muted);
    line-height: 1.7;
}

.auth-meta {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.auth-meta > div {
    padding: 0.95rem 1.1rem;
    border-radius: 0.9rem;
    background: white;
    border: 1px solid rgba(0, 91, 53, 0.1);
}

.auth-meta strong {
    display: block;
    font-family: var(--font-display);
    color: var(--orange);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.auth-meta span {
    color: var(--ink);
    font-weight: 600;
    line-height: 1.45;
}

.auth-doc {
    margin: 0;
}

.auth-doc__frame {
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 91, 53, 0.15);
    box-shadow: var(--shadow);
    background: #f4f4f4;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.auth-doc__frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(0, 91, 53, 0.18);
}

.auth-doc__frame img {
    width: 100%;
    height: auto;
    display: block;
}

.auth-doc figcaption {
    margin-top: 0.75rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.auth-teaser {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    padding: 1.75rem;
    border-radius: 1.5rem;
    background: white;
    border: 1px solid rgba(0, 91, 53, 0.1);
    box-shadow: var(--shadow);
}

.auth-teaser--compact {
    grid-template-columns: 1fr;
    max-width: 40rem;
}

.auth-teaser--compact .auth-teaser__copy p {
    margin-bottom: 0.85rem;
}

.auth-teaser--compact .learn-link {
    display: inline-block;
    color: var(--orange-deep);
    font-weight: 700;
    font-family: var(--font-display);
}

.auth-teaser__copy h2 {
    font-family: var(--font-display);
    color: var(--green-dark);
    margin: 0.35rem 0 0.85rem;
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
}

.auth-teaser__copy p {
    color: var(--muted);
    margin: 0 0 1.25rem;
    line-height: 1.65;
}

.auth-teaser__doc {
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 91, 53, 0.12);
    max-height: 280px;
}

.auth-teaser__doc img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.45s ease;
}

.auth-teaser__doc:hover img {
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .auth-layout,
    .auth-teaser {
        grid-template-columns: 1fr;
    }

    .auth-teaser__doc img {
        height: 220px;
    }
}

@media (max-width: 900px) {
    .content-grid,
    .content-split,
    .benefit-grid,
    .benefit-grid--home,
    .learn-grid,
    .format-table,
    .footer-grid--4 {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .content-nav {
        position: static;
        grid-template-columns: 1fr 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
