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

body {
    font-family: "Nunito", sans-serif;
    background: #fff !important;
}

html,
body {
    overflow-x: hidden;
}

/* ── ACCUEIL : CARROUSEL HERO PREMIUM ── */
.hero-carousel {
    padding-top: clamp(88px, 11vh, 112px);
    padding-bottom: clamp(1.25rem, 3vw, 2rem);
    background: linear-gradient(180deg, #f5f2ec 0%, #ffffff 55%);
}
.hero-carousel__root {
    position: relative;
}
.hero-carousel__inner {
    border: 1px solid rgba(20, 18, 14, 0.07);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 28px 56px -18px rgba(24, 20, 16, 0.22) !important;
}
.hero-carousel__slide {
    position: relative;
    min-height: clamp(320px, 58vh, 620px);
    height: 500px;
}
.hero-carousel__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-carousel__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(14, 12, 10, 0.15) 0%,
            rgba(14, 12, 10, 0.35) 45%,
            rgba(12, 10, 8, 0.75) 100%
        ),
        radial-gradient(
            90% 60% at 50% 0%,
            rgba(0, 0, 0, 0.12) 0%,
            transparent 55%
        );
    pointer-events: none;
}
.hero-carousel__caption-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}
.hero-carousel__caption-wrap .container {
    pointer-events: auto;
}
.hero-carousel .carousel-caption.hero-carousel__caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: clamp(1.5rem, 4vw, 2.75rem) 0;
    margin: 0;
    max-width: 560px;
    text-align: left;
}
.hero-carousel__kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f0c987;
    margin-bottom: 0.65rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.hero-carousel__heading {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.75rem, 4.5vw, 2.85rem);
    font-weight: 900;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 0.75rem;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
    text-wrap: balance;
}
.hero-carousel__text {
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    font-weight: 600;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 1.35rem;
    max-width: 460px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}
.hero-carousel__btn {
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    padding: 0.85rem 1.5rem !important;
    border: none !important;
    color: #fff !important;
    background: linear-gradient(135deg, #c55329 0%, #8f3a1c 100%) !important;
    box-shadow: 0 10px 32px rgba(197, 83, 41, 0.45);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease !important;
}
.hero-carousel__btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 14px 40px rgba(197, 83, 41, 0.55);
}
.hero-carousel__btn--ghost {
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.hero-carousel__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.24) !important;
    border-color: rgba(255, 255, 255, 0.55) !important;
}

.hero-carousel .carousel-indicators.hero-carousel__indicators {
    margin-bottom: 0;
    bottom: clamp(0.85rem, 2.5vw, 1.35rem);
    gap: 0.5rem;
}
.hero-carousel .carousel-indicators [data-bs-target] {
    width: 2.25rem;
    height: 4px;
    margin: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    transition:
        width 0.35s ease,
        background 0.25s ease;
}
.hero-carousel .carousel-indicators [data-bs-target].active {
    width: 2.75rem;
    background: linear-gradient(90deg, #f4d03f, #e8a317);
    box-shadow: 0 4px 14px rgba(232, 163, 23, 0.45);
}

.hero-carousel .carousel-control-prev.hero-carousel__control,
.hero-carousel .carousel-control-next.hero-carousel__control {
    width: 52px;
    height: 52px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 1;
}
.hero-carousel .carousel-control-prev.hero-carousel__control {
    left: clamp(0.5rem, 2vw, 1rem);
}
.hero-carousel .carousel-control-next.hero-carousel__control {
    right: clamp(0.5rem, 2vw, 1rem);
}
.hero-carousel__control-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}
.hero-carousel__control:hover .hero-carousel__control-inner {
    background: rgba(197, 83, 41, 0.85);
    border-color: transparent;
    transform: scale(1.05);
}
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    display: none;
}

@media (max-width: 575.98px) {
    .hero-carousel .carousel-indicators.hero-carousel__indicators {
        bottom: 0.5rem;
    }
    .hero-carousel .carousel-caption.hero-carousel__caption {
        padding-bottom: 3.25rem;
    }
    .hero-carousel .carousel-control-prev.hero-carousel__control,
    .hero-carousel .carousel-control-next.hero-carousel__control {
        width: 44px;
        height: 44px;
    }
}

/* ── NAVBAR PREMIUM ── */
.site-navbar {
    --nav-accent: #c55329;
    --nav-ink: #14120e;
    --nav-muted: #6b6560;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    background: linear-gradient(
        180deg,
        rgba(255, 253, 250, 0.94) 0%,
        rgba(252, 249, 244, 0.88) 100%
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(20, 18, 14, 0.07);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.75) inset,
        0 12px 40px -8px rgba(24, 20, 16, 0.08);
}
.site-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 84px;
    padding-block: 10px;
}
.site-navbar__brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    z-index: 2;
}
.site-navbar__logo {
    width: auto;
    max-height: 56px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(24, 18, 12, 0.12));
    transition: transform 0.25s ease;
}
.site-navbar__brand:hover .site-navbar__logo {
    transform: scale(1.02);
}
.site-navbar__center {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}
.site-navbar__links {
    list-style: none;
    margin: 0;
    padding: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(20, 18, 14, 0.06);
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(24, 20, 16, 0.05);
}
.site-navbar__links li {
    margin: 0;
}
.site-navbar__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--nav-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}
.site-navbar__link:hover {
    color: var(--nav-accent);
    background: rgba(197, 83, 41, 0.08);
}
.site-navbar__link.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--nav-accent) 0%, #8f3a1c 100%);
    box-shadow: 0 6px 18px rgba(197, 83, 41, 0.35);
}
.site-navbar__actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}
.site-navbar__icon-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(20, 18, 14, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    color: var(--nav-ink);
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}
.site-navbar__icon-btn:hover {
    color: var(--nav-accent);
    border-color: rgba(197, 83, 41, 0.35);
    box-shadow: 0 6px 20px rgba(197, 83, 41, 0.15);
    transform: translateY(-1px);
}
.site-navbar__cart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.55rem 1rem 0.55rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #1a1814 0%, #2e2a24 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(24, 20, 16, 0.22);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}
.site-navbar__cart:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--nav-accent) 0%, #8f3a1c 100%);
    box-shadow: 0 10px 28px rgba(197, 83, 41, 0.35);
    transform: translateY(-1px);
}
.site-navbar__cart.is-active {
    box-shadow: 0 0 0 2px rgba(197, 83, 41, 0.45);
}
.site-navbar__cart i {
    font-size: 14px;
    opacity: 0.95;
}
.site-navbar__cart-text {
    display: inline;
}
@media (max-width: 1199px) {
    .site-navbar__cart-text {
        display: none;
    }
    .site-navbar__cart {
        padding: 0.55rem 0.85rem;
    }
}
.site-navbar__cart-count {
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
    color: var(--nav-ink);
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.site-navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(20, 18, 14, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.site-navbar__toggle:hover {
    border-color: rgba(197, 83, 41, 0.4);
    box-shadow: 0 6px 18px rgba(197, 83, 41, 0.12);
}
.site-navbar__toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--nav-ink);
    transition: transform 0.25s ease;
}

