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

:root {
    --ink: #2b2622;
    --sand: #fbf6ef;
    --clay: #b0734c;
    --spice: #7a4b2a;
    --midnight: #1f1a16;
    --mint: #efe7da;
    --gold: #c7a46a;
    --honey-soft: #f3e3c4;
    --stone: #8e867d;
    --radius-lg: 12px;
    --radius-md: 6px;
    --shadow-soft: 0 14px 30px rgba(31, 26, 22, 0.08);
    --shadow-strong: 0 24px 60px rgba(31, 26, 22, 0.14);
    --sidebar-width: clamp(80px, 8vw, 140px);
}

body {
    font-family: "Libre Baskerville", serif;
    line-height: 1.7;
    color: var(--ink);
    background: #ffffff;
    padding-inline: var(--sidebar-width);
    overflow-x: hidden;
}

body * {
    font-family: "Libre Baskerville", serif !important;
}


main {
    display: block;
}

*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: #fff;
    color: var(--ink);
    padding: 0.6rem 1rem;
    z-index: 2000;
    border: 1px solid rgba(36, 31, 27, 0.2);
}

.skip-link:focus {
    left: 10px;
}

body::before,
body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: var(--sidebar-width);
    background-image: url("../images/zelij.png");
    background-repeat: repeat;
    background-size: 220px auto;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

body::before {
    left: 0;
}

body::after {
    right: 0;
    transform: scaleX(-1);
}

body > * {
    position: relative;
    z-index: 1;
}

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

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

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

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background: rgba(253, 249, 243, 0.9);
    border-bottom: 1px solid rgba(43, 38, 34, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

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

.brand-mark {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--spice), var(--clay));
    color: #fff;
    font-weight: 700;
    display: grid;
    place-items: center;
    letter-spacing: 0.08em;
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    padding: 6px;
}

.brand-text h1 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 1.5rem;
    letter-spacing: 0.03em;
}

.brand-text p {
    font-family: "Montserrat", "Helvetica Neue", sans-serif;
    font-size: 0.85rem;
    color: var(--stone);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.4rem;
    justify-content: center;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-link {
    padding-bottom: 0.3rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--spice);
    border-bottom-color: var(--gold);
}

.nav-cta {
    padding: 0.65rem 1.6rem;
    border: 1px solid rgba(31, 26, 22, 0.2);
    background: transparent;
    color: var(--midnight);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.85rem;
}

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

.nav-admin {
    padding: 0.55rem 1.2rem;
    border: 1px solid rgba(31, 26, 22, 0.2);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 3rem;
    position: relative;
    animation: fade-up 0.9s ease both;
    background-image: url("../images/Tajine-marocain.png");
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(210, 164, 87, 0.25), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(201, 109, 67, 0.2), transparent 50%);
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
}

.hero-text-card {
    max-width: 600px;
    background: rgba(253, 249, 243, 0.55);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(31, 26, 22, 0.08);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--stone);
}

.hero h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.9rem, 2.4vw, 3rem);
    margin: 1rem 0;
}

.hero p {
    font-size: 1.05rem;
    color: var(--midnight);
    max-width: 520px;
}

.hero-actions {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-add {
    padding: 0.9rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(31, 26, 22, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--midnight);
    color: #fff;
    box-shadow: 0 10px 20px rgba(31, 26, 22, 0.18);
}

.btn-secondary {
    background: transparent;
    color: var(--spice);
}

.btn-add {
    background: transparent;
    color: var(--midnight);
    width: 100%;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-add:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(36, 31, 27, 0.2);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-stats strong {
    font-size: 1.4rem;
    display: block;
}

.hero-stats span {
    color: var(--stone);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    z-index: 2;
}

.hero-card {
    background: rgba(255, 255, 255, 0.78);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-strong);
    max-width: 360px;
    position: relative;
    z-index: 2;
}

.hero-card h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 1.7rem;
    margin: 0.6rem 0;
}

.hero-card p {
    color: var(--stone);
    margin-bottom: 1.4rem;
}

.hero-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--spice);
}

.hero-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.hero-price span {
    color: var(--stone);
    font-size: 0.9rem;
}

.hero-price strong {
    font-size: 2rem;
    color: var(--spice);
}

.hero-pattern {
    position: absolute;
    width: 320px;
    height: 320px;
    background: linear-gradient(140deg, rgba(210, 164, 87, 0.35), rgba(201, 109, 67, 0.25));
    top: -40px;
    right: 20px;
    z-index: 1;
    opacity: 0.15;
}

.signature {
    padding: 4rem 2rem;
    background: transparent;
    animation: fade-up 0.9s ease both;
    animation-delay: 0.1s;
}

.signature-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.signature-grid h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 2.4rem;
}

.signature-grid p {
    color: var(--stone);
    margin-top: 1rem;
}

.signature-cards {
    display: grid;
    gap: 1.5rem;
}

