/* =================================================================
   MEYZAR — Design premium (noir / or / blanc) — mobile-first + RTL
   ================================================================= */

:root {
    --black: #0a0a0a;
    --ink: #1a1a1a;
    --gray: #6b6b6b;
    --line: #e8e6e0;
    --cream: #faf8f4;
    --white: #ffffff;

    /* Or métallique (repris du logo) */
    --gold-1: #bf953f;
    --gold-2: #fcf6ba;
    --gold-3: #b38728;
    --gold-4: #fbf5b7;
    --gold-5: #aa771c;
    --gold: #b88a2e;
    --gold-deep: #8a6410;
    --gold-soft: #f4ecd6;
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba 35%, #b38728 60%, #aa771c);

    --shadow: 0 10px 40px rgba(0, 0, 0, .08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .14);
    --radius: 14px;
    --maxw: 1160px;

    --ff-display: 'Cinzel', 'Times New Roman', serif;
    --ff-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --ff-ar: 'Cairo', 'Tajawal', system-ui, sans-serif;
    --ff-ar-display: 'Amiri', 'Cairo', serif;
}

/* ───────── Reset ───────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
    font-family: var(--ff-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
/* Anti-débordement horizontal (grilles & formulaires sur mobile) */
.product > *, .grid > *, .features > *, .footer-grid > *, .contact-grid > * { min-width: 0; }
.field input, .field textarea, .qty-control { min-width: 0; max-width: 100%; }
.product-desc, .content p, .benefits li span { overflow-wrap: anywhere; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 16px; }

/* ───────── Arabe / RTL ───────── */
html[dir="rtl"] body { font-family: var(--ff-ar); }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] .brand-word {
    font-family: var(--ff-ar-display);
}

/* ───────── Layout ───────── */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.text-center { text-align: center; }

/* ───────── Typo ───────── */
h1, h2, h3 { font-family: var(--ff-display); font-weight: 600; line-height: 1.2; color: var(--black); letter-spacing: .5px; }
h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.3rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); }
p { color: var(--ink); }
.muted { color: var(--gray); }
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}