/* LEFT: Support */
.support {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 170px;
}
.support-icon {
    background: #e8e2d8;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.support-icon i {
    color: #e63e1c;
    font-size: 14px;
}
.support-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.support-label {
    font-size: 9px;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.support-phone {
    font-size: 13px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.2px;
}

/* LOGO (blocs marketing / legacy) */
.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    padding: 0 12px;
    flex-shrink: 0;
}
.logo-icon {
    background: #e63e1c;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon i {
    color: white;
    font-size: 14px;
}
.logo-text {
    font-size: 20px;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.2s;
}
.icon-btn-green {
    background: #2ecc71;
    color: white;
}
.icon-btn-green:hover {
    background: #27ae60;
}
.icon-btn-dark {
    background: #2c2c2c;
    color: white;
}
.icon-btn-dark:hover {
    background: #111;
}

/* ── ACCUEIL : SECTION CATÉGORIES PREMIUM ── */
.categories-premium {
    position: relative;
    padding: clamp(56px, 8vw, 88px) 0 clamp(64px, 9vw, 96px);
    overflow: hidden;
}
.categories-premium__bg {
    position: absolute;
    inset: 0;
    /* background:
        radial-gradient(
            120% 80% at 50% 0%,
            rgba(255, 252, 247, 0.98) 0%,
            transparent 55%
        ),
        linear-gradient(180deg, #faf7f1 0%, #ffffff 45%, #f8f5ef 100%); */
    pointer-events: none;
}
.categories-premium__bg::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(197, 83, 41, 0.2),
        transparent
    );
}
.categories-premium__header {
    max-width: 560px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}
.categories-premium__kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #c55329;
    margin-bottom: 0.65rem;
}
.categories-premium__title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #14120e;
    margin: 0 0 0.75rem;
    line-height: 1.15;
}
.categories-premium__lead {
    font-size: clamp(14px, 1.9vw, 16px);
    font-weight: 600;
    line-height: 1.6;
    color: #7a7268;
    margin: 0 auto 1.5rem;
    max-width: 480px;
}
.categories-premium__rule {
    width: 48px;
    height: 4px;
    margin: 0 auto;
    border-radius: 4px;
    background: var(--gold);
    box-shadow: 0 6px 20px rgba(197, 83, 41, 0.25);
}

/* Carrousel catégories (Swiper) */
.categories-premium__carousel {
    position: relative;
    z-index: 1;
    padding: 0 clamp(40px, 5vw, 56px) 52px;
    margin: 0 auto;
    max-width: 1280px;
}
.categories-swiper {
    border-radius: 24px;
    padding: 4px 0 8px;
    overflow: hidden;
}
.categories-swiper .swiper-wrapper {
    align-items: stretch;
}
.categories-swiper .swiper-slide {
    height: auto;
    display: flex;
    box-sizing: border-box;
}
.categories-swiper .swiper-slide > .category-card-premium {
    width: 100%;
}

.categories-swiper__pagination.swiper-pagination-bullets {
    bottom: 6px !important;
    left: 0;
    right: 0;
}
.categories-swiper__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    background: rgba(20, 18, 14, 0.18);
    opacity: 1;
    transition:
        width 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}
.categories-swiper__pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 4px 14px rgba(197, 83, 41, 0.35);
}

.categories-swiper__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(20, 18, 14, 0.08);
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
    color: #14120e;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 10px 28px rgba(24, 20, 16, 0.12);
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}
.categories-swiper__btn:hover:not(.swiper-button-disabled) {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #c55329 0%, #8f3a1c 100%);
    box-shadow: 0 12px 32px rgba(197, 83, 41, 0.35);
    transform: translateY(-50%) scale(1.05);
}
.categories-swiper__btn:focus-visible {
    outline: 2px solid #c55329;
    outline-offset: 3px;
}
.categories-swiper__btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}
.categories-swiper__btn--prev {
    left: 0;
}
.categories-swiper__btn--next {
    right: 0;
}

@media (max-width: 575px) {
    .categories-premium__carousel {
        padding-left: 44px;
        padding-right: 44px;
    }
    .categories-swiper__btn {
        width: 42px;
        height: 42px;
    }
}

.category-card-premium {
    width: 100%;
    height: 100%;
}
.category-card-premium__link {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(165deg, #ffffff 0%, #faf8f4 50%, #f4f0e8 100%);
    border: 1px solid rgba(20, 18, 14, 0.07);
    border-radius: 22px;
    padding: 1.1rem 1.1rem 1.25rem;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 16px 40px -12px rgba(24, 20, 16, 0.12);
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.25s ease;
}
.category-card-premium__link:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 83, 41, 0.22);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 24px 48px -14px rgba(24, 20, 16, 0.18),
        0 8px 24px rgba(197, 83, 41, 0.12);
}
.category-card-premium__link:focus-visible {
    outline: 2px solid #c55329;
    outline-offset: 3px;
}

.category-card-premium__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 132px;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: radial-gradient(
        100% 90% at 50% 0%,
        rgba(255, 248, 238, 0.95) 0%,
        rgba(250, 245, 236, 0.35) 50%,
        transparent 75%
    );
}
.category-card-premium__frame {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 0 1px rgba(20, 18, 14, 0.04);
    pointer-events: none;
}
.category-card-premium__glow {
    position: absolute;
    inset: 22%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(197, 83, 41, 0.1) 0%,
        transparent 65%
    );
    pointer-events: none;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}
.category-card-premium__link:hover .category-card-premium__glow {
    opacity: 1;
}
.category-card-premium__img {
    position: relative;
    width: 72%;
    max-width: 140px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(24, 18, 12, 0.18));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.category-card-premium__link:hover .category-card-premium__img {
    transform: scale(1.06) translateY(-3px);
}