.signature-cards article {
    background: #fff;
    padding: 1.5rem 1.8rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(31, 26, 22, 0.08);
}

.signature-cards h3 {
    color: var(--spice);
    margin-bottom: 0.5rem;
}

.signature-cards p {
    color: var(--stone);
}

.produits {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    position: relative;
    animation: fade-up 0.9s ease both;
    animation-delay: 0.15s;
}

.produits-frame {
    border: 1px solid #d8d8d8;
    padding: 2.5rem 2rem;
    box-shadow: 0 18px 40px rgba(15, 15, 15, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #f3f3f3 18%, #ffffff 36%, #e9e9e9 54%, #f8f8f8 72%, #ffffff 100%);
    border-radius: var(--radius-md);
}

#produits .section-title,
#produits .category-title {
    color: #1f1a16;
}

#produits .section-title::before,
#produits .section-title::after,
#produits .category-title::before,
#produits .category-title::after {
    background: linear-gradient(90deg, transparent, rgba(31, 26, 22, 0.35), transparent);
}

.produits h2,
.commande h2,
.contact h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 2.5rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.section-title::before,
.section-title::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(31, 26, 22, 0.4), transparent);
}

.zelij-pattern-top,
.zelij-pattern-bottom {
    width: 100%;
    height: 36px;
    margin: 2rem 0;
    background-image: url("../images/zelij.png");
    background-repeat: repeat;
    background-size: 140px auto;
    border-radius: var(--radius-md);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.category-title {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.2rem;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.category-title::before,
.category-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(31, 26, 22, 0.25), transparent);
}

.product-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(31, 26, 22, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-banner {
    width: 100%;
    height: 160px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.4rem;
    background: var(--sand);
    display: grid;
    place-items: center;
    color: var(--stone);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.product-banner--empty {
    background: #f4eee5;
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--stone);
}

.people-price {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
    background: #ffffff;
    border: 1px solid rgba(31, 26, 22, 0.12);
    border-radius: 999px;
    padding: 0.4rem 0.6rem;
}

.people-info {
    display: grid;
    gap: 0.1rem;
    text-align: center;
}

.people-count {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--stone);
}

.people-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(31, 26, 22, 0.18);
    background: var(--sand);
    font-size: 1.2rem;
    cursor: pointer;
}

.people-btn:hover {
    border-color: rgba(31, 26, 22, 0.35);
}

.btn-ingredients {
    margin: 0.8rem 0 1rem;
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(31, 26, 22, 0.18);
    background: transparent;
    color: var(--midnight);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-ingredients:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 26, 22, 0.35);
    box-shadow: 0 8px 18px rgba(31, 26, 22, 0.12);
}

.price {
    font-size: 1.6rem;
    color: var(--spice);
    margin-bottom: 1rem;
}

.people-price .price {
    margin-bottom: 0;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.is-open {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 26, 22, 0.45);
    backdrop-filter: blur(2px);
}

.modal-content {
    position: relative;
    max-width: 540px;
    width: min(92vw, 540px);
    background: #ffffff;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: var(--shadow-strong);
    z-index: 1;
    text-align: center;
}

.modal-content h3 {
    margin-bottom: 1rem;
}

.modal-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    color: var(--stone);
}

.modal-content li {
    padding: 0.2rem 0;
}

.modal-content p {
    color: var(--stone);
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: var(--sand);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
}

.commande {
    padding: 5rem 2rem;
    background: transparent;
    animation: fade-up 0.9s ease both;
    animation-delay: 0.2s;
}

.commande-frame {
    border: 1px solid rgba(31, 26, 22, 0.12);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
    background: #ffffff;
    border-radius: var(--radius-md);
}

.commande-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(0, 2fr);
    gap: 2.5rem;
}

.panier,
.form-commande {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(31, 26, 22, 0.08);
}

.panier {
    position: sticky;
    top: 120px;
    border: 1px solid rgba(31, 26, 22, 0.12);
}

.panier h3,
.form-commande h3 {
    margin-bottom: 1.5rem;
    color: var(--spice);
}

.panier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(140, 139, 135, 0.2);
}

.panier-item strong {
    color: var(--spice);
}

.panier-item button {
    background: var(--spice);
    color: #fff;
    border: none;
    padding: 0.3rem 0.8rem;
    cursor: pointer;
}

.panier-total {
    padding: 1rem;
    background: var(--sand);
    text-align: center;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.footer-links {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.footer-links a {
    color: var(--stone);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #e6e1da;
    box-shadow: 0 12px 30px rgba(15, 15, 15, 0.12);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    max-width: 760px;
    width: calc(100% - 3rem);
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
}

.cookie-banner p {
    margin: 0;
    color: var(--stone);
    font-size: 0.95rem;
}

.cookie-banner.hidden {
    display: none;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--midnight);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(31, 26, 22, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--spice);
    box-shadow: 0 0 0 3px rgba(140, 47, 30, 0.15);
}

.contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
    animation: fade-up 0.9s ease both;
    animation-delay: 0.25s;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.contact-item {
    padding: 2rem;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-soft);
    text-align: left;
    border: 1px solid rgba(31, 26, 22, 0.08);
}

