         :root {
            --beige: #F5DFC0;
            --beige2: #EDD0A0;
            --beige3: #E4BF88;
            --beige-light: #FBF3E8;
            --tc: #C4622D;
            --tc2: #A84E22;
            --tc3: #E07A4A;
            --vt: #3B5233;
            --vt2: #2D4228;
            --br: #7A4A2A;
            --tx: #2A1600;
            --txm: #6B4220;
            --txl: #A07050;
            --white: #FFFBF5;
            --fd: "Playfair Display", serif;
            --fl: "Lora", serif;
            --fb: "Inter", sans-serif;
            --r: 12px;
            --r2: 22px;
        }

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

        body {
            font-family: var(--fl);
            font-size: 17px;
            line-height: 1.7;
            background: var(--beige);
            color: var(--tx);
            overflow-x: hidden;
            width: 100%;
            position: relative;
            overscroll-behavior-x: none;
        }

        .spot-section {
            padding: 96px 0;
        }

        @media(max-width:767px) {
            .spot-section {
                padding: 64px 0;
            }
        }

        .sl {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--fb);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--tc);
            margin-bottom: 14px;
        }

        .sl::before {
            content: "";
            width: 20px;
            height: 2px;
            background: var(--tc);
        }

        h1,
        h2 {
            font-family: var(--fd);
            letter-spacing: -.02em;
        }

        h2 {
            font-size: clamp(28px, 4vw, 50px);
            font-weight: 900;
            line-height: 1.05;
            margin-bottom: 14px;
        }

        h2 em,
        h1 em {
            font-style: italic;
            color: var(--tc);
        }

        .sr {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .sr.in {
            opacity: 1;
            transform: none;
        }

        .sl-left {
            opacity: 0;
            transform: translateX(-26px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .sl-left.in {
            opacity: 1;
            transform: none;
        }

        .zoom-in {
            opacity: 0;
            transform: scale(.94);
            transition: opacity .7s ease, transform .7s ease;
        }

        .zoom-in.in {
            opacity: 1;
            transform: scale(1);
        }

        .d1 {
            transition-delay: .08s
        }

        .d2 {
            transition-delay: .16s
        }

        .d3 {
            transition-delay: .24s
        }

        .d4 {
            transition-delay: .32s
        }

        .d5 {
            transition-delay: .40s
        }

        .d6 {
            transition-delay: .48s
        }

        #prog {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1100;
            height: 3px;
            width: 0%;
            background: linear-gradient(90deg, var(--tc3), var(--tc));
            transition: width .1s linear;
            border-radius: 0 2px 2px 0;
        }

        #btt {
            position: fixed;
            bottom: 100px;
            right: 14px;
            z-index: 900;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--tc);
            color: #fff;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            opacity: 0;
            transform: translateY(12px);
            transition: opacity .3s, transform .3s, background .2s;
            box-shadow: 0 4px 16px rgba(196, 98, 45, .4);
        }

        #btt.show {
            opacity: 1;
            transform: translateY(0);
        }

        #btt:hover {
            background: var(--tc2);
        }

        #nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 52px;
            background: rgba(251, 243, 232, .97);
            backdrop-filter: blur(12px);
            box-shadow: 0 2px 20px rgba(42, 22, 0, .1);
            border-bottom: 1px solid rgba(196, 98, 45, .15);
            transition: all .4s;
        }

        #nav.on {
            padding: 12px 52px;
        }

        .nav-brand {
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo-svg {
            width: 54px;
            height: 62px;
            display: block;
            transition: transform .35s, filter .35s;
            flex-shrink: 0;
        }

        #nav.on .logo-svg {
            width: 46px;
            height: 52px;
        }

        .logo-svg:hover {
            transform: scale(1.06);
        }

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

        .nav-links a {
            font-family: var(--fb);
            font-size: 13px;
            font-weight: 500;
            color: var(--txm);
            text-decoration: none;
            letter-spacing: .03em;
            transition: color .2s;
        }

        .nav-links a:hover {
            color: var(--tc);
        }

        .nav-tel {
            font-family: var(--fb);
            font-size: 13px;
            font-weight: 700;
            color: var(--tc) !important;
            text-decoration: none;
            letter-spacing: .03em;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color .2s;
        }

        .nav-tel:hover {
            color: var(--tc2) !important;
        }

        .nav-tel svg {
            stroke: var(--tc);
            flex-shrink: 0;
        }

        .nav-carte {
            font-family: var(--fb);
            font-size: 13px;
            font-weight: 600;
            color: var(--vt) !important;
            border: 1.5px solid rgba(59, 82, 51, .35);
            border-radius: 50px;
            padding: 6px 16px;
            text-decoration: none;
            transition: all .2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .nav-carte:hover {
            background: var(--vt);
            color: #fff !important;
            border-color: var(--vt);
        }

        .nav-cta {
            background: var(--tc);
            color: #fff;
            font-family: var(--fb);
            font-size: 13px;
            font-weight: 600;
            padding: 10px 22px;
            border-radius: 50px;
            text-decoration: none;
            transition: all .2s;
            box-shadow: 0 4px 14px rgba(196, 98, 45, .35);
        }

        .nav-cta:hover {
            background: var(--tc2);
            transform: translateY(-1px);
            color: #fff;
        }

        .nav-burger {
            display: none;
            width: 38px;
            height: 38px;
            padding: 0;
            background: none;
            border: none;
            cursor: pointer;
            position: relative;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }
        .nav-burger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--tc);
            border-radius: 2px;
            transition: transform .3s ease, opacity .2s ease;
        }
        .nav-burger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .nav-burger.open span:nth-child(2) {
            opacity: 0;
        }
        .nav-burger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .nav-mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(42, 22, 0, .45);
            opacity: 0;
            visibility: hidden;
            transition: opacity .3s ease, visibility .3s ease;
            z-index: 1090;
        }
        .nav-mobile-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .nav-mobile {
            position: fixed;
            top: 0;
            right: 0;
            width: min(320px, 86vw);
            height: 100vh;
            background: var(--white, #fff);
            box-shadow: -8px 0 30px rgba(42, 22, 0, .18);
            transform: translateX(100%);
            transition: transform .35s cubic-bezier(.4, 0, .2, 1);
            z-index: 1100;
            padding: 70px 28px 28px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        .nav-mobile.open {
            transform: translateX(0);
        }

        .nav-mobile-close {
            position: absolute;
            top: 14px;
            right: 18px;
            width: 38px;
            height: 38px;
            background: none;
            border: none;
            font-size: 32px;
            line-height: 1;
            color: var(--tc);
            cursor: pointer;
            padding: 0;
        }

        .nav-mobile-links {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .nav-mobile-links a {
            font-family: var(--fb);
            font-size: 16px;
            font-weight: 600;
            color: var(--txm);
            text-decoration: none;
            padding: 14px 4px;
            border-bottom: 1px solid rgba(196, 98, 45, .12);
            transition: color .2s;
        }
        .nav-mobile-links a:hover {
            color: var(--tc);
        }
        .nav-mobile-tel {
            color: var(--tc) !important;
            font-weight: 700 !important;
            margin-top: 12px;
            border-bottom: none !important;
        }

        body.nav-mobile-locked {
            overflow: hidden;
        }

        @media(max-width:991px) {
            .nav-links {
                display: none;
            }
            .nav-burger {
                display: flex;
            }
            #nav,
            #nav.on {
                padding: 12px 22px;
            }
        }

        @media(max-width:499px) {
            .nav-cta {
                display: none;
            }
        }

        #hero {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 580px;
            max-height: 960px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

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

        .hs {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            transform: scale(1.04);
            animation: none;
        }

        .hs.active {
            opacity: 1;
            animation: kenBurns 5s ease-in-out forwards;
        }

        @keyframes kenBurns {
            from {
                transform: scale(1.04)
            }
            to {
                transform: scale(1.00)
            }
        }

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

        .hero-inner {
            position: relative;
            z-index: 10;
            padding: 0 6vw;
            max-width: 820px;
            width: 100%;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            font-family: var(--fb);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--tc3);
            margin-bottom: 22px;
            padding: 6px 16px;
            border: 1.5px solid rgba(224, 122, 74, .38);
            border-radius: 50px;
            background: rgba(224, 122, 74, .10);
            opacity: 0;
            transform: translateY(10px);
            animation: heroFadeUp .7s ease .2s forwards;
        }

        .hero-tag span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--tc3);
            animation: blink 2.2s ease-in-out infinite;
        }

        @keyframes blink {
            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }
            50% {
                opacity: .35;
                transform: scale(1.4)
            }
        }

        #hero h1 {
            font-size: clamp(42px, 6.5vw, 84px);
            font-weight: 900;
            line-height: .96;
            letter-spacing: -.025em;
            color: #fff;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(18px);
            animation: heroFadeUp .75s ease .4s forwards;
        }

        .hero-sub {
            font-family: var(--fb);
            font-size: clamp(15px, 2vw, 18px);
            font-weight: 400;
            line-height: 1.7;
            color: rgba(255, 255, 255, .75);
            max-width: 480px;
            margin-bottom: 36px;
            opacity: 0;
            transform: translateY(16px);
            animation: heroFadeUp .75s ease .6s forwards;
        }

        .hero-sub .hero-tag {
            background: var(--tc);
            color: #fff;
            border-color: var(--tc);
        }
        .hero-sub .hero-tag span {
            background: #fff;
        }

        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(14px);
            animation: heroFadeUp .75s ease .8s forwards;
        }

        .hero-products {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .hp-pill {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, .18);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, .25);
            border-radius: 50px;
            padding: 9px 18px;
            transition: transform .25s, background .25s;
            animation: pillIn .5s cubic-bezier(.22, .68, 0, 1.2) both;
        }

        .hp-pill:nth-child(1) {
            animation-delay: .9s
        }

        .hp-pill:nth-child(2) {
            animation-delay: 1.05s
        }

        .hp-pill:nth-child(3) {
            animation-delay: 1.2s
        }

        .hp-pill:nth-child(4) {
            animation-delay: 1.35s
        }

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

        .hp-pill:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, .28)
        }

        .hp-emoji {
            font-size: 20px
        }

        .hp-name {
            font-family: var(--fb);
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, .9);
            line-height: 1.1
        }

        .hp-price {
            font-family: var(--fd);
            font-size: 13px;
            font-weight: 700;
            color: var(--tc3)
        }

        .s-dots {
            position: absolute;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 9px;
            align-items: center;
            opacity: 0;
            animation: heroFadeIn .7s ease 1.1s forwards;
        }

        .s-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .35);
            border: none;
            cursor: pointer;
            transition: all .35s cubic-bezier(.22, .68, 0, 1.4);
        }

        .s-dot.active {
            width: 26px;
            border-radius: 4px;
            background: var(--tc3)
        }

        .s-dot:hover:not(.active) {
            background: rgba(255, 255, 255, .6);
            transform: scale(1.2)
        }

        @keyframes heroFadeUp {
            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes heroFadeIn {
            to {
                opacity: 1
            }
        }

        @media(max-width:767px) {
            #hero {
                align-items: flex-end;
            }
            .hero-inner {
                padding: 0 22px 80px;
                max-width: 100%;
            }
            .hero-btns {
                flex-direction: column;
            }
            .btn-hot,
            .btn-sec {
                width: 100%;
                justify-content: center;
            }
        }

        .mq {
            background: var(--tc);
            padding: 11px 0;
            overflow: hidden;
        }

        .mt {
            display: flex;
            gap: 44px;
            width: max-content;
            animation: ms 44s linear infinite;
        }

        .mq:hover .mt {
            animation-play-state: paused;
        }

        @keyframes ms {
            to {
                transform: translateX(-25%)
            }
        }

        .mi {
            font-family: var(--fd);
            font-size: 13px;
            font-weight: 700;
            font-style: italic;
            color: #fff;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .mi::after {
            content: "✦";
            font-style: normal;
            opacity: .55
        }

        .btn-hot {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--tc);
            color: #fff;
            font-family: var(--fb);
            font-size: 15px;
            font-weight: 600;
            padding: 15px 32px;
            border-radius: 50px;
            text-decoration: none;
            border: 2px solid transparent;
            box-shadow: 0 8px 24px rgba(196, 98, 45, .45);
            transition: background .25s, box-shadow .25s, transform .25s cubic-bezier(.22, .68, 0, 1.4);
        }

        .btn-hot:hover {
            background: var(--tc2);
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 14px 36px rgba(196, 98, 45, .58);
            color: #fff
        }

        .btn-hot .arr {
            display: inline-block;
            transition: transform .22s
        }

        .btn-hot:hover .arr {
            transform: translateX(5px)
        }

        .btn-sec {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, .80);
            font-family: var(--fb);
            font-size: 14px;
            font-weight: 500;
            padding: 15px 24px;
            border-radius: 50px;
            text-decoration: none;
            border: 1.5px solid rgba(255, 255, 255, .28);
            background: transparent;
            transition: border-color .25s, color .25s, transform .25s cubic-bezier(.22, .68, 0, 1.4);
        }

        .btn-sec:hover {
            border-color: var(--tc3);
            color: var(--tc3);
            transform: translateY(-2px)
        }

        .btn-lk {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--vt);
            color: #fff;
            font-family: var(--fb);
            font-size: 15px;
            font-weight: 600;
            padding: 13px 28px;
            border-radius: 50px;
            text-decoration: none;
            transition: all .25s;
            white-space: nowrap;
        }

        .btn-lk:hover {
            background: var(--tc);
            transform: translateY(-2px);
            color: #fff
        }

        #pres {
            background: var(--beige-light);
        }

        .pres-visual {
            position: relative;
            border-radius: var(--r2);
            overflow: hidden;
            height: 440px;
            border: 1.5px solid var(--beige3);
        }

        .pres-visual img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            object-position: center !important;
            display: block !important;
            transition: transform .6s cubic-bezier(.22, .68, 0, 1.2);
        }

        .pres-visual:hover img {
            transform: scale(1.04);
        }

        .peg-label {
            font-family: var(--fd);
            font-size: 13px;
            font-style: italic;
            color: var(--txm)
        }

        .pres-stamp {
            position: absolute;
            bottom: 18px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--tc);
            color: #fff;
            font-family: var(--fd);
            font-size: 13px;
            font-weight: 700;
            font-style: italic;
            padding: 9px 22px;
            border-radius: 50px;
            white-space: nowrap;
            box-shadow: 0 6px 18px rgba(196, 98, 45, .4);
        }

        .pres-text {
            font-family: var(--fl);
            font-size: 16px;
            color: var(--txm);
            line-height: 1.8;
            margin-bottom: 18px;
            font-style: italic
        }

        .pres-pts {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 28px
        }

        .pres-pts li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: var(--fb);
            font-size: 14px;
            color: var(--tx);
            font-weight: 500
        }

        .pres-pts li::before {
            content: "✦";
            color: var(--tc);
            font-size: 10px
        }

        #paniers {
            background: var(--beige);
        }

        .acompte-bar {
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(59, 82, 51, .08);
            border: 1.5px solid rgba(59, 82, 51, .2);
            border-radius: var(--r);
            padding: 14px 22px;
            margin-bottom: 48px;
        }

        .ab-emoji {
            font-size: 22px
        }

        .ab-text {
            font-family: var(--fb);
            font-size: 14px;
            color: var(--txm);
            line-height: 1.5
        }

        .ab-text strong {
            color: var(--vt)
        }

        .panier {
            background: var(--white);
            border: 1.5px solid var(--beige3);
            border-radius: var(--r2);
            overflow: hidden;
            transition: transform .3s, border-color .3s, box-shadow .3s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .panier:hover {
            transform: translateY(-8px);
            border-color: rgba(196, 98, 45, .45);
            box-shadow: 0 22px 56px rgba(122, 74, 42, .22)
        }

        .panier.top {
            border-color: var(--tc);
            border-width: 2px
        }

        .panier-ribbon {
            background: var(--tc);
            color: #fff;
            font-family: var(--fd);
            font-size: 11px;
            font-weight: 700;
            font-style: italic;
            text-align: center;
            padding: 6px;
            letter-spacing: .06em;
        }

        .panier-visual {
            height: 180px;
            position: relative;
            overflow: hidden;
        }

        .panier-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform .4s cubic-bezier(.22, .68, 0, 1.4);
        }

        .panier:hover .panier-visual img {
            transform: scale(1.08);
        }

        .panier:hover .panier-visual::after {
            opacity: 1
        }

        .panier-visual::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(42, 22, 0, .15);
            opacity: 0;
            transition: opacity .35s;
        }

        .pv-price {
            position: absolute;
            bottom: 12px;
            right: 12px;
            z-index: 1;
            background: rgba(42, 22, 0, .75);
            backdrop-filter: blur(4px);
            color: var(--beige);
            font-family: var(--fd);
            font-size: 20px;
            font-weight: 900;
            padding: 5px 13px;
            border-radius: 9px;
        }

        .panier-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column
        }

        .panier-name {
            font-family: var(--fd);
            font-size: 18px;
            font-weight: 900;
            color: var(--tx);
            margin-bottom: 6px
        }

        .panier-desc {
            font-family: var(--fl);
            font-size: 13px;
            color: var(--txm);
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 14px;
            flex: 1
        }

        .panier-items {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-bottom: 14px
        }

        .panier-items li {
            font-family: var(--fb);
            font-size: 12px;
            color: var(--txl);
            display: flex;
            align-items: center;
            gap: 7px
        }

        .panier-items li::before {
            content: "•";
            color: var(--tc);
            font-weight: 900
        }

        .panier-acompte {
            font-family: var(--fb);
            font-size: 12px;
            color: var(--txm);
            background: rgba(196, 98, 45, .07);
            border-radius: 8px;
            padding: 8px 11px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .panier-acompte strong {
            color: var(--tc)
        }

        .btn-cmd {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            background: var(--tc);
            color: #fff;
            font-family: var(--fb);
            font-size: 14px;
            font-weight: 600;
            padding: 12px;
            border-radius: 10px;
            text-decoration: none;
            transition: background .2s, transform .2s;
            border: none;
            cursor: pointer;
            margin-top: auto;
        }

        .btn-cmd:hover {
            background: var(--tc2);
            transform: translateY(-2px);
            color: #fff
        }

        .panier.top .btn-cmd {
            background: linear-gradient(135deg, var(--tc), var(--tc2))
        }

        .qty-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 8px 0 10px;
            font-family: var(--fb);
            font-size: 13px;
            color: var(--txm);
            font-weight: 600;
        }
        .qty-ctrl {
            display: flex;
            align-items: center;
            border: 1.5px solid var(--beige3);
            border-radius: 8px;
            overflow: hidden;
        }
        .qty-ctrl button {
            background: var(--beige-light);
            border: none;
            width: 30px;
            height: 30px;
            font-size: 16px;
            cursor: pointer;
            color: var(--tc);
            font-weight: 700;
            transition: background .15s;
        }
        .qty-ctrl button:hover { background: var(--beige2); }
        .qty-ctrl input {
            width: 40px;
            text-align: center;
            border: none;
            border-left: 1.5px solid var(--beige3);
            border-right: 1.5px solid var(--beige3);
            font-size: 14px;
            font-family: var(--fb);
            font-weight: 700;
            color: var(--tx);
            background: #fff;
            padding: 4px 2px;
            -moz-appearance: textfield;
            appearance: textfield;
        }
        .qty-ctrl input::-webkit-outer-spin-button,
        .qty-ctrl input::-webkit-inner-spin-button { -webkit-appearance: none; }

        .nav-cart-wrap {
            position: relative;
            display: flex;
            align-items: center;
        }
        .nav-cart-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            position: relative;
            display: flex;
            align-items: center;
            color: var(--tc);
            transition: transform .2s;
        }
        .nav-cart-btn:hover { transform: scale(1.1); }
        .nav-cart-btn svg {
            width: 26px;
            height: 26px;
            stroke: var(--tc);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .cart-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: var(--tc);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            font-family: var(--fb);
            min-width: 16px;
            height: 16px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
            border: 2px solid var(--white);
            line-height: 1;
        }
        @keyframes cartBounce {
            0%   { transform: scale(1); }
            40%  { transform: scale(1.5); }
            70%  { transform: scale(.9); }
            100% { transform: scale(1); }
        }
        .cart-badge-anim { animation: cartBounce .35s ease; }

        .cart-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            width: 340px;
            background: var(--white);
            border: 1.5px solid var(--beige3);
            border-radius: 14px;
            box-shadow: 0 8px 30px rgba(42,22,0,.16);
            z-index: 9999;
            padding: 12px;
        }
        .cart-dropdown.open { display: block; }
        @media(max-width:767px) {
            .cart-dropdown {
                position: fixed;
                top: 84px;
                left: 12px;
                right: 12px;
                width: auto;
                max-height: calc(100vh - 100px);
                overflow-y: auto;
            }
        }
        .cart-empty-msg {
            text-align: center;
            color: var(--txl);
            font-family: var(--fb);
            font-size: 13px;
            padding: 12px 0;
        }
        .cart-line {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 4px;
            border-bottom: 1px solid var(--beige3);
            font-family: var(--fb);
        }
        .cart-line-name {
            flex: 1;
            font-size: 13px;
            font-weight: 600;
            color: var(--tx);
        }
        .cart-line-price {
            font-size: 12px;
            color: var(--txm);
            white-space: nowrap;
        }
        .cart-line-qty {
            display: flex;
            align-items: center;
            border: 1.5px solid var(--beige3);
            border-radius: 6px;
            overflow: hidden;
        }
        .cart-line-qty button {
            background: var(--beige-light);
            border: none;
            width: 24px;
            height: 24px;
            font-size: 14px;
            cursor: pointer;
            color: var(--tc);
            font-weight: 700;
        }
        .cart-line-qty button:hover { background: var(--beige2); }
        .cart-line-qty input {
            width: 32px;
            text-align: center;
            border: none;
            border-left: 1px solid var(--beige3);
            border-right: 1px solid var(--beige3);
            font-size: 13px;
            font-weight: 700;
            color: var(--tx);
            background: #fff;
            padding: 2px;
            -moz-appearance: textfield;
            appearance: textfield;
            font-family: var(--fb);
        }
        .cart-line-qty input::-webkit-outer-spin-button,
        .cart-line-qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
        .cart-del {
            background: none;
            border: none;
            cursor: pointer;
            color: #c0392b;
            font-size: 18px;
            padding: 2px 4px;
            border-radius: 4px;
            line-height: 1;
            transition: background .15s;
        }
        .cart-del:hover { background: #fde8e8; }
        .cart-footer {
            padding-top: 10px;
            margin-top: 6px;
            border-top: 1.5px solid var(--beige3);
        }
        .cart-total-row {
            display: flex;
            justify-content: space-between;
            font-family: var(--fb);
            font-size: 13px;
            color: var(--txm);
            margin-bottom: 4px;
        }
        .cart-total-row strong { color: var(--tx); }
        .btn-cart-cmd {
            width: 100%;
            background: var(--tc);
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 11px;
            font-family: var(--fb);
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: background .2s;
            margin-top: 8px;
        }
        .btn-cart-cmd:hover { background: var(--tc2); }

        .offres-notice {
            background: #FFF3E8;
            border: 1.5px solid var(--tc);
            border-left: 5px solid var(--tc);
            border-radius: 12px;
            padding: 14px 18px;
            margin: 18px 0 22px;
            color: var(--tc);
            font-family: var(--fb);
            font-weight: 600;
            font-size: 15px;
            line-height: 1.55;
        }
        .offres-notice :is(p,ul,ol,li,strong,em,a) { color: var(--tc); }
        .offres-notice :last-child { margin-bottom: 0; }
        .offres-notice a { text-decoration: underline; }

        .cart-notice {
            background: #FFF3E8;
            border: 1px solid var(--tc);
            border-left: 4px solid var(--tc);
            border-radius: 8px;
            padding: 8px 10px;
            margin: 8px 0 4px;
            color: var(--tc);
            font-family: var(--fb);
            font-size: 12px;
            font-weight: 600;
            line-height: 1.45;
        }
        .cart-notice :is(p,ul,ol,li,strong,em,a) { color: var(--tc); }
        .cart-notice :last-child { margin-bottom: 0; }

        .om-notice {
            background: #FFF3E8;
            border: 1.5px solid var(--tc);
            border-left: 5px solid var(--tc);
            border-radius: 10px;
            padding: 12px 16px;
            margin: 14px 0;
            color: var(--tc);
            font-family: var(--fb);
            font-size: 13px;
            font-weight: 600;
            line-height: 1.5;
        }
        .om-notice :is(p,ul,ol,li,strong,em,a) { color: var(--tc); }
        .om-notice :last-child { margin-bottom: 0; }

        #comment {
            background: var(--beige-light);
        }

        .step-num {
            width: 92px;
            height: 92px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--tc);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 38px;
            margin: 0 auto 18px;
            box-shadow: 0 6px 20px rgba(196, 98, 45, .2);
            transition: transform .3s, background .3s;
        }

        .step:hover .step-num {
            transform: scale(1.1) rotate(-5deg);
            background: var(--tc)
        }

        .step-title {
            font-family: var(--fd);
            font-size: 18px;
            font-weight: 700;
            color: var(--tx);
            margin-bottom: 8px
        }

        .step-text {
            font-family: var(--fl);
            font-size: 14px;
            color: var(--txm);
            line-height: 1.7;
            font-style: italic
        }

        @media(min-width:768px) {
            .steps-row {
                position: relative
            }
            .steps-row::before {
                content: "";
                position: absolute;
                top: 46px;
                left: 25%;
                right: 25%;
                height: 1.5px;
                background: linear-gradient(90deg, transparent, var(--beige3), var(--tc3), var(--beige3), transparent);
                z-index: 0;
            }
            .step {
                position: relative;
                z-index: 1
            }
        }

        .paypal-box {
            display: flex;
            align-items: center;
            gap: 18px;
            background: var(--white);
            border: 1.5px solid var(--beige3);
            border-radius: var(--r);
            padding: 20px 26px;
            margin-top: 36px;
        }

        .pb-icon {
            font-size: 28px
        }

        .pb-text {
            font-family: var(--fb);
            font-size: 14px;
            color: var(--txm);
            line-height: 1.6
        }

        .pb-text strong {
            color: var(--tx)
        }

        #galerie {
            background: var(--beige2);
        }

        .gal-item {
            border-radius: var(--r);
            overflow: hidden;
            transition: transform .4s cubic-bezier(.22, .68, 0, 1.2);
            cursor: pointer;
            position: relative;
        }

        .gal-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform .5s cubic-bezier(.22, .68, 0, 1.2);
        }

        .gal-item:hover img {
            transform: scale(1.07);
        }

        .gal-item::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(42, 22, 0, 0);
            transition: background .35s;
        }

        .gal-item:hover {
            transform: scale(1.04)
        }

        .gal-item:hover::after {
            background: rgba(42, 22, 0, .15)
        }

        .gal-track-wrap {
            position: relative;
            overflow: hidden;

            mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
        }

        .gal-track {
            display: flex;
            gap: 14px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            cursor: grab;
            padding: 6px 2px 12px;
        }

        .gal-track::-webkit-scrollbar {
            display: none;
        }

        .gal-track.dragging {
            cursor: grabbing;
            scroll-behavior: auto;
        }

        .gal-item {
            flex: 0 0 340px;
            height: 260px;
            border-radius: var(--r);
            overflow: hidden;
            scroll-snap-align: start;
            position: relative;
            cursor: pointer;
            transition: transform .3s cubic-bezier(.22, .68, 0, 1.2);
        }

        @media(max-width:767px) {
            .gal-item {
                flex: 0 0 260px;
                height: 200px;
            }
        }

        @media(max-width:499px) {
            .gal-item {
                flex: 0 0 100%;
                height: 240px;
            }
        }

        .gal-item img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            object-position: center !important;
            display: block !important;
            transition: transform .45s cubic-bezier(.22, .68, 0, 1.2);
        }

        .gal-item:hover {
            transform: translateY(-4px);
        }

        .gal-item:hover img {
            transform: scale(1.06);
        }

        .gal-item::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(42, 22, 0, 0);
            transition: background .3s;
        }

        .gal-item:hover::after {
            background: rgba(42, 22, 0, .18);
        }

        .gal-zoom-icon {
            position: absolute;
            bottom: 10px;
            right: 10px;
            z-index: 2;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(245, 223, 192, .85);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(.8);
            transition: opacity .25s, transform .25s;
            pointer-events: none;
        }

        .gal-zoom-icon svg {
            width: 15px;
            height: 15px;
            stroke: var(--tx);
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
        }

        .gal-item:hover .gal-zoom-icon {
            opacity: 1;
            transform: scale(1);
        }

        .gal-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(245, 223, 192, .9);
            backdrop-filter: blur(6px);
            border: 1.5px solid var(--beige3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all .2s;
            box-shadow: 0 4px 14px rgba(42, 22, 0, .15);
        }

        .gal-arrow:hover {
            background: var(--tc);
            border-color: var(--tc);
        }

        .gal-arrow:hover svg {
            stroke: #fff;
        }

        .gal-arrow svg {
            width: 16px;
            height: 16px;
            stroke: var(--tx);
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .gal-prev {
            left: 6px;
        }

        .gal-next {
            right: 6px;
        }

        #lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(10, 5, 0, .92);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        #lightbox.open {
            display: flex;
        }

        #lightbox img {
            max-width: min(90vw, 1100px);
            max-height: 85vh;
            border-radius: var(--r);
            object-fit: contain;
            box-shadow: 0 24px 80px rgba(0, 0, 0, .6);
            animation: lbIn .3s cubic-bezier(.22, .68, 0, 1.2);
        }

        @keyframes lbIn {
            from {
                opacity: 0;
                transform: scale(.92)
            }
            to {
                opacity: 1;
                transform: scale(1)
            }
        }

        .lb-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .12);
            border: 1.5px solid rgba(255, 255, 255, .25);
            color: #fff;
            font-size: 22px;
            font-weight: 300;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background .2s, transform .2s;
            line-height: 1;
        }

        .lb-close:hover {
            background: var(--tc);
            transform: scale(1.1);
        }

        .lb-prev,
        .lb-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .1);
            border: 1.5px solid rgba(255, 255, 255, .2);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all .2s;
        }

        .lb-prev {
            left: 16px;
        }

        .lb-next {
            right: 16px;
        }

        .lb-prev:hover,
        .lb-next:hover {
            background: var(--tc);
            border-color: var(--tc);
        }

        .lb-prev svg,
        .lb-next svg {
            width: 20px;
            height: 20px;
            stroke: #fff;
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .lb-counter {
            position: absolute;
            bottom: 18px;
            left: 50%;
            transform: translateX(-50%);
            font-family: var(--fb);
            font-size: 13px;
            color: rgba(255, 255, 255, .6);
            background: rgba(0, 0, 0, .4);
            padding: 5px 14px;
            border-radius: 50px;
        }

        #actu {
            background: var(--beige-light);
        }

        .actu-slider {
            position: relative;
        }

        .actu-track {
            display: flex;
            gap: 22px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 6px 4px 18px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .actu-track::-webkit-scrollbar {
            display: none;
        }

        .actu-card {
            flex: 0 0 calc((100% - 44px) / 3);
            scroll-snap-align: start;
            background: var(--white);
            border: 1.5px solid var(--beige3);
            border-radius: var(--r2);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform .35s cubic-bezier(.22, .68, 0, 1.2), border-color .3s, box-shadow .3s;
        }

        .actu-card:hover {
            transform: translateY(-6px);
            border-color: rgba(196, 98, 45, .35);
            box-shadow: 0 16px 40px rgba(122, 74, 42, .14)
        }

        .actu-visual {
            width: 100%;
            aspect-ratio: 16 / 10;
            background: var(--beige2);
            overflow: hidden;
        }

        .actu-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .actu-body {
            padding: 22px 24px 26px;
        }

        .actu-title {
            font-family: var(--fd);
            font-size: 17px;
            font-weight: 700;
            color: var(--tx);
            margin-bottom: 8px
        }

        .actu-text {
            font-family: var(--fl);
            font-size: 14px;
            color: var(--txm);
            font-style: italic;
            line-height: 1.65;
            margin-bottom: 0
        }

        .actu-dots {
            display: flex;
            justify-content: center;
            gap: 9px;
            margin-top: 18px;
        }

        .actu-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(122, 74, 42, .25);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: all .35s cubic-bezier(.22, .68, 0, 1.4);
        }

        .actu-dot.active {
            width: 26px;
            border-radius: 4px;
            background: var(--tc);
        }

        .actu-dot:hover:not(.active) {
            background: rgba(122, 74, 42, .55);
            transform: scale(1.2);
        }

        @media (max-width: 991px) {
            .actu-card {
                flex: 0 0 calc((100% - 22px) / 2);
            }
        }

        @media (max-width: 600px) {
            .actu-card {
                flex: 0 0 100%;
            }
        }

        #avis {
            background: var(--beige2);
        }

        .avis-card {
            flex: 0 0 calc((100% - 44px) / 3);
            scroll-snap-align: start;
            position: relative;
            background: var(--white);
            border: 1.5px solid var(--beige3);
            border-radius: var(--r2);
            padding: 30px 28px 26px;
            display: flex;
            flex-direction: column;
            transition: transform .35s cubic-bezier(.22, .68, 0, 1.2), border-color .3s, box-shadow .3s;
        }

        .avis-card:hover {
            transform: translateY(-6px);
            border-color: rgba(196, 98, 45, .35);
            box-shadow: 0 16px 40px rgba(122, 74, 42, .14);
        }

        .avis-quote {
            font-family: var(--fd);
            font-size: 64px;
            line-height: .7;
            color: var(--beige3);
            margin-bottom: 6px;
        }

        .avis-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 12px;
        }

        .avis-star {
            color: var(--beige3);
            font-size: 16px;
            line-height: 1;
        }

        .avis-star.on {
            color: var(--tc);
        }

        .avis-text {
            font-family: var(--fl);
            font-size: 15px;
            color: var(--txm);
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 22px;
            flex: 1;
        }

        .read-more-btn {
            display: inline;
            background: none;
            border: none;
            padding: 0;
            margin-left: 4px;
            font-family: var(--fb);
            font-size: 13px;
            font-weight: 600;
            font-style: normal;
            color: var(--tc);
            cursor: pointer;
            text-decoration: underline;
        }

        .read-more-btn:hover {
            color: var(--tc2);
        }

        .avis-author {
            display: flex;
            align-items: center;
            gap: 13px;
            margin-top: auto;
            padding-top: 18px;
            border-top: 1px solid var(--beige);
        }

        .avis-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .avis-meta {
            display: flex;
            flex-direction: column;
            line-height: 1.35;
        }

        .avis-meta strong {
            font-family: var(--fd);
            font-size: 16px;
            color: var(--tx);
        }

        .avis-meta span {
            font-family: var(--fb);
            font-size: 12px;
            color: var(--txl);
        }

        @media (max-width: 991px) {
            .avis-card {
                flex: 0 0 calc((100% - 22px) / 2);
            }
        }

        @media (max-width: 600px) {
            .avis-card {
                flex: 0 0 100%;
            }
        }

        #infos {
            background: var(--vt);
        }

        #infos h2 {
            color: #fff;
        }

        #infos h2 em {
            color: var(--tc3);
        }

        #infos .sl {
            color: var(--tc3);
        }

        #infos .sl::before {
            background: var(--tc3);
        }

        .ic {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: var(--r);
            padding: 18px 22px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: border-color .3s, background .3s, transform .3s;
            margin-bottom: 13px;
        }

        .ic:hover {
            border-color: rgba(196, 98, 45, .45);
            background: rgba(196, 98, 45, .07);
            transform: translateX(5px)
        }

        .ic-ico {
            font-size: 22px;
            flex-shrink: 0;
            margin-top: 1px
        }

        .ic-label {
            font-family: var(--fb);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .13em;
            text-transform: uppercase;
            color: var(--tc3);
            margin-bottom: 3px
        }

        .ic-val {
            font-family: var(--fl);
            font-size: 15px;
            color: #fff;
            line-height: 1.5
        }

        .ic-sub {
            font-family: var(--fb);
            font-size: 12px;
            color: rgba(255, 255, 255, .42);
            margin-top: 2px
        }

        .map-wrap {
            border-radius: var(--r2);
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, .12);
            transition: box-shadow .35s, transform .35s;
        }

        .map-wrap:hover {
            box-shadow: 0 12px 36px rgba(59, 82, 51, .3);
            transform: translateY(-3px)
        }

        .map-wrap iframe {
            display: block;
            width: 100%;
            height: 320px;
            border: none;
            filter: sepia(.12) saturate(.9)
        }

        .btn-maps {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--tc);
            color: #fff;
            font-family: var(--fb);
            font-size: 13px;
            font-weight: 600;
            padding: 11px 22px;
            border-radius: 50px;
            text-decoration: none;
            transition: all .2s;
            margin-top: 14px;
        }

        .btn-maps:hover {
            background: var(--tc2);
            transform: translateY(-2px);
            color: #fff
        }

        #contact {
            background: var(--beige-light);
        }

        #contact h2 em {
            color: var(--tc);
        }

        .contact-left p {
            font-family: var(--fl);
            font-size: 16px;
            color: var(--txm);
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 18px
        }

        .contact-pts {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 24px
        }

        .contact-pts li {
            display: flex;
            align-items: center;
            gap: 11px;
            font-family: var(--fb);
            font-size: 14px;
            color: var(--txm)
        }

        .contact-pts li::before {
            content: "✦";
            color: var(--tc);
            font-size: 10px;
            flex-shrink: 0
        }

        .form-label {
            font-family: var(--fb);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--txm)
        }

        .form-control,
        .form-select {
            font-family: var(--fl);
            font-size: 15px;
            color: var(--tx);
            background: var(--white);
            border: 1.5px solid var(--beige3);
            border-radius: 10px;
            padding: 13px 16px;
            transition: border-color .2s, box-shadow .2s, transform .2s;
        }

        .form-control::placeholder {
            color: var(--txl);
            font-style: italic
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--tc);
            box-shadow: 0 0 0 3px rgba(196, 98, 45, .12);
            transform: translateY(-1px);
            background: var(--white);
        }

        .cform-note {
            font-family: var(--fb);
            font-size: 12px;
            color: var(--txl)
        }

        .btn-send {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--tc);
            color: #fff;
            font-family: var(--fb);
            font-size: 15px;
            font-weight: 600;
            padding: 14px 30px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all .3s;
            box-shadow: 0 6px 18px rgba(196, 98, 45, .38);
        }

        .btn-send:hover {
            background: var(--tc2);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(196, 98, 45, .5);
            color: #fff
        }

        .form-success {
            display: none;
            background: rgba(59, 82, 51, .08);
            border: 1.5px solid rgba(59, 82, 51, .25);
            border-radius: var(--r);
            padding: 18px 22px;
            text-align: center;
            font-family: var(--fl);
            font-size: 16px;
            color: var(--vt);
            font-style: italic;
            margin-top: 8px;
        }

        .form-error {
            display: none;
            background: #fdecea;
            border: 1.5px solid #e74c3c;
            border-radius: var(--r);
            color: #b71c1c;
            font-family: var(--fb);
            font-size: 14px;
            font-weight: 500;
            padding: 14px 18px;
            margin-bottom: 4px;
        }

        #cform .form-control.is-invalid,
        #cform .form-select.is-invalid {
            border-color: #e74c3c !important;
            box-shadow: 0 0 0 .15rem rgba(231, 76, 60, .18) !important;
            background-color: #fdf5f4;
        }

        #cform .rgpd-check.is-invalid {
            outline: 2px solid #e74c3c;
            outline-offset: 4px;
            border-radius: 6px;
        }

        #cform .hp-field {
            position: absolute !important;
            left: -10000px !important;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        #fin {
            background: var(--beige);
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 120px 0;
        }

        #fin::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 50%, rgba(196, 98, 45, .1) 0%, transparent 65%), radial-gradient(ellipse at 15% 85%, rgba(59, 82, 51, .06) 0%, transparent 40%);
        }

        .fin-deco-l,
        .fin-deco-r {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 130px;
            opacity: .07;
            filter: blur(1px)
        }

        .fin-deco-l {
            left: 4%
        }

        .fin-deco-r {
            right: 4%
        }

        .fin-in {
            position: relative;
            z-index: 1;
            max-width: 680px;
            margin: 0 auto;
            padding: 0 22px
        }

        .fin-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 24px
        }

        .fin-headline {
            font-family: var(--fd);
            font-size: clamp(32px, 5.5vw, 66px);
            font-weight: 900;
            line-height: .97;
            letter-spacing: -.025em;
            color: var(--tx);
            margin-bottom: 18px
        }

        .fin-headline em {
            font-style: italic;
            color: var(--tc)
        }

        .fin-sub {
            font-family: var(--fl);
            font-size: 18px;
            color: var(--txm);
            font-style: italic;
            margin-bottom: 44px;
            line-height: 1.7
        }

        .btn-xl {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--tc);
            color: #fff;
            font-family: var(--fb);
            font-size: 17px;
            font-weight: 600;
            padding: 18px 42px;
            border-radius: 50px;
            text-decoration: none;
            transition: all .3s;
            box-shadow: 0 10px 30px rgba(196, 98, 45, .42);
            animation: pulseBtn 2.8s ease-in-out infinite;
        }

        .btn-xl:hover {
            background: var(--tc2);
            transform: translateY(-4px);
            box-shadow: 0 18px 48px rgba(196, 98, 45, .55);
            color: #fff;
            animation: none
        }

        @keyframes pulseBtn {
            0%,
            100% {
                box-shadow: 0 10px 30px rgba(196, 98, 45, .42)
            }
            50% {
                box-shadow: 0 10px 42px rgba(196, 98, 45, .65), 0 0 0 8px rgba(196, 98, 45, .08)
            }
        }

        .fin-trust {
            display: flex;
            justify-content: center;
            gap: 22px;
            flex-wrap: wrap;
            margin-top: 28px
        }

        .fti {
            display: flex;
            align-items: center;
            gap: 7px;
            font-family: var(--fb);
            font-size: 13px;
            color: var(--txl)
        }

        .fti::before {
            content: "✓";
            color: var(--tc);
            font-weight: 900;
            font-size: 14px
        }

        footer {
            background: var(--tx);
            padding: 40px 0;
            border-top: 1px solid rgba(255, 255, 255, .06)
        }

        .f-name {
            font-family: var(--fd);
            font-size: 15px;
            font-weight: 700;
            font-style: italic;
            color: rgba(255, 255, 255, .85)
        }

        .f-sub {
            font-family: var(--fb);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--tc3)
        }

        .f-links a {
            font-family: var(--fb);
            font-size: 13px;
            color: rgba(255, 255, 255, .38);
            text-decoration: none;
            transition: color .2s;
            margin-right: 20px
        }

        .f-links a:hover {
            color: var(--tc3)
        }

        .f-copy {
            font-family: var(--fb);
            font-size: 12px;
            color: rgba(255, 255, 255, .2)
        }

        .f-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .14);
            color: rgba(255, 255, 255, .55);
            text-decoration: none;
            transition: background .2s, color .2s, transform .2s;
        }

        .f-social a:hover {
            background: #1877F2;
            border-color: #1877F2;
            color: #fff;
            transform: translateY(-2px);
        }

        .logo-svg:hover {
            transform: scale(1.06)
        }

        .actu-card,
        .panier {
            will-change: transform
        }

        .hs img,
        .panier-visual img,
        .gal-item img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            object-position: center !important;
            display: block !important;
        }

        .hs img {
            position: absolute !important;
            inset: 0 !important;
        }

        .gal-item {
            display: block;
            overflow: hidden;
        }

        .rgpd-check {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px 16px;
            background: rgba(59, 82, 51, .05);
            border: 1.5px solid rgba(59, 82, 51, .15);
            border-radius: 10px;
        }

        .rgpd-check input[type="checkbox"] {
            width: 18px;
            height: 18px;
            min-width: 18px;
            margin-top: 3px;
            cursor: pointer;
            accent-color: var(--vt);
        }

        .rgpd-check label {
            font-family: var(--fb);
            font-size: 13px;
            color: var(--txm);
            line-height: 1.6;
            cursor: pointer;
        }

        .rgpd-check label a {
            color: var(--tc);
            text-decoration: underline;
        }

        .rgpd-check label a:hover {
            color: var(--tc2);
        }

        .recaptcha-box {
            display: flex;
            align-items: center;
            gap: 16px;
            background: #f9f9f9;
            border: 1px solid #d3d3d3;
            border-radius: 4px;
            padding: 14px 16px;
            width: fit-content;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, .08);
            min-width: 300px;
        }

        .recaptcha-checkbox {
            width: 24px;
            height: 24px;
            min-width: 24px;
            border: 2px solid #c1c1c1;
            border-radius: 2px;
            background: #fff;
            cursor: pointer;
            position: relative;
            transition: border-color .2s;
            flex-shrink: 0;
            appearance: none;
            -webkit-appearance: none;
        }

        .recaptcha-checkbox:checked {
            border-color: #4CAF50;
            background: #fff;
        }

        .recaptcha-checkbox:checked::after {
            content: "";
            position: absolute;
            top: 2px;
            left: 7px;
            width: 7px;
            height: 13px;
            border: 2.5px solid #4CAF50;
            border-top: none;
            border-left: none;
            transform: rotate(45deg);
        }

        .recaptcha-label {
            font-family: Arial, sans-serif;
            font-size: 14px;
            color: #333;
            flex: 1;
            user-select: none;
            cursor: pointer;
        }

        .recaptcha-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            margin-left: auto;
        }

        .recaptcha-logo svg {
            width: 32px;
            height: 32px;
        }

        .recaptcha-logo-text {
            font-size: 8px;
            color: #999;
            font-family: Arial, sans-serif;
            text-align: center;
            line-height: 1.2;
        }

        .recaptcha-logo-text a {
            color: #999;
            text-decoration: none;
        }

        .recaptcha-logo-text a:hover {
            text-decoration: underline;
        }

        .f-legal {
            width: 100%;
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding-top: 18px;
            margin-top: 4px;
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .f-legal a {
            font-family: var(--fb);
            font-size: 12px;
            color: rgba(255, 255, 255, .35);
            text-decoration: none;
            transition: color .2s;
        }

        .f-legal a:hover {
            color: var(--tc3);
        }

        .f-legal-sep {
            width: 1px;
            height: 12px;
            background: rgba(255, 255, 255, .15);
        }

        .logo-img {
            height: 56px;
            width: auto;
            display: block;
            transition: transform .3s ease, opacity .3s ease;
            flex-shrink: 0;
        }

        .logo-img:hover {
            transform: scale(1.05);
            opacity: .9;
        }

        #nav.on .logo-img {
            height: 48px;
        }

        .logo-img-footer {
            height: 110px;
            width: auto;
            display: block;
            flex-shrink: 0;
            opacity: .92;
            filter: brightness(1.1);
        }

        .logo-img-footer:hover {
            opacity: 1;
        }

        .logo-img-fin {
            height: 150px;
            width: auto;
            display: inline-block;
            opacity: .85;
            margin-bottom: 10px;
        }

        .om-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(42,22,0,.55);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 16px;
            backdrop-filter: blur(3px);
        }
        .om-overlay.open { display: flex; }
        .om-box {
            background: var(--white);
            border-radius: 18px;
            width: 100%;
            max-width: 520px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(42,22,0,.25);
            animation: omSlideIn .25s ease;
        }
        @keyframes omSlideIn {
            from { opacity:0; transform: translateY(20px) scale(.97); }
            to   { opacity:1; transform: translateY(0) scale(1); }
        }
        .om-close {
            position: absolute;
            top: 14px; right: 16px;
            background: none;
            border: none;
            font-size: 22px;
            cursor: pointer;
            color: var(--txl);
            line-height: 1;
            padding: 4px 6px;
            border-radius: 6px;
            transition: background .15s, color .15s;
            z-index: 1;
        }
        .om-close:hover { background: var(--beige2); color: var(--tx); }
        .om-header {
            padding: 22px 24px 0;
            border-bottom: 1.5px solid var(--beige3);
            padding-bottom: 14px;
        }
        .om-title {
            font-family: var(--ff);
            font-size: 20px;
            font-weight: 700;
            color: var(--tx);
            margin: 0 0 2px;
        }
        .om-subtitle {
            font-family: var(--fb);
            font-size: 13px;
            color: var(--txl);
        }
        .om-body { padding: 18px 24px; }
        .om-summary {
            background: var(--beige-light);
            border: 1.5px solid var(--beige3);
            border-radius: 10px;
            padding: 12px 14px;
            margin-bottom: 18px;
        }
        .om-summary-title {
            font-family: var(--fb);
            font-size: 11px;
            font-weight: 700;
            color: var(--txl);
            text-transform: uppercase;
            letter-spacing: .06em;
            margin-bottom: 8px;
        }
        .om-sum-line {
            display: flex;
            justify-content: space-between;
            font-family: var(--fb);
            font-size: 13px;
            color: var(--tx);
            padding: 3px 0;
        }
        .om-sum-line span:last-child { font-weight: 600; }
        .om-sum-divider {
            border: none;
            border-top: 1px solid var(--beige3);
            margin: 6px 0;
        }
        .om-sum-total {
            display: flex;
            justify-content: space-between;
            font-family: var(--fb);
            font-size: 14px;
            font-weight: 700;
            color: var(--tc);
            padding-top: 4px;
        }
        .om-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 10px;
        }
        .om-form-row.full { grid-template-columns: 1fr; }
        .om-field {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .om-field label {
            font-family: var(--fb);
            font-size: 12px;
            font-weight: 600;
            color: var(--txm);
        }
        .om-field input {
            border: 1.5px solid var(--beige3);
            border-radius: 8px;
            padding: 9px 12px;
            font-family: var(--fb);
            font-size: 14px;
            color: var(--tx);
            background: #fff;
            transition: border-color .2s;
            outline: none;
        }
        .om-field input:focus { border-color: var(--tc); }
        .om-field input.invalid { border-color: #c0392b; }
        .om-info {
            background: var(--beige-light);
            border-left: 3px solid var(--tc);
            border-radius: 0 8px 8px 0;
            padding: 10px 14px;
            margin: 14px 0 18px;
            font-family: var(--fb);
            font-size: 12.5px;
            color: var(--txm);
            line-height: 1.6;
        }
        .om-info p { margin: 0; }
        .om-info p + p { margin-top: 4px; }
        .om-error {
            color: #c0392b;
            font-family: var(--fb);
            font-size: 12px;
            margin-bottom: 10px;
            display: none;
        }
        #paypal-button-container { min-height: 48px; }
        .om-loading {
            display: none;
            text-align: center;
            font-family: var(--fb);
            font-size: 13px;
            color: var(--txm);
            padding: 12px 0;
        }
        .om-spinner {
            width: 20px; height: 20px;
            border: 2px solid var(--beige3);
            border-top-color: var(--tc);
            border-radius: 50%;
            animation: spin .7s linear infinite;
            display: inline-block;
            vertical-align: middle;
            margin-right: 8px;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        .om-confirm { text-align: center; padding: 10px 0 8px; }
        .om-confirm-icon {
            font-size: 48px;
            margin-bottom: 10px;
        }
        .om-confirm-num {
            display: inline-block;
            background: var(--beige-light);
            border: 1.5px solid var(--beige3);
            border-radius: 8px;
            padding: 8px 20px;
            font-family: var(--fb);
            font-size: 20px;
            font-weight: 800;
            color: var(--tc);
            letter-spacing: .05em;
            margin: 10px 0;
        }
        .om-confirm-text {
            font-family: var(--fb);
            font-size: 13.5px;
            color: var(--txm);
            line-height: 1.7;
            margin: 12px 0 18px;
            padding: 0 20px;
        }
        .om-confirm-text p { margin: 0; }
        .om-confirm-text p + p { margin-top: 4px; }
        .btn-om-close {
            background: var(--tc);
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 11px 32px;
            font-family: var(--fb);
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: background .2s;
        }
        .btn-om-close:hover { background: var(--tc2); }
        @media(max-width:480px) {
            .om-form-row { grid-template-columns: 1fr; }
            .om-box { border-radius: 14px; }
        }

        .lp-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(42,22,0,.6);
            z-index: 11000;
            backdrop-filter: blur(4px);
        }
        .lp-overlay.open {
            display: flex;
            align-items: stretch;
            justify-content: stretch;
        }
        body.lp-no-scroll { overflow: hidden; }
        .lp-box {
            background: var(--white);
            width: 100vw;
            height: 100vh;
            height: 100dvh;
            max-width: 100vw;
            max-height: 100vh;
            max-height: 100dvh;
            display: flex;
            flex-direction: column;
            position: relative;
            box-shadow: 0 20px 60px rgba(42,22,0,.25);
            animation: lpSlideIn .25s ease;
            overflow: hidden;
        }
        @keyframes lpSlideIn {
            from { opacity: 0; transform: scale(.985); }
            to   { opacity: 1; transform: scale(1); }
        }
        .lp-close {
            position: absolute;
            top: 14px;
            right: 18px;
            width: 40px;
            height: 40px;
            background: var(--white);
            border: 1.5px solid var(--beige3);
            font-size: 26px;
            cursor: pointer;
            color: var(--tx);
            line-height: 1;
            border-radius: 50%;
            transition: background .15s, color .15s, transform .15s;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .lp-close:hover {
            background: var(--tc);
            color: #fff;
            border-color: var(--tc);
            transform: rotate(90deg);
        }
        .lp-content {
            flex: 1 1 auto;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            padding: 28px 32px 48px;
        }
        .lp-content-inner {
            max-width: 860px;
            margin: 0 auto;
        }
        .lp-title {
            font-family: var(--fd);
            font-size: 32px;
            font-weight: 800;
            color: var(--tx);
            margin: 0 0 18px;
            line-height: 1.15;
        }
        .lp-text {
            font-family: var(--fl);
            font-size: 16px;
            line-height: 1.75;
            color: var(--txm);
        }
        .lp-text h1, .lp-text h2, .lp-text h3, .lp-text h4 {
            font-family: var(--fd);
            color: var(--tx);
            margin: 1.6em 0 .5em;
            line-height: 1.25;
        }
        .lp-text h2 { font-size: 22px; }
        .lp-text h3 { font-size: 18px; }
        .lp-text p { margin: 0 0 1em; }
        .lp-text ul, .lp-text ol { margin: 0 0 1em 1.2em; padding: 0; }
        .lp-text li { margin: .25em 0; }
        .lp-text a {
            color: var(--tc);
            text-decoration: underline;
        }
        .lp-text a:hover { color: var(--tc2); }
        .lp-text strong { color: var(--tx); }
        .lp-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 60px 20px;
            font-family: var(--fb);
            font-size: 14px;
            color: var(--txl);
        }
        .lp-spinner {
            width: 18px;
            height: 18px;
            border: 2.5px solid var(--beige3);
            border-top-color: var(--tc);
            border-radius: 50%;
            animation: lpSpin .8s linear infinite;
        }
        @keyframes lpSpin { to { transform: rotate(360deg); } }
        @media(max-width:767px) {
            .lp-close { top: 10px; right: 12px; width: 36px; height: 36px; font-size: 22px; }
            .lp-content { padding: 20px 18px 36px; }
            .lp-title { font-size: 24px; margin-bottom: 14px; }
            .lp-text { font-size: 15px; }
            .lp-text h2 { font-size: 19px; }
            .lp-text h3 { font-size: 17px; }
        }