.category-card-premium__body {
    flex: 1;
    text-align: center;
    padding: 0 0.25rem 2.25rem;
}
.category-card-premium__title {
    font-size: clamp(13px, 2.4vw, 15px);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #14120e;
    margin: 0 0 0.35rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.category-card-premium__meta {
    font-size: 12px;
    font-weight: 700;
    color: #9a9186;
    margin: 0;
    letter-spacing: 0.02em;
}

.category-card-premium__go {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    background: linear-gradient(135deg, #1a1814 0%, #2e2a24 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(24, 20, 16, 0.2);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}
.category-card-premium__link:hover .category-card-premium__go {
    background: linear-gradient(135deg, #c55329 0%, #8f3a1c 100%);
    box-shadow: 0 10px 26px rgba(197, 83, 41, 0.35);
    transform: scale(1.05);
}

@media (max-width: 575px) {
    .category-card-premium__visual {
        min-height: 112px;
    }
    .category-card-premium__img {
        max-height: 100px;
    }
}

/* ── ACCUEIL : BLOC LIVRAISON PREMIUM ── */
.delivery-lux {
    --dl-accent: #f4a261;
    --dl-accent-2: #e76f51;
    --dl-forest: #0c3d2e;
    --dl-forest-mid: #145a46;
    --dl-forest-light: #1a6b54;
    padding: clamp(32px, 5vw, 56px) 0 clamp(40px, 6vw, 64px);
    background: linear-gradient(180deg, #faf8f4 0%, #f3efe8 100%);
}
.delivery-lux__sheet {
    border-radius: clamp(20px, 3vw, 32px);
    border: 1px solid rgba(20, 18, 14, 0.06);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 28px 64px -20px rgba(12, 61, 46, 0.35),
        0 12px 32px rgba(24, 20, 16, 0.08) !important;
    background: #fff;
    min-height: clamp(320px, 52vw, 420px);
}
.delivery-lux__content {
    position: relative;
    z-index: 1;
    background:
        radial-gradient(
            120% 100% at 0% 0%,
            rgba(244, 162, 97, 0.18) 0%,
            transparent 55%
        ),
        linear-gradient(
            155deg,
            var(--dl-forest) 0%,
            var(--dl-forest-mid) 42%,
            var(--dl-forest-light) 100%
        );
    color: #f8faf7;
}
.delivery-lux__content::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M80 0L100 40H60z'/%3E%3Ccircle cx='20' cy='120' r='3'/%3E%3Ccircle cx='140' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.9;
}
.delivery-lux__eyebrow {
    position: relative;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--dl-accent);
    margin-bottom: 0.75rem;
}
.delivery-lux__title {
    position: relative;
    font-size: clamp(1.75rem, 4vw, 2.65rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    max-width: 18ch;
    text-wrap: balance;
}
.delivery-lux__price {
    color: #ffe8c8;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.delivery-lux__text {
    position: relative;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 600;
    line-height: 1.65;
    color: rgba(248, 250, 247, 0.82);
    margin: 0 0 1.25rem;
    max-width: 36ch;
}
.delivery-lux__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
}
.delivery-lux__chip i {
    color: var(--dl-accent);
    font-size: 12px;
}
.delivery-lux__cta {
    font-weight: 800 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem !important;
    padding: 0.85rem 1.75rem !important;
    border: none !important;
    color: #0c3d2e !important;
    background: linear-gradient(135deg, #fff 0%, #f8f4ee 100%) !important;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        color 0.2s ease !important;
}
.delivery-lux__cta:hover {
    color: #fff !important;
    background: linear-gradient(
        135deg,
        var(--dl-accent) 0%,
        var(--dl-accent-2) 100%
    ) !important;
    box-shadow: 0 14px 40px rgba(231, 111, 81, 0.45);
    transform: translateY(-2px);
}
.delivery-lux__link {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75) !important;
    transition: color 0.2s ease;
}
.delivery-lux__link:hover {
    color: #fff !important;
}

.delivery-lux__media {
    min-height: 260px;
    background: #0a2e24;
}
.delivery-lux__media-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.delivery-lux__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
    transform: scale(1.02);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.delivery-lux__sheet:hover .delivery-lux__photo {
    transform: scale(1.06);
}
.delivery-lux__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(12, 61, 46, 0.55) 0%,
        rgba(12, 61, 46, 0.08) 38%,
        transparent 62%
    );
    pointer-events: none;
}
.delivery-lux__badge {
    position: absolute;
    bottom: 1.35rem;
    right: 1.35rem;
    z-index: 2;
    padding: 0.65rem 1rem 0.75rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    text-align: right;
}
.delivery-lux__badge-top {
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dl-accent);
    margin-bottom: 0.15rem;
}
.delivery-lux__badge-main {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.04em;
}

@media (max-width: 991.98px) {
    .delivery-lux__media {
        min-height: 280px;
    }
    .delivery-lux__photo {
        object-position: center 35%;
    }
}

/* Header */
.section-subtitle {
    font-size: 12px;
    font-weight: 800;
    color: #f0b429;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-divider {
    width: 40px;
    height: 3px;
    background: #f0b429;
    margin: 0 auto 40px;
    border-radius: 2px;
    position: relative;
}
.section-divider::before,
.section-divider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 6px;
    height: 3px;
    background: #f0b429;
    border-radius: 2px;
}
.section-divider::before {
    left: -10px;
}
.section-divider::after {
    right: -10px;
}

/* ── MENU MOBILE (drawer + barre inférieure) ── */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 12, 10, 0.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1020;
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(88vw, 340px);
    background: linear-gradient(180deg, #fffefb 0%, #f8f5ef 100%);
    box-shadow: -16px 0 48px rgba(14, 12, 10, 0.18);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1040;
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(20, 18, 14, 0.06);
}

.mobile-panel.open {
    transform: translateX(0);
}

.mobile-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(20, 18, 14, 0.07);
}

.mobile-panel-header h4 {
    margin: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9a9186;
}

.mobile-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(20, 18, 14, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    color: #14120e;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.mobile-close:hover {
    color: #c55329;
    border-color: rgba(197, 83, 41, 0.35);
    box-shadow: 0 6px 18px rgba(197, 83, 41, 0.12);
}

.mobile-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #14120e;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.mobile-links li a:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(20, 18, 14, 0.06);
    transform: translateX(-2px);
}

.mobile-links li a .mobile-links__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 83, 41, 0.1);
    color: #c55329;
    font-size: 16px;
    flex-shrink: 0;
}

.mobile-panel-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(20, 18, 14, 0.07);
}

.mobile-panel-actions .site-panel-btn {
    width: 100%;
    justify-content: center;
}

.site-panel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Nunito", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(20, 18, 14, 0.1);
    cursor: pointer;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}