/* Titre de section + étoile chérifienne */
.section-head { text-align: center; margin-bottom: 40px; }
.section-head p { color: var(--gray); margin-top: 8px; }
.star-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; margin: 14px auto 0; max-width: 260px; color: var(--gold);
}
.star-divider::before, .star-divider::after {
    content: ""; height: 1px; flex: 1;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.star { width: 18px; height: 18px; fill: var(--gold); flex: none; }

/* ───────── Boutons ───────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: .98rem;
    letter-spacing: .3px; transition: transform .15s ease, box-shadow .2s ease, opacity .2s;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
    background: var(--gold-gradient); color: #2a1e00;
    box-shadow: 0 8px 24px rgba(184, 138, 46, .35);
}
.btn-gold:hover { box-shadow: 0 12px 30px rgba(184, 138, 46, .5); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #222; }
.btn-outline { border: 1.5px solid var(--black); color: var(--black); background: transparent; }
.btn-outline:hover { background: var(--black); color: #fff; }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 8px 24px rgba(37, 211, 102, .35); }
.btn-wa:hover { background: #1ebe5b; }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ───────── Bandeau promo défilant ───────── */
.topbar { background: var(--gold-gradient); color: #2a1e00; overflow: hidden; white-space: nowrap; }
.topbar-track { display: inline-flex; align-items: center; will-change: transform; animation: marquee 26s linear infinite; }
.topbar-track span { display: inline-flex; align-items: center; padding: 7px 30px; font-size: .82rem; font-weight: 700; letter-spacing: .3px; position: relative; }
.topbar-track span::after { content: "✦"; position: absolute; inset-inline-end: -4px; opacity: .55; }
.topbar:hover .topbar-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
html[dir="rtl"] .topbar-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
@media (prefers-reduced-motion: reduce) { .topbar-track { animation: none; } }

/* ───────── Header ───────── */
.site-header {
    position: sticky; top: 0; z-index: 50; background: rgba(10,10,10,.96);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid rgba(184,138,46,.35);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo .logo-word { height: 38px; width: auto; }
.logo .brand-word { font-family: var(--ff-display); font-size: 1.4rem; letter-spacing: 4px; color: #fff; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: .95rem; font-weight: 500; color: #e9e6df; position: relative; padding: 4px 0; }
.nav a:hover { color: #fff; }
.nav a::after {
    content: ""; position: absolute; bottom: 0; inset-inline-start: 0; width: 0; height: 2px;
    background: var(--gold-gradient); transition: width .25s;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: flex; align-items: center; gap: 4px; font-size: .85rem; border: 1px solid rgba(255,255,255,.22); border-radius: 50px; padding: 4px; }
.lang-switch a { padding: 4px 10px; border-radius: 50px; color: #cfccc5; font-weight: 600; }
.lang-switch a.active { background: var(--gold-gradient); color: #2a1e00; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: #f0ede6; transition: .3s; }

/* ───────── Hero ───────── */
.hero {
    position: relative; text-align: center; padding: 80px 0 70px;
    background:
        radial-gradient(900px 380px at 50% -10%, rgba(184,138,46,.10), transparent 70%),
        var(--cream);
    border-bottom: 1px solid var(--line);
}
.hero .eyebrow { letter-spacing: 4px; text-transform: uppercase; font-size: .78rem; color: var(--gold); font-weight: 700; margin-bottom: 16px; }
.hero h1 { margin-bottom: 18px; }
.hero p { max-width: 620px; margin: 0 auto 30px; color: var(--gray); font-size: 1.08rem; }
.hero-logo { height: 158px; width: auto; margin: 0 auto 18px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.trust-row { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 34px; color: var(--gray); font-size: .9rem; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { width: 18px; height: 18px; fill: var(--gold); }

/* ───────── Grille produits ───────── */
.grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; aspect-ratio: 1/1; background: var(--cream); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-media img { transform: scale(1.05); }
.badge {
    position: absolute; top: 12px; inset-inline-start: 12px; z-index: 2;
    background: var(--black); color: #fff; font-size: .72rem; font-weight: 700;
    padding: 5px 11px; border-radius: 50px; letter-spacing: .5px;
}
.badge.promo { background: var(--gold-gradient); color: #2a1e00; }
.badge.out { background: #c0392b; }
.card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-family: var(--ff-body); font-weight: 700; font-size: 1.05rem; color: var(--ink); letter-spacing: 0; }
.card-body .short { color: var(--gray); font-size: .88rem; margin: 6px 0 12px; flex: 1; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.price { font-size: 1.25rem; font-weight: 800; color: var(--gold-deep); }
.price.gold { color: var(--gold-deep); }
.old-price { font-size: .95rem; color: var(--gray); text-decoration: line-through; }

/* ───────── Avantages (home) ───────── */
.features { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.feature { text-align: center; padding: 28px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.feature .ico { width: 54px; height: 54px; margin: 0 auto 14px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-soft); }
.feature .ico svg { width: 26px; height: 26px; fill: var(--gold); }
.feature h3 { font-family: var(--ff-body); font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.feature p { font-size: .9rem; color: var(--gray); }

/* ───────── Page produit ───────── */
.product { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: start; }
.gallery-main { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; background: var(--cream); border: 1px solid var(--line); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.thumb { width: 72px; height: 72px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; cursor: pointer; background: var(--cream); }
.thumb.active { border-color: var(--gold); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info .eyebrow { letter-spacing: 3px; text-transform: uppercase; font-size: .75rem; color: var(--gold); font-weight: 700; }
.product-info h1 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin: 8px 0 14px; }
.product-info .short { color: var(--gray); font-size: 1.05rem; margin-bottom: 18px; }
.product-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.product-price .price { font-size: 2rem; }
.save-tag { display: inline-block; background: var(--gold-soft); color: var(--gold-5); font-weight: 700; font-size: .82rem; padding: 4px 12px; border-radius: 50px; margin-bottom: 20px; }
.stock-line { font-size: .9rem; margin-bottom: 22px; display: inline-flex; align-items: center; gap: 7px; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot.ok { background: #27ae60; } .dot.no { background: #c0392b; }

.benefits { margin: 24px 0; }
.benefits li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: .98rem; }
.benefits li svg { width: 20px; height: 20px; fill: var(--gold); flex: none; margin-top: 2px; }

.product-section { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--line); }
.product-section h2 { font-size: 1.3rem; margin-bottom: 12px; }
.product-desc { color: var(--ink); white-space: pre-line; }

/* ───────── Formulaire commande ───────── */
.order-box {
    background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px; margin-top: 26px; box-shadow: var(--shadow);
}
.order-box h2 { font-size: 1.35rem; margin-bottom: 6px; }
.order-box .intro { color: var(--gray); font-size: .92rem; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea {
    width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 10px;
    background: #fff; transition: border-color .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field.error input, .field.error textarea { border-color: #c0392b; }
.field .err-msg { color: #c0392b; font-size: .8rem; margin-top: 5px; display: none; }
.field.error .err-msg { display: block; }
.qty-control { display: flex; align-items: center; gap: 0; width: max-content; border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden; }
.qty-control button { width: 44px; height: 46px; font-size: 1.3rem; background: #fff; color: var(--black); }
.qty-control input { width: 60px; text-align: center; border: none; border-inline: 1.5px solid var(--line); border-radius: 0; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.order-total { display: flex; justify-content: space-between; align-items: center; margin: 18px 0; padding: 14px 0; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); }
.order-total .label { font-weight: 600; }
.order-total .value { font-size: 1.5rem; font-weight: 800; color: var(--black); }
.order-notes { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.cod-note { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--gray); justify-content: center; }
.cod-note svg { width: 18px; height: 18px; fill: var(--gold); flex: none; }

/* Urgence stock */
.stock-low { color: #c0392b; font-weight: 800; }

/* Note / étoiles */
.star-ic { width: 17px; height: 17px; }
.star-ic.on { fill: var(--gold); }
.star-ic.off { fill: #dcd6c8; }
.stars { display: inline-flex; gap: 1px; vertical-align: middle; }
.rating-summary { display: inline-flex; align-items: center; gap: 7px; margin: 2px 0 14px; color: var(--ink); }
.rating-summary strong { font-weight: 800; }

/* Description repliable */
.desc-collapse { border: 1px solid var(--line); border-radius: 12px; margin: 4px 0 6px; background: #fff; }
.desc-collapse summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; font-weight: 700; color: var(--black); }
.desc-collapse summary::-webkit-details-marker { display: none; }
.desc-collapse .dc-ico { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--gold); position: relative; flex: none; }
.desc-collapse .dc-ico::before, .desc-collapse .dc-ico::after { content: ""; position: absolute; background: var(--gold); left: 50%; top: 50%; transform: translate(-50%, -50%); }
.desc-collapse .dc-ico::before { width: 11px; height: 2px; }
.desc-collapse .dc-ico::after { width: 2px; height: 11px; transition: transform .2s, opacity .2s; }
.desc-collapse[open] .dc-ico::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.desc-collapse .product-desc { padding: 0 16px 16px; color: var(--ink); white-space: pre-line; }

/* Avis clients */
.reviews-block { margin-top: 48px; }
.reviews-head { display: flex; align-items: center; gap: 20px; border-top: 1px solid var(--line); padding-top: 30px; margin-bottom: 22px; flex-wrap: wrap; }
.reviews-head h2 { font-size: 1.5rem; }
.reviews-head .muted { font-size: .92rem; }
.reviews-score { display: flex; align-items: center; gap: 12px; background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 12px 18px; }
.reviews-score .big { font-size: 2.2rem; font-weight: 800; color: var(--gold-deep); line-height: 1; }
.stars-lg .star-ic { width: 18px; height: 18px; }
.reviews-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.review-card { border: 1px solid var(--line); border-radius: 12px; padding: 18px; background: #fff; }
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; gap: 10px; }
.verified { font-size: .76rem; font-weight: 700; color: #15803d; background: #eafaf1; padding: 3px 9px; border-radius: 50px; white-space: nowrap; }
.review-body { color: var(--ink); font-size: .95rem; margin-bottom: 12px; }
.review-meta { font-size: .85rem; color: var(--ink); }

/* Bouton flottant Commander */
.order-float { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 60;
    display: inline-flex; align-items: center; gap: 9px; background: var(--gold-gradient); color: #2a1e00;
    font-weight: 800; padding: 14px 28px; border-radius: 50px; box-shadow: 0 10px 30px rgba(184,138,46,.55);
    font-size: 1rem; white-space: nowrap; transition: opacity .25s, transform .25s; }
.order-float svg { width: 20px; height: 20px; fill: #2a1e00; }
.order-float.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(24px); }

/* ───────── Pages contenu (à propos, livraison...) ───────── */
.content { max-width: 760px; margin: 0 auto; }
.content h2 { margin: 28px 0 12px; }
.content p { margin-bottom: 14px; color: var(--ink); }
.content ul.bullets { margin: 0 0 16px; padding-inline-start: 4px; }
.content ul.bullets li { padding: 6px 0; display: flex; gap: 10px; }
.content ul.bullets li::before { content: "✦"; color: var(--gold); }

.page-hero { text-align: center; padding: 56px 0 30px; background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero p { color: var(--gray); max-width: 600px; margin: 10px auto 0; }

/* ───────── Contact ───────── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.contact-card { text-align: center; padding: 30px 22px; border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card .ico { width: 52px; height: 52px; margin: 0 auto 12px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-soft); }
.contact-card .ico svg { width: 24px; height: 24px; fill: var(--gold); }

/* ───────── Footer ───────── */
.site-footer { background: var(--black); color: #cfcfcf; padding: 56px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.site-footer h4 { color: #fff; font-family: var(--ff-body); font-size: .95rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #cfcfcf; font-size: .92rem; display: inline-block; padding: 4px 0; }
.site-footer a:hover { color: var(--gold-2); }
.footer-brand .brand-word { font-family: var(--ff-display); font-size: 1.6rem; letter-spacing: 5px; color: #fff; }
.footer-brand img { height: 104px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: #9a9a9a; font-size: .9rem; max-width: 280px; margin-top: 10px; }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a { width: 40px; height: 40px; border: 1px solid #333; border-radius: 50%; display: grid; place-items: center; }
.socials svg { width: 18px; height: 18px; fill: #cfcfcf; }
.socials a:hover { border-color: var(--gold); }
.socials a:hover svg { fill: var(--gold-2); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; padding: 6px 0 20px; }
.footer-legal a { color: #b8b8b8; font-size: .85rem; }
.footer-legal a:hover { color: var(--gold-2); }
.footer-bottom { border-top: 1px solid #222; padding-top: 22px; text-align: center; font-size: .85rem; color: #8a8a8a; }
.footer-bottom .pay { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-2); margin-top: 6px; }
.footer-bottom .pay svg { width: 16px; height: 16px; fill: var(--gold-2); }

/* ───────── WhatsApp flottant ───────── */
.wa-float {
    position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 60;
    width: 58px; height: 58px; border-radius: 50%; background: #25D366;
    display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.45);
    transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* ───────── Page de remerciement ───────── */
.thanks-card { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 28px; box-shadow: var(--shadow); }
.thanks-ico { width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%; background: #eafaf1; display: grid; place-items: center; }
.thanks-ico svg { width: 40px; height: 40px; fill: #25a25a; }
.thanks-card h1 { margin-bottom: 10px; }
.thanks-sub { color: var(--gray); margin-bottom: 24px; }
.thanks-recap { text-align: start; background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin-bottom: 24px; }
.tr-row { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; font-size: .95rem; }
.tr-row.total { border-top: 1px dashed var(--line); margin-top: 4px; padding-top: 12px; font-size: 1.1rem; }
.tr-row.total strong { color: var(--gold-deep); }
.thanks-manual { font-size: .82rem; color: var(--gray); margin: 12px 0 4px; }

/* ───────── Bandeau cookies ───────── */
.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; background: #0a0a0a; color: #e9e6df;
    padding: 16px 20px; display: none; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
    border-top: 1px solid rgba(184,138,46,.4); box-shadow: 0 -6px 24px rgba(0,0,0,.2); }
.cookie-bar.show { display: flex; }
.cookie-bar p { font-size: .88rem; max-width: 640px; color: #e9e6df; }
.cookie-bar a { color: var(--gold-2); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex: none; }
.cookie-bar .btn { padding: 10px 22px; }

/* ───────── Barre de filtres produits ───────── */
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: space-between;
    margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.filter-bar form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-bar .search-wrap { display: flex; }
.filter-bar input[type=search] { padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 50px 0 0 50px; min-width: 200px; }
.filter-bar .search-wrap .btn { border-radius: 0 50px 50px 0; }
.filter-bar select { padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 50px; background: #fff; }
html[dir="rtl"] .filter-bar input[type=search] { border-radius: 0 50px 50px 0; }
html[dir="rtl"] .filter-bar .search-wrap .btn { border-radius: 50px 0 0 50px; }

/* ───────── Alertes / flash ───────── */
.flash { padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-size: .92rem; }
.flash.error { background: #fdecea; color: #b02a1a; border: 1px solid #f5c6c0; }
.flash.success { background: #eafaf1; color: #1e7e4f; border: 1px solid #c3ebd5; }

/* ───────── Responsive ───────── */
@media (max-width: 900px) {
    .product { grid-template-columns: 1fr; gap: 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
    .nav, .header-desktop-only { display: none; }
    .burger { display: flex; }
    .nav.open {
        display: flex; position: absolute; top: 76px; inset-inline-start: 0; right: 0; width: 100%;
        flex-direction: column; gap: 0; background: #0a0a0a; border-bottom: 1px solid rgba(184,138,46,.35);
        padding: 10px 20px 18px; box-shadow: var(--shadow);
    }
    .nav.open a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; }
    .nav.open a::after { display: none; }
    .section { padding: 48px 0; }
    .row-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .order-box { padding: 18px; }
    .container { padding: 0 16px; }
}