.contact-item h3 {
    margin-bottom: 0.8rem;
}

.contact-item p {
    color: var(--stone);
}

.footer {
    background: transparent;
    color: var(--stone);
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(31, 26, 22, 0.08);
}

.footer p {
    margin: 0.4rem 0;
}

.footer-instagram {
    display: flex;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.footer-instagram a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.footer-instagram svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.admin {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}

.admin-header {
    margin-bottom: 2rem;
}

.admin-header p {
    color: var(--stone);
}

.admin-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.4fr);
    gap: 2rem;
}

.admin-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(31, 26, 22, 0.08);
}

.price-people-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.price-people-grid label {
    font-size: 0.85rem;
    color: var(--stone);
}

.admin-list {
    display: grid;
    gap: 1rem;
}

.admin-section h4 {
    margin-bottom: 0.8rem;
}

.admin-list-group {
    display: grid;
    gap: 1rem;
}

.admin-item {
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(31, 26, 22, 0.08);
    display: grid;
    gap: 0.4rem;
}

.admin-item small {
    color: var(--stone);
}

.admin-actions {
    display: flex;
    gap: 0.6rem;
}

.admin-actions button {
    border: none;
    background: var(--spice);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.8rem;
}

@media (max-width: 1199px) {
    body {
        padding-inline: clamp(0.75rem, 4vw, 1.5rem);
        overflow-x: hidden;
    }

    body::before,
    body::after {
        opacity: 0.4;
        width: clamp(24px, 6vw, 48px);
        background-size: 160px auto;
    }

    .nav-container {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 0.75rem;
        padding: 0.9rem 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        overflow: visible;
        gap: 0.6rem 1rem;
        letter-spacing: 0.08em;
        font-size: 0.78rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .hero,
    .signature-grid,
    .commande-container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .hero {
        gap: 2rem;
        padding: 3.5rem 0 2.5rem;
    }

    .hero-text-card {
        max-width: 100%;
    }

    .hero-card {
        max-width: 100%;
    }

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

    .panier {
        position: static;
    }

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

@media (max-width: 767px) {
    body {
        padding-inline: 1rem;
        overflow-x: hidden;
    }

    body::before,
    body::after {
        display: none;
    }

    .hero {
        padding-top: 3rem;
    }

    .nav-menu {
        gap: 0.4rem 0.8rem;
        font-size: 0.68rem;
        letter-spacing: 0.05em;
        justify-content: center;
    }

    .nav-container {
        padding: 0.7rem 0.8rem;
    }

    .brand {
        flex-direction: column;
        gap: 0.35rem;
    }

    .brand-mark {
        width: 2.6rem;
        height: 2.6rem;
    }

    .brand-text h1 {
        font-size: 1.2rem;
    }

    .brand-text p {
        font-size: 0.78rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .commande,
    .signature,
    .produits {
        padding: 3rem 0;
    }

    .commande-frame,
    .produits-frame {
        padding: 1.6rem 1rem;
    }

    .panier,
    .form-commande {
        padding: 1.25rem;
    }

    .hero h2 {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.05rem;
        gap: 0.6rem;
    }

    #produits .section-title,
    #commande .section-title,
    #contact .section-title {
        font-size: 1rem;
        letter-spacing: 0.14em;
    }

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

    .product-card,
    .panier,
    .form-commande,
    .hero-card,
    .signature-cards article {
        width: 100%;
    }

    .nav-container {
        padding: 0.7rem 0.8rem;
    }

    .panier-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .panier-item button {
        align-self: flex-end;
    }

    .btn-primary,
    .btn-add,
    .btn-ingredients {
        width: 100%;
        text-align: center;
    }

    .footer-links {
        gap: 0.5rem 0.9rem;
        font-size: 0.88rem;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner .btn-primary {
        width: 100%;
        text-align: center;
    }

    .cookie-banner {
        width: calc(100% - 1.5rem);
        padding: 0.9rem 1rem;
    }
}

@media (max-width: 420px) {
    .nav-menu {
        font-size: 0.64rem;
        gap: 0.35rem 0.7rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero-price strong {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}


.produits-tabs-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.produits-tabs {
    display: inline-flex;
    gap: 0.75rem;
    margin: 1.2rem auto 2rem;
    padding: 0.3rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(31, 26, 22, 0.1);
    box-shadow: var(--shadow-soft);
}

.produits-tab {
    border: none;
    background: transparent;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    color: var(--midnight);
}

.produits-tab.is-active {
    background: var(--spice);
    color: #fff;
}

.products-categories.is-hidden {
    display: none;
}

.unit-qty .people-count {
    text-transform: uppercase;
}