.site-panel-btn--ghost {
    background: rgba(255, 255, 255, 0.85);
    color: #14120e;
}
.site-panel-btn--ghost:hover {
    border-color: rgba(197, 83, 41, 0.35);
    color: #c55329;
    box-shadow: 0 6px 20px rgba(24, 20, 16, 0.08);
}
.site-panel-btn--accent {
    background: linear-gradient(135deg, #c55329 0%, #8f3a1c 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(197, 83, 41, 0.35);
}
.site-panel-btn--accent:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(197, 83, 41, 0.42);
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 253, 250, 0.97) 0%,
        #faf7f2 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(20, 18, 14, 0.08);
    box-shadow: 0 -8px 32px rgba(24, 20, 16, 0.1);
    z-index: 1025;
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0));
    justify-content: space-around;
    align-items: stretch;
}

.mobile-bottom-nav a {
    color: #6b6560;
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    padding: 6px 4px;
    border-radius: 12px;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.mobile-bottom-nav a:hover,
.mobile-bottom-nav a:focus-visible {
    color: #c55329;
    background: rgba(197, 83, 41, 0.08);
    outline: none;
}

.mobile-bottom-nav a i {
    font-size: 20px;
    color: #c55329;
    opacity: 0.95;
    transition: transform 0.2s ease;
}
.mobile-bottom-nav a:hover i,
.mobile-bottom-nav a:focus-visible i {
    transform: scale(1.08);
}

@media (max-width: 991px) {
    .site-navbar__center,
    .site-navbar__actions {
        display: none !important;
    }

    .site-navbar__toggle {
        display: inline-flex !important;
    }

    .site-navbar__inner {
        min-height: 72px;
        padding-block: 8px;
    }

    .flex-wrap {
        flex-wrap: wrap;
    }

    .mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0));
    }
}

/* ── SECTION ── */
.about-section {
    background: #f0ece3;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    padding: 0;
}

/* ── WATERMARK ── */
.watermark {
    position: absolute;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0px;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}
.watermark span {
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 900;
    color: rgba(180, 170, 155, 0.22);
    text-transform: uppercase;
    letter-spacing: -2px;
    white-space: nowrap;
}

/* ── DECORATIVE OUTLINE ICONS (corners) ── */
.deco-icon {
    position: absolute;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
.deco-icon i {
    color: #888;
}

/* ── LEFT COL: food images ── */
.food-visual {
    position: relative;
    height: 480px;
}
.float-fries {
    position: absolute;
    top: 30px;
    left: 60px;
    width: 210px;
    filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.12));
    transform: rotate(-10deg);
    z-index: 2;
}
.float-tomato {
    position: absolute;
    top: 20px;
    right: 60px;
    width: 90px;
    filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.15));
    z-index: 2;
}
.float-burger {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    filter: drop-shadow(4px 8px 20px rgba(0, 0, 0, 0.18));
    z-index: 2;
}

/* ── RIGHT COL: content ── */
.about-content {
    padding: 70px 40px 60px 20px;
    position: relative;
    z-index: 2;
}

.about-subtitle {
    font-size: 11px;
    font-weight: 800;
    color: #e63e1c;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}

.about-title {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.about-desc {
    font-size: 13px;
    font-weight: 600;
    color: #777;
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 40px;
}

/* ── FEATURES ── */
.features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.feature-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #f0e8e0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.feature-icon-wrap i {
    color: #e63e1c;
    font-size: 22px;
}

.feature-label {
    font-size: 11px;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1.4;
    max-width: 100px;
}

/* ── SECTION ── */
.dishes-section {
    position: relative;
    overflow: hidden;
    padding: 30px 0 60px;
}

/* ── SCROLLING WATERMARK ── */
.watermark-row {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    margin-bottom: 28px;
    overflow: hidden;
}
.watermark-row span {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    color: rgba(160, 152, 138, 0.22);
    text-transform: uppercase;
    letter-spacing: 4px;
}
.watermark-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(160, 152, 138, 0.22);
    flex-shrink: 0;
}

/* ── DECO ICONS ── */
.deco-icon {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    color: #666;
    font-size: 70px;
}

/* ── TITLE ── */
.section-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* ── CARTE PLAT (premium, partagée accueil / menu / fiche) ── */
.dish-card-premium {
    --dish-premium-accent: #c55329;
    --dish-premium-accent-soft: rgba(197, 83, 41, 0.12);
    --dish-premium-surface: #ffffff;
    --dish-premium-edge: rgba(20, 18, 14, 0.06);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, #ffffff 0%, #faf8f4 48%, #f5f1ea 100%);
    border-radius: 22px;
    border: 1px solid var(--dish-premium-edge);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 18px 42px -12px rgba(24, 20, 16, 0.14),
        0 4px 12px rgba(24, 20, 16, 0.06);
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.25s ease;
}
.dish-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 83, 41, 0.22);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 28px 56px -14px rgba(24, 20, 16, 0.2),
        0 10px 24px rgba(197, 83, 41, 0.12);
}
.dish-card-premium--unavailable {
    opacity: 0.92;
}
.dish-card-premium--unavailable .dish-card-premium__img {
    filter: grayscale(0.35) saturate(0.85);
}

.dish-card-premium__visual {
    position: relative;
    padding: 20px 16px 8px;
    min-height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        120% 90% at 50% 0%,
        rgba(255, 248, 238, 0.95) 0%,
        rgba(250, 245, 236, 0.5) 45%,
        transparent 72%
    );
}
.dish-card-premium__img-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1;
    text-decoration: none;
    z-index: 1;
}
.dish-card-premium__img-ring {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 0 1px rgba(20, 18, 14, 0.04);
    pointer-events: none;
}
.dish-card-premium__img-glow {
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        var(--dish-premium-accent-soft) 0%,
        transparent 68%
    );
    pointer-events: none;
    opacity: 0.75;
    transition: opacity 0.35s ease;
}
.dish-card-premium:hover .dish-card-premium__img-glow {
    opacity: 1;
}
.dish-card-premium__img {
    position: relative;
    width: 78%;
    max-width: 200px;
    height: auto;
    max-height: 168px;
    object-fit: contain;
    filter: drop-shadow(0 14px 22px rgba(24, 18, 12, 0.2));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.dish-card-premium:hover .dish-card-premium__img {
    transform: scale(1.06) translateY(-4px);
}

.dish-card-premium__chip {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5c4a3a;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 18, 14, 0.06);
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(24, 20, 16, 0.08);
    max-width: calc(100% - 52px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dish-card-premium__wish {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #b8b0a4;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(24, 20, 16, 0.1);
    transition:
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.dish-card-premium__wish:hover {
    color: var(--dish-premium-accent);
    transform: scale(1.06);
    box-shadow: 0 8px 22px rgba(197, 83, 41, 0.2);
}

.dish-card-premium__ribbon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg, #8a7a6a, #6a5c52);
    padding: 6px 8px;
}

.dish-card-premium__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 4px 20px 20px;
    gap: 0;
}

.dish-card-premium__title-link {
    text-decoration: none;
    color: inherit;
    margin-bottom: 6px;
}
.dish-card-premium__title-link:hover .dish-card-premium__title {
    color: var(--dish-premium-accent);
}
.dish-card-premium__title {
    font-size: clamp(12px, 2.6vw, 14px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #14120e;
    margin: 0;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dish-card-premium__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.dish-card-premium__stars {
    color: #e8a317;
    font-size: 11px;
    letter-spacing: 2px;
}
.dish-card-premium__rating-label {
    font-size: 11px;
    font-weight: 800;
    color: #7a7268;
}

.dish-card-premium__desc {
    flex: 1;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
    color: #7a7268;
    margin: 0 0 16px;
    min-height: 40px;
    display: -webkit-box;
    /* stylelint-disable-next-line */
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dish-card-premium__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(20, 18, 14, 0.06);
}

.dish-card-premium__price-block {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}
.dish-card-premium__price {
    font-size: 19px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    color: var(--dish-premium-accent);
    letter-spacing: -0.02em;
}
.dish-card-premium__currency {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a9186;
}

.dish-card-premium__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #1a1814 0%, #2e2a24 100%);
    padding: 10px 12px 10px 14px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(24, 20, 16, 0.22);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}
.dish-card-premium__cta:hover {
    color: #fff;
    transform: translateX(2px);
    background: linear-gradient(
        135deg,
        var(--dish-premium-accent) 0%,
        #a63f1f 100%
    );
    box-shadow: 0 10px 26px rgba(197, 83, 41, 0.35);
}
.dish-card-premium__cta-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.dish-card-premium__cta:hover .dish-card-premium__cta-icon {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 575px) {
    .dish-card-premium__cta-text {
        display: none;
    }
    .dish-card-premium__cta {
        padding: 10px;
    }
}

/* Spacer to push cards down (so image overflows nicely) */
.cards-row {
    margin-top: 50px;
}
/* ── ACCUEIL : SECTION EXPÉRIENCE (refonte claire + Bootstrap) ── */
.experience-section {
    --exp-accent: #c55329;
    --exp-gold: #e8a317;
    --exp-ink: #14120e;
    --exp-muted: #6b645c;
    background: linear-gradient(180deg, #f7f3ec 0%, #efe8de 50%, #ebe3d8 100%);
}
.experience-section__bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50 0 L55 20 L75 20 L60 32 L65 52 L50 40 L35 52 L40 32 L25 20 L45 20 Z' fill='%23c55329' fill-opacity='0.03'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
    opacity: 0.85;
}
.experience-section__blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.experience-section__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0.55;
}
.experience-section__blob--a {
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    background: radial-gradient(
        circle,
        rgba(197, 83, 41, 0.14) 0%,
        transparent 70%
    );
    top: -12%;
    left: -8%;
}
.experience-section__blob--b {
    width: min(360px, 50vw);
    height: min(360px, 50vw);
    background: radial-gradient(
        circle,
        rgba(232, 163, 23, 0.12) 0%,
        transparent 70%
    );
    bottom: -8%;
    right: -5%;
}
.experience-section__container {
    padding-top: clamp(3rem, 6vw, 4.5rem) !important;
    padding-bottom: clamp(3rem, 6vw, 4.5rem) !important;
}

.experience-section__kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--exp-accent);
    margin-bottom: 0.75rem;
}
.experience-section__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.85rem, 4.2vw, 2.75rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--exp-ink);
    margin: 0 0 1rem;
    max-width: 16ch;
    text-wrap: balance;
}
.experience-section__title-accent {
    display: inline;
    font-style: italic;
    color: var(--exp-accent);
}
.experience-section__lead {
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    font-weight: 600;
    line-height: 1.65;
    color: var(--exp-muted);
    margin: 0 0 0.25rem;
    max-width: 36ch;
}
.experience-section__lead-highlight {
    color: var(--exp-accent);
    font-weight: 800;
}

.experience-section__pill {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(197, 83, 41, 0.22);
    background: rgba(255, 255, 255, 0.75);
    color: #4a433c;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}
.experience-section__pill:hover {
    border-color: rgba(197, 83, 41, 0.45);
    box-shadow: 0 6px 18px rgba(197, 83, 41, 0.12);
    transform: translateY(-1px);
}
.experience-section__pill--rose {
    border-color: rgba(214, 90, 90, 0.28);
    background: rgba(255, 248, 248, 0.9);
    color: #8f3a3a;
}
.experience-section__pill--muted {
    border-color: rgba(20, 18, 14, 0.1);
    background: rgba(255, 255, 255, 0.55);
    color: var(--exp-muted);
}

.experience-section__btn {
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding-left: 1.35rem !important;
    padding-right: 1.35rem !important;
}
.experience-section__btn--primary {
    border: none !important;
    color: #fff !important;
    background: linear-gradient(
        135deg,
        var(--exp-accent) 0%,
        #8f3a1c 100%
    ) !important;
    box-shadow: 0 10px 28px rgba(197, 83, 41, 0.35);
}
.experience-section__btn--primary:hover {
    color: #fff !important;
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px var(--gold);
}
.experience-section__btn--outline {
    border-width: 2px !important;
    font-weight: 800 !important;
    color: var(--exp-ink) !important;
    background: rgba(255, 255, 255, 0.65) !important;
}
.experience-section__btn--outline:hover {
    background: #fff !important;
    border-color: var(--exp-ink) !important;
    color: var(--exp-ink) !important;
}

.experience-section__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}
.experience-section__stat-num {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 900;
    line-height: 1;
    color: var(--exp-accent);
}
.experience-section__stat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--exp-muted);
}

.experience-section__visual-card {
    max-width: 420px;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    background: linear-gradient(165deg, #ffffff 0%, #faf7f2 100%);
    border: 1px solid rgba(20, 18, 14, 0.06);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 24px 56px -16px rgba(24, 20, 16, 0.15) !important;
}

.experience-section__deco-img {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}
.experience-section__deco-img--fries {
    width: clamp(100px, 22vw, 150px);
    left: -6%;
    bottom: 4%;
}
.experience-section__deco-img--tomato {
    width: clamp(52px, 12vw, 72px);
    right: 2%;
    top: 10%;
}

.experience-section__oval {
    position: relative;
    width: min(100%, 320px);
    height: clamp(360px, 52vw, 400px);
    margin: 0 auto;
    animation: experienceFloat 6s ease-in-out infinite;
}
@keyframes experienceFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.experience-section__oval-ring {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
    pointer-events: none;
}
.experience-section__oval-ring--outer {
    inset: -10px;
    border: 2px solid rgba(197, 83, 41, 0.2);
    animation: experienceRing 3.5s ease-in-out infinite;
}
.experience-section__oval-ring--inner {
    inset: -22px;
    border: 1px solid rgba(232, 163, 23, 0.15);
    animation: experienceRing 3.5s 0.8s ease-in-out infinite;
}
@keyframes experienceRing {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.experience-section__oval-img {
    position: absolute;
    inset: 0;
    border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
    background: #e8e2da;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.experience-section__oval-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
}

.experience-section__badge-spin {
    position: absolute;
    top: -6px;
    right: -8px;
    width: 86px;
    height: 86px;
    background: linear-gradient(145deg, #1a1814 0%, #2e2a24 100%);
    border: 2px solid rgba(232, 163, 23, 0.65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.experience-section__badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.experience-section__badge-kicker {
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--exp-gold);
}
.experience-section__badge-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.04em;
}
.experience-section__badge-stars {
    font-size: 8px;
    color: var(--exp-gold);
    letter-spacing: 0.15em;
}

.experience-section__float {
    position: absolute;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 18, 14, 0.06);
    box-shadow: 0 12px 32px rgba(24, 20, 16, 0.12);
    max-width: 200px;
}
.experience-section__float--left {
    left: -8px;
    bottom: 18%;
}
.experience-section__float--right {
    right: -6px;
    top: 22%;
}
.experience-section__float-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(197, 83, 41, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.experience-section__float-title {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--exp-ink);
}
.experience-section__float-sub {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--exp-muted);
    margin-top: 0.1rem;
}

@media (max-width: 991.98px) {
    .experience-section__oval {
        width: min(100%, 280px);
        height: 340px;
    }
    .experience-section__float--left {
        left: 4px;
    }
    .experience-section__float--right {
        right: 4px;
    }
    .experience-section__deco-img--fries {
        left: -2%;
    }
    .dish-card-premium__price {
        font-size: 15px;
    }
}

:root {
    --gold: #c55329;
    --dark: #111;
    --text: #1a1a1a;
    --muted: #888;
    --light-bg: #f8f6f1;
    --card-bg: #ffffff;
    --border: #ece8e0;
}

/* ── ACCUEIL : SERVICES PREMIUM (bas de page) ── */
.services-lux {
    padding: clamp(48px, 7vw, 80px) 0 clamp(56px, 8vw, 96px);
    /* background: linear-gradient(180deg, #f5f2ec 0%, #ebe6dc 100%); */
}
.services-lux__intro {
    max-width: 640px;
    margin: 0 auto 2.5rem;
}
.services-lux__kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #c55329;
    margin-bottom: 0.6rem;
}
.services-lux__title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #14120e;
    margin: 0 0 1rem;
    line-height: 1.15;
}
.services-lux__rule {
    width: 52px;
    height: 4px;
    margin: 0 auto;
    border-radius: 4px;
    background: var(--gold);
    box-shadow: 0 6px 20px rgba(197, 83, 41, 0.28);
}

.services-lux__panel {
    border-radius: clamp(20px, 3vw, 28px);
    padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2.5rem);
    background: linear-gradient(165deg, #161512 0%, #1f1c18 38%, #141210 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.04) inset,
        0 32px 64px -12px rgba(0, 0, 0, 0.45),
        0 12px 28px rgba(0, 0, 0, 0.25);
}
.services-lux__shine {
    position: absolute;
    top: -40%;
    right: -15%;
    width: 55%;
    height: 120%;
    background: radial-gradient(
        circle,
        rgba(232, 163, 23, 0.12) 0%,
        transparent 60%
    );
    pointer-events: none;
}
.services-lux__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23fff' stroke-width='0.8'%3E%3Cpath d='M36 8v8M36 56v8M8 36h8M56 36h8'/%3E%3Ccircle cx='36' cy='36' r='4'/%3E%3Cpath d='M20 20c4 4 8 4 12 0M40 52c4-4 8-4 12 0'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 72px 72px;
    pointer-events: none;
}

.services-lux__card {
    position: relative;
    z-index: 1;
    padding: 1.35rem 0.75rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.35s ease;
}
.services-lux__card:hover {
    transform: translateY(-6px);
    border-color: #c25228;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}
.services-lux__icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.65rem;
    color: #1a1814;
    background: linear-gradient(145deg, #f4d03f 0%, #e8a317 45%, #d49412 100%);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.services-lux__card:hover .services-lux__icon-wrap {
    transform: scale(1.06) translateY(-2px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 16px 36px rgba(232, 163, 23, 0.45);
}
.services-lux__card-title {
    font-size: clamp(11px, 1.8vw, 13px);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #faf8f4;
    line-height: 1.45;
    margin: 0 0 0.5rem;
    text-wrap: balance;
}
.services-lux__card-title--accent {
    color: #fde6a8;
}
.services-lux__slash {
    font-weight: 700;
    opacity: 0.55;
    margin: 0 0.15em;
}
.services-lux__card-desc {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
    color: rgba(250, 248, 244, 0.55);
    margin: 0;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 575.98px) {
    .services-lux__icon-wrap {
        width: 64px;
        height: 64px;
        font-size: 1.45rem;
    }
    .services-lux__card {
        padding: 1.1rem 0.5rem 0.95rem;
    }
}

/* ── SECTION ── */
.news-section {
    padding: 80px 0 90px;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.news-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── HEADER ── */
.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.15;
}
.section-divider {
    width: 44px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 50px;
    border-radius: 2px;
    position: relative;
}
.section-divider::before,
.section-divider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 6px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}
.section-divider::before {
    left: -10px;
}
.section-divider::after {
    right: -10px;
}

/* ── FEATURED CARD (large) ── */
.card-featured {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.card-featured .card-img {
    position: relative;
    overflow: hidden;
    height: 260px;
}
.card-featured .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card-featured:hover .card-img img {
    transform: scale(1.05);
}

/* ── SMALL CARDS ── */
.card-small {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.card-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.card-small .card-img {
    position: relative;
    overflow: hidden;
    height: 180px;
}
.card-small .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card-small:hover .card-img img {
    transform: scale(1.06);
}

/* ── BADGE ── */
.badge-cat {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
}

/* ── CARD BODY ── */
.card-body-inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.meta-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--muted);
}
.meta-date i {
    color: var(--gold);
    font-size: 10px;
}
.meta-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--border);
}
.meta-comments {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--muted);
}
.meta-comments i {
    font-size: 10px;
    color: var(--muted);
}

.card-title-link {
    text-decoration: none;
    color: var(--dark);
}
.card-title-text {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
    transition: color 0.2s;
}
.card-featured .card-title-text {
    font-size: 22px;
}
.card-small .card-title-text {
    font-size: 16px;
}
.card-title-link:hover .card-title-text {
    color: var(--gold);
}

.card-excerpt {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: gap 0.2s;
    margin-top: auto;
}
.read-more:hover {
    gap: 12px;
    color: var(--gold);
}
.read-more i {
    font-size: 11px;
}

/* ── HORIZONTAL CARD (sidebar-style) ── */
.card-horiz {
    background: var(--card-bg);
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    gap: 0;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.card-horiz:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.card-horiz .horiz-img {
    width: 110px;
    flex-shrink: 0;
    overflow: hidden;
}
.card-horiz .horiz-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.card-horiz:hover .horiz-img img {
    transform: scale(1.08);
}
.card-horiz .horiz-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.horiz-date {
    font-size: 10.5px;
    color: var(--muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}
.horiz-date i {
    color: var(--gold);
    font-size: 9px;
}
.horiz-title {
    font-family: "Playfair Display", serif;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.2s;
}
.horiz-title:hover {
    color: var(--gold);
}

/* ── VIEW ALL BTN ── */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 30px;
    border-radius: 6px;
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
}
.btn-view-all:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 168, 67, 0.3);
}

/* FOOTER PROBLEME */

.newsletter-band {
    background: var(--gold);
    padding: 28px 0;
    position: relative;
    overflow: hidden;
}
.newsletter-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 18px,
        rgba(255, 255, 255, 0.06) 18px,
        rgba(255, 255, 255, 0.06) 19px
    );
}
.newsletter-band .nl-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(14, 12, 9, 0.6);
    margin-bottom: 4px;
}
.newsletter-band h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
}
.nl-form {
    display: flex;
    gap: 0;
    max-width: 440px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.nl-form input {
    flex: 1;
    padding: 13px 18px;
    border: none;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    background: #fff;
    color: var(--dark);
    outline: none;
}
.nl-form input::placeholder {
    color: #aaa;
}
.nl-form button {
    padding: 13px 22px;
    background: var(--dark);
    color: var(--gold);
    border: none;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.nl-form button:hover {
    background: #1e1a13;
}

footer {
    background: var(--dark);
    color: var(--text);
    padding-top: 64px;
}

/* Texture noise overlay */

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

/* ── LOGO COL ── */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-decoration: none;
}
.footer-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-logo-icon i {
    color: var(--dark);
    font-size: 18px;
}
.footer-logo-name {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.3px;
}
.footer-logo-name span {
    color: var(--gold);
}

.footer-about {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 280px;
}

/* Social icons */
.social-links {
    display: flex;
    gap: 10px;
}
.social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s;
}
.social-link:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ── COLUMNS ── */
.footer-col-title {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* Nav links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 11px;
}
.footer-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition:
        color 0.2s,
        gap 0.2s;
}
.footer-links a::before {
    content: "";
    width: 5px;
    height: 1px;
    background: var(--gold);
    opacity: 0;
    transition:
        opacity 0.2s,
        width 0.2s;
    flex-shrink: 0;
}
.footer-links a:hover {
    color: #fff;
    gap: 12px;
}
.footer-links a:hover::before {
    opacity: 1;
    width: 10px;
}

/* ── CONTACT INFO ── */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}
.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--gold-dim);
    border: 1px solid rgba(212, 168, 67, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon i {
    color: var(--gold);
    font-size: 13px;
}
.contact-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 3px;
}
.contact-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
}
.contact-value a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-value a:hover {
    color: var(--gold);
}

/* ── HOURS ── */
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 12.5px;
}
.hours-row:first-child {
    border-top: 1px solid var(--border);
}
.hours-day {
    font-weight: 500;
    color: var(--muted);
}
.hours-time {
    font-weight: 600;
    color: var(--text);
}
.hours-time.open {
    color: #4caf87;
}
.hours-time.closed {
    color: #c0392b;
}

/* ── DIVIDER ── */
.footer-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 50px 0 0;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy {
    font-size: 12px;
    color: var(--muted);
    font-weight: 400;
}
.footer-copy a {
    color: var(--gold);
    text-decoration: none;
}
.footer-copy a:hover {
    text-decoration: underline;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-bottom-links a {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ── BACK TO TOP ── */
.back-top {
    width: 38px;
    height: 38px;
    background: var(--gold-dim);
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    flex-shrink: 0;
}
.back-top:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ── DISH DETAIL PAGE ── */
.dish-detail-hero {
    padding: 28px 0 10px;
    background: #fff;
}

.dish-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 12px;
    font-weight: 900;
    color: #999;
}

.dish-breadcrumb a {
    text-decoration: none;
    color: #444;
    transition: color 0.2s;
}

.dish-breadcrumb a:hover {
    color: #e63e1c;
}

.dish-detail-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.dish-detail-media {
    position: relative;
}

.dish-detail-image-frame {
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ece8e0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    padding: 18px;
}

.dish-detail-image-frame img {
    width: 100%;
    height: 440px;
    object-fit: contain;
    display: block;
}

.dish-detail-wish {
    top: 26px;
    right: 26px;
}

.dish-detail-subtitle {
    font-size: 12px;
    font-weight: 800;
    color: #f0b429;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.dish-detail-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.dish-detail-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.dish-detail-rating-row .stars {
    color: #e8a317;
    font-size: 13px;
    letter-spacing: 2px;
}

.dish-detail-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.dish-detail-price {
    font-size: 26px;
    font-weight: 900;
    color: #e63e1c;
}

.dish-detail-description {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    line-height: 1.75;
    margin: 12px 0 0;
}

.dish-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 16px;
}

.dish-tag {
    background: #f5f0e8;
    border: 1px solid rgba(212, 168, 67, 0.2);
    color: #c8a000;
    font-weight: 900;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 8px 12px;
    border-radius: 999px;
}

.dish-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.dish-detail-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #ece8e0;
    border-radius: 14px;
    padding: 12px 14px;
    width: fit-content;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(230, 62, 28, 0.2);
    background: #f5f0e8;
    color: #e63e1c;
    cursor: pointer;
    font-weight: 900;
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
}

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

.qty-input {
    width: 48px;
    border: none;
    text-align: center;
    font-weight: 900;
    color: #1a1a1a;
    background: transparent;
    outline: none;
}

.dish-detail-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #e63e1c;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 10px 30px rgba(230, 62, 28, 0.25);
    transition:
        background 0.2s,
        transform 0.2s;
}

.dish-detail-add-btn:hover {
    background: #c55329;
    transform: translateY(-2px);
}

.dish-detail-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.detail-mini {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 1px solid #ece8e0;
    border-radius: 16px;
    padding: 12px 14px;
    flex: 1 1 210px;
    min-width: 210px;
}

.detail-mini i {
    color: #e63e1c;
    margin-top: 2px;
}

.mini-label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 2px;
}

.mini-value {
    font-size: 13px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.3;
}

.dish-detail-content {
    padding: 14px 0 50px;
    background: #fff;
}

.dish-detail-tabs {
    margin-top: 10px;
}

.dish-detail-tabs .nav-link {
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-size: 12px;
    color: #444;
    border: 1px solid #ece8e0;
    background: #fff;
}

.dish-detail-tabs .nav-link.active {
    background: #e63e1c;
    border-color: #e63e1c;
    color: #fff;
}

.dish-detail-tab-panel {
    background: #fff;
    border: 1px solid #ece8e0;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.dish-ingredient-list {
    columns: 2;
    column-gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 800;
    font-size: 13px;
    color: #1a1a1a;
}

.dish-ingredient-list li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.dish-ingredient-list li::before {
    content: "•";
    color: #e63e1c;
    margin-right: 10px;
    font-weight: 900;
}

.dish-detail-related {
    padding: 10px 0 90px;
    background: #fff;
}

@media (max-width: 991px) {
    .dish-detail-hero-grid {
        grid-template-columns: 1fr;
    }

    .dish-detail-image-frame img {
        height: 320px;
    }

    .dish-detail-wish {
        top: 20px;
        right: 20px;
    }
}

/* ── MENU PAGE ── */
.menu-page-hero {
    padding-top: 46px;
    padding-bottom: 24px;
    background: #fff;
}

.menu-watermark-wrap {
    margin-top: 10px;
}

.menu-page-search-row {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: center;
    justify-content: center;
}

.menu-search-box {
    background: #fff;
    border: 1px solid #ece8e0;
    border-radius: 16px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.03);
}

.menu-search-box i {
    color: #e63e1c;
    font-size: 14px;
}

.menu-search-box input {
    width: 100%;
    border: none;
    outline: none;
    font-weight: 800;
    color: #1a1a1a;
    background: transparent;
}

.menu-search-box input::placeholder {
    color: #999;
    font-weight: 700;
}

.menu-search-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: #1a1a1a;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.menu-page-section {
    padding: 10px 0 90px;
    background: #fff;
}

.menu-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 26px;
    align-items: start;
}

.menu-sidebar {
    position: sticky;
    top: 120px;
}

.menu-page-tabs .nav-link {
    border-radius: 16px;
    padding: 12px 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 1px solid #ece8e0;
    background: #fff;
    color: #444;
}

.menu-page-tabs .nav-link.active {
    background: #e63e1c;
    border-color: #e63e1c;
    color: #fff;
}

.menu-dishes .tab-pane {
    min-height: 200px;
}

@media (max-width: 991px) {
    .menu-page-search-row {
        grid-template-columns: 1fr;
    }

    .menu-layout {
        grid-template-columns: 1fr;
    }

    .menu-sidebar {
        position: relative;
        top: auto;
    }
}

/* ── CART PAGE ── */
.cart-page-hero {
    padding-top: 46px;
    padding-bottom: 18px;
    background: #fff;
}

.cart-page-badges-row {
    margin-top: 18px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.cart-page-section {
    padding: 12px 0 80px;
    background: #fff;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 26px;
    align-items: start;
}

.cart-items-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #ece8e0;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.cart-items-header {
    padding: 18px 18px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid #ece8e0;
}

.cart-items-title {
    font-size: 18px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.cart-items-subtitle {
    color: #888;
    font-weight: 700;
    font-size: 12.5px;
}

.cart-clear-btn {
    border: 1px solid rgba(230, 62, 28, 0.2);
    background: #fff;
    color: #e63e1c;
    border-radius: 14px;
    padding: 10px 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
}

.cart-clear-btn:hover {
    background: #e63e1c;
    border-color: #e63e1c;
    color: #fff;
}

.cart-items-list {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-empty {
    padding: 30px 18px;
    text-align: center;
}

.cart-empty-title {
    font-size: 18px;
    font-weight: 900;
    color: #1a1a1a;
}

.cart-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid #ece8e0;
    background: #fff;
}

.cart-item-thumb {
    width: 110px;
    height: 90px;
    border-radius: 14px;
    border: 1px solid #f0e8e0;
    background: #f5f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-thumb img {
    width: 88px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
}

.cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.cart-item-name {
    font-size: 13px;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.cart-item-unit {
    font-size: 12.5px;
    font-weight: 800;
    color: #999;
}

.cart-remove-btn {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(230, 62, 28, 0.2);
    background: #fff;
    color: #e63e1c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
    flex-shrink: 0;
}

.cart-remove-btn:hover {
    background: #e63e1c;
    border-color: #e63e1c;
    color: #fff;
}

.cart-item-bottom {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #ece8e0;
    border-radius: 14px;
    padding: 10px 12px;
}

.cart-line-total {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 900;
    color: #e63e1c;
}

.cart-line-total-value {
    font-size: 20px;
}

.cart-line-total-currency {
    font-size: 12.5px;
    font-weight: 900;
    color: #e63e1c;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.cart-summary-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #ece8e0;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
    padding: 18px;
    position: sticky;
    top: 120px;
}

.cart-summary-header {
    margin-bottom: 14px;
}

.cart-summary-title {
    font-size: 18px;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.cart-summary-subtitle {
    color: #888;
    font-weight: 700;
    font-size: 12.5px;
}

.cart-summary-rows {
    background: #fff;
    border: 1px solid #ece8e0;
    border-radius: 16px;
    padding: 14px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    color: #444;
    margin-bottom: 10px;
}

.cart-summary-row:last-child {
    margin-bottom: 0;
}

.cart-summary-divider {
    border: none;
    border-top: 1px solid #ece8e0;
    margin: 10px 0;
}

.cart-summary-total {
    color: #e63e1c;
    font-size: 16px;
}

.cart-payment {
    margin-top: 16px;
}

.cart-section-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #888;
}

.cart-pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid #ece8e0;
    cursor: pointer;
    background: #fff;
    transition:
        border-color 0.2s,
        background 0.2s;
    font-weight: 900;
    color: #1a1a1a;
}

.cart-pill input {
    width: 16px;
    height: 16px;
}

.cart-pill span i {
    color: #e63e1c;
}

.cart-input {
    width: 100%;
    border: 1px solid #ece8e0;
    border-radius: 16px;
    padding: 12px 14px;
    font-weight: 800;
    outline: none;
}

.cart-checkout-btn {
    margin-top: 16px;
}

.cart-note {
    margin-top: 12px;
    font-size: 12.5px;
    color: #888;
    font-weight: 700;
    line-height: 1.5;
}

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

    .cart-summary-card {
        position: relative;
        top: auto;
    }

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