/* =====================================================================
    Core variables
===================================================================== */
:root {
    --wv-max: 1200px;
    --wv-gap: 16px;
    --wv-radius: 14px;
    --wv-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    --wv-border: 1px solid rgba(0, 0, 0, 0.08);
    --wv-border-trans: rgba(255, 255, 255, 0.6);
    --wv-muted: rgba(0, 0, 0, 0.6);
    --wv-soft: rgba(0, 0, 0, 0.04);
    --wv-soft-h: rgba(0, 0, 0, 0.08);
    --wv-bg: #fff;

    --primary-color: #03224c;
    --primary-color-hover: #021836;
    --primary-color-rgb: 3, 34, 76;
    --button-text-primary: #fff;

    --secondary-color: #E53935;
    --secondary-color-hover: #d32421;
    --secondary-color-rgb: 225, 25, 35;
    --button-text-secondary: #fff;
    
    --accent: #E53935;
    --accent-hover: #d32421;
    --accent-rgb: 225, 25, 35;
    --button-text-accent: #fff;

    --menu-text-primary: var(--primary-color);
    --menu-text-on-primary: var(--button-text-primary);

    --dark-text-color: #fff;

    --extra1: #ffd84d;
    --extra1-hover: #e4be33;
    --extra1-txt: #000000;
}

/* =====================================================================
    Progressive / preload
===================================================================== */
/*.is-preload * { transition: none !important; animation: none !important; }
body { transition: opacity .18s ease; }
body.is-preload { opacity: 0; }*/
@media (prefers-reduced-motion: reduce) { body { transition: none; } }

.hidden { display: none; }

/* Global: make <a> look like regular text and remove click/keyboard visuals */
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

/* Optional: if some browsers add focus ring via :focus-visible */
a:focus-visible {
    outline: none;
}

.hr {
	border-top: 1px solid #e6e6e6;
	margin: 10px 0;
}

/* =====================================================================
    Shell / Container
===================================================================== */
#main-content {
	display: flex;
	flex-direction: column;
	height: 100vh;
}
.wv-container { width: var(--wv-max); max-width: 98%; margin: 0 auto; padding: 0 var(--wv-gap); flex: 1; }

/* Le carrousel reste LTR pour ne pas inverser l’ordre visuel */
.wv-tabs { direction: ltr; overflow-x: auto; white-space: nowrap; }

.wv-tab:hover { background: var(--wv-soft-h); }
.wv-tab.is-active { background: var(--primary-color); color: #fff; pointer-events: none; }

.wv-arrow { border: 0; background: #fff; border-radius: 10px; padding: 6px 10px; box-shadow: var(--wv-shadow); cursor: pointer; }
.wv-arrow:disabled { opacity: .5; cursor: default; }
.wv-arrow.wv-arrow-left:disabled {
	position: relative;
	color: #fff;
	width: 1px;
	padding: 0;
	margin: 0 12px;
	background: rgba(0,0,0,.25);
	opacity: 0;
}
.wv-arrow.wv-arrow-right:disabled { opacity: 0; }

/*  messages Contact page ===== */
.form-msg { display:none; margin-top:10px; font-size:14px; }
.form-msg.show { display:block; }
.form-msg.status { color:#0a7a32; }  /* vert */
.form-msg.error  { color:#c62828; }  /* rouge */

/* champs invalides */
.is-invalid {
    border-color: #c62828 !important;
    outline: none;
    box-shadow: 0 0 0 2px rgba(198,40,40,0.15);
}

/* =====================================================================
    Main / Sections
===================================================================== */
.wv-main { padding: 48px 0 24px; }
.wv-section-title { font-size: 22px; margin: 12px 0 24px; }

@keyframes wvFade { from { opacity: 0; transform: translateY(2px); } to { opacity: 1; transform: none; } }

/* ============================
    BREADCRUMBS
   ============================ */

.wv-breadcrumbs {
    margin-block: -10px 24px;          /* logique pour LTR/RTL */
    font-size: 14px;
    color: #222;
}

.wv-bc-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;                 /* si très long sur mobile */
    scrollbar-width: none;            /* Firefox */
}
.wv-bc-list::-webkit-scrollbar { display: none; }

.wv-bc-item { flex: 0 0 auto; }

.wv-crumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-block: 6px;
    padding-inline: 10px;
    border-radius: 999px;
    background: #f7f7f7;
    border: 1px solid #e7e7e7;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 0 rgba(0,0,0,0.02);
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.wv-crumb:hover { background: #f0f0f0; border-color: #dddddd; }

.wv-crumb-ico { 
    display: block;
    position: relative;
    top: -2px;
    opacity: 0.8;
}

.wv-crumb.is-current {
    background: transparent;
    border-color: transparent;
    font-weight: 700;
    cursor: default;
    padding-inline: 0;
}

.wv-bc-sep {
    flex: 0 0 auto;
    color: #b8b8b8;
    line-height: 1;
}
.wv-sep-ico { display: block; opacity: 0.7; }

/* S’adapte aux petits écrans */
@media (max-width: 420px) {
    .wv-breadcrumbs { font-size: 13px; }
    .wv-crumb { padding-inline: 8px; padding-block: 5px; }
}

/* =====================================================================
    Google reviews
===================================================================== */
.rating-pair {
	display: flex;
	gap: 15px;
}
.rating-logo {
	width: 84px;
	display: block;
	margin: auto;
}

.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.04);
    padding: 6px 10px;
    margin: auto;
    border-radius: 999px;
    text-decoration: none;
    color: var(--wv-text);
    font-size: 0.95rem;
    transition: background .15s ease, transform .08s ease;
}
.rating-pill:hover { background: rgba(0,0,0,0.06); transform: translateY(-1px); }
.rating-pill__stars { display:inline-flex; gap:4px; color: #f5b301; }
.star--empty { opacity: .35; color: #f5b301; }
.rating-pill__score { margin-left: 2px; font-weight:700; }
.rating-pill__count { color: var(--wv-text-muted); margin-left: 4px; font-weight:400; font-size:0.9rem; }
/* ----------- */
/* container */
.gm-reviews {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    margin-top: 60px;
}

/* header */
.gm-reviews__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}
/* CTA */
.gm-reviews__cta {
	background: #1a73e8;
	color: #fff;
	text-decoration: none;
	padding: 8px 12px;
	border-radius: 10px;
	font-weight: 600;
}

.gm-reviews__cta:hover { background:#155fc0; }

/* grid */
.gm-reviews__grid {
    display:grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap:12px;
}
@media (max-width: 720px) {
    .gm-reviews__grid { grid-template-columns: 1fr; }
    .gm-reviews__header, .rating-pair {
        flex-direction: column;
    }
}

/* card */
.gm-review {
    border:1px solid #eee;
    border-radius:12px;
    padding:12px;
    background:#fafafa;
}
.gm-review__head { display:flex; gap:10px; align-items:center; margin-bottom:6px; }
.gm-review__avatar { width:40px; height:40px; border-radius:50%; object-fit:cover; }
.gm-review__meta { display:flex; flex-direction:column; }
.gm-review__name a { color:#111; text-decoration:none; font-weight:600; }
.gm-review__name a:hover { text-decoration:underline; }

.gm-review__stars { display:flex; align-items:center; gap:8px; color:#444; }
.gm-review__time { color:#444; font-size:12px; }

.gm-review__text {
    margin:8px 0 10px;
    color:#222;
    line-height:1.4;
    display:-webkit-box; -webkit-line-clamp:5; -webkit-box-orient:vertical; overflow:hidden;
}
.gm-review__link {
    font-size:13px;
    color:#1a73e8;
    text-decoration:none;
}
.gm-review__link:hover { text-decoration:underline; }

/* footer */
.gm-reviews__foot {
    display:flex; align-items:center; justify-content:space-between;
    margin-top:10px; color:#666; font-size:12px;
}
.gm-all { color:#1a73e8; text-decoration:none; }
.gm-all:hover { text-decoration:underline; }

/* stars (text fill gradient) */
.gm-stars {
    font-size:16px;
    letter-spacing:1px;
    background: linear-gradient(90deg, #f4c430 var(--pct,0%), #ddd var(--pct,0%));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* =====================================================================
    HERO FULL-WIDTH (image + overlay + texte)
    - Collé sous la nav (la recouvre légèrement)
    - Responsive (plus haut sur mobile)
    - Option parallaxe (data-parallax="true")
===================================================================== */

:root {
    /* Hauteur approx. de ta nav sticky (vue dans ton code: ~62px) */
    --wv-nav-h: 62px;
    --wv-hero-min-h-mobile: 44vh;
    --wv-hero-min-h-desktop: 56vh;
    --wv-hero-radius: 16px;
}

.wv-hero {
    position: relative;
    isolation: isolate;
    /* chevauche légèrement la nav sticky (effet collé) */
    margin-top: calc(var(--wv-nav-h) * -0.35);
    min-height: var(--wv-hero-min-h-mobile);
    display: flex;
    align-items: flex-end;
    overflow: clip;
    background: #000; /* fallback si pas d’image */
}

/* Voile dégradé pour la lisibilité du texte */
.wv-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to top,rgba(0,0,0,.6) 0,rgba(0,0,0,.2) 30%,rgba(0,0,0,.1) 60%,rgba(0,0,0,.3) 100%);
}

.wv-hero { position: relative; overflow: hidden; }
.wv-hero__img {
    position: absolute;
    /*inset: 0;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transform: translate3d(0,0,0) scale(1);
}

.wv-hero__overlay { position: absolute; inset: 0; pointer-events: none; }
/*
@media (max-width: 450px) {
    img.wv-hero__img {
        height: 100%;
        width: auto;
        top: unset;
        left: 50%;
        transform: translateX(-50%);
    }
}*/
/* Bloc texte */
.wv-hero__content {
    position: relative;
    width: 100%;
    padding: 20px var(--wv-gap) calc(20px + env(safe-area-inset-bottom, 0));
    color: #fff;
}

.wv-hero__title {
    margin: 0 0 8px 0;
    font-size: clamp(22px, 2.5vw + 10px, 36px);
    line-height: 1.2;
    font-weight: 800;
    text-wrap: balance;
}

.wv-hero__desc {
    margin: 0;
    max-width: min(70ch, 100%);
    font-size: clamp(14px, 0.5vw + 12px, 18px);
    line-height: 1.6;
    opacity: 0.95;
}

/* RTL friendly (si jamais tu en as besoin explicitement) */
.wv-hero.is-rtl .wv-hero__content {
    direction: rtl;
}

/* Desktop tweaks */
@media (min-width: 720px) {
    .wv-hero {
        min-height: var(--wv-hero-min-h-desktop);
    }
    .wv-hero__content {
        padding-bottom: 40px;
    }
}

/* Parallaxe “CSS-only” (déktop) */
@media (min-width: 720px) {
    .wv-hero[data-parallax="true"] .wv-hero__bg {
        background-attachment: fixed; /* iOS ignore => JS fallback plus bas */
    }
}

/* Respecte “réduire les animations” */
@media (prefers-reduced-motion: reduce) {
    .wv-hero[data-parallax="true"] .wv-hero__bg {
        background-attachment: scroll !important;
        transform: none !important;
    }
}

/* =====================================================================
    Show all categories button
===================================================================== */

.wv-home-actions{
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.wv-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    line-height: 1;
    transition: transform .06s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    user-select: none;
}

.wv-btn:focus-visible{
    outline: 2px solid rgba(0,0,0,.2);
    outline-offset: 2px;
}

.wv-btn:active{ transform: translateY(1px); }

.wv-btn--outline{
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    color: #111;
    box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.wv-btn--outline:hover{
    border-color: rgba(0,0,0,.2);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.wv-btn-ico{ display:block; }
.wv-btn-label{ display:inline-block; }

/* RTL friendly: le gap gère l’espacement automatiquement */
html[dir="rtl"] .wv-btn { direction: rtl; }

/* =====================================================================
    Table (LIST & GRID)
===================================================================== */
[data-view="list"] .wv-table {
    border-radius: var(--wv-radius); border: var(--wv-border); overflow: hidden;
    background: #fff; box-shadow: var(--wv-shadow);
}
.wv-row {
    display: grid;
    grid-template-columns: 120px 1fr 2fr 120px; /* base desktop generic */
    align-items: center;
    border-top: var(--wv-border);
}
.wv-row:first-child { border-top: 0; }
.wv-row-head { background: var(--wv-soft); font-weight: 600; }
.wv-cell { padding: 12px; }

.wv-col-img   { width: 120px; }
.wv-img {
	width: 100%;
	height: 80px;
	object-fit: cover;
	border-radius: 8px;
	color: white;
}
.wv-img-placeholder {
    width: 100%; height: 80px; border-radius: 8px;
    background: repeating-linear-gradient(45deg, #eee, #eee 8px, #f7f7f7 8px, #f7f7f7 16px);
}
.wv-row--noimg .wv-col-img { opacity: .8; }

.wv-name { 
    font-weight: 600;
    color: #000;
    text-decoration: none;
}
.wv-excerpt, .wv-daily-excerpt {
    display: inline-block;
	background: var(--wv-soft);
	border-radius: 12px;
	padding: 2px 8px;
}
.wv-desc { color: var(--wv-muted); line-height: 1.5; }
.wv-desc--empty { color: #bbb; font-style: italic; }
.wv-price { font-weight: 700; }
.wv-table .wv-col-name { align-self: start; }

/* ---------- LIST — MOBILE (flags plein-large en bas) ---------- */
@media (max-width: 720px) {
    .nav-right-side {
        margin-inline-start: auto;
    }
    .wv-arrow, .wv-tabs-wrap { display: none; }
    .logo-light, .logo-dark {
        height: 30px;
    }
    [data-view="list"] .wv-row {
        grid-template-columns: 100px 1fr 80px;
        grid-template-areas:
            "img name  price"
            "img desc  price"
            "flags flags flags";
        grid-auto-rows: auto;
        gap: 4px;
    }
    [data-view="list"] .wv-col-img   { grid-area: img;   align-self: start; }
    [data-view="list"] .wv-col-name  { grid-area: name;  padding-bottom: 0; }
    [data-view="list"] .wv-col-desc  { grid-area: desc;  padding-top: 0; }
    [data-view="list"] .wv-col-price { grid-area: price; align-self: start; }
    [data-view="list"] .wv-col-flags { grid-area: flags; margin-top: -8px; }
    [data-view="list"] .wv-row.has-flags { padding-bottom: 0; position: static; }
    [data-view="list"] .wv-row.has-flags .wv-flags { margin: 0; padding: 0; border: 0; }

    .wv-col-desc .wv-desc {
        font-size: 14px; line-height: 1.4;
        display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
        overflow: hidden; text-overflow: ellipsis;
    }
}

/* ---------- LIST — DESKTOP/TABLETTE (flags sous la desc, serré) ---------- */
@media (min-width: 721px) {
    
    [data-view="list"] .wv-row {
        grid-template-columns: 120px 1fr 100px;  /* img | contenu | prix */
        row-gap: 4px; align-items: start;
    }
    [data-view="list"] .wv-col-img   { grid-column: 1; grid-row: 1 / span 3; }
    [data-view="list"] .wv-col-name  { grid-column: 2; grid-row: 1; padding-bottom: 0; }
    [data-view="list"] .wv-col-desc  { grid-column: 2; grid-row: 2; padding-top: 0; padding-bottom: 0; }
    [data-view="list"] .wv-col-price { grid-column: 3; grid-row: 1; justify-self: end; align-self: start; }
    /* Appliquer le séparateur uniquement si la row a des flags */
    [data-view="list"] .wv-row.has-flags .wv-col-flags {
        grid-column: 2;
        grid-row: 3;
        padding-block-start: 0;
    }

    /* annule marges internes pour un rendu compact */
    [data-view="list"] .wv-col-name .wv-name { margin: 0; padding: 0; line-height: 1.25; }
    [data-view="list"] .wv-col-desc .wv-desc,
    [data-view="list"] .wv-col-desc .wv-desc p { margin: 0; padding: 0; line-height: 1.35; }
}

/* ---------- GRID view ---------- */
[data-view="grid"] .wv-table > .wv-tbody {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px; border: 0; box-shadow: none; background: none;
}
[data-view="grid"] .wv-cell { padding: 0; }
[data-view="grid"] .wv-row {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 12px;
    border-top: 0;
    gap: 5px;
}
[data-view="grid"] .wv-col-img { width: 100%; margin-bottom: 8px; }
[data-view="grid"] .wv-col-price {
	align-self: flex-end;
	margin-top: auto;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
/* === Carrés fluides pour les vignettes en mode GRILLE === */
[data-view="grid"] .wv-col-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;              /* pour que l’image suive le rayon */
}

/* Modernes : aspect-ratio natif */
@supports (aspect-ratio: 1) {
    [data-view="grid"] .wv-col-img {
        aspect-ratio: 1 / 1;       /* carré basé sur la largeur disponible */
    }
    [data-view="grid"] .wv-col-img img {
        width: 100%;
        height: 100%;              /* rempli le carré */
        object-fit: cover;         /* crop propre */
        display: block;
    }
}

/* Fallback (sans aspect-ratio) : hack padding-top */
@supports not (aspect-ratio: 1) {
    [data-view="grid"] .wv-col-img::before {
        content: "";
        display: block;
        padding-top: 100%;         /* crée un carré */
    }
    [data-view="grid"] .wv-col-img img {
        position: absolute;
        inset: 0;                  /* top/right/bottom/left: 0 */
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

/* (Optionnel) Placeholder carré aussi */
[data-view="grid"] .wv-col-img .wv-img-placeholder {
    width: 100%;
    height: 100%;
    background: #eee;
}

/* =====================================================================
    List/Grid switch
===================================================================== */
.wv-toggle-view {
    display: inline-flex; gap: 8px; background: #f9f9f9; border: var(--wv-border);
    border-radius: 999px; padding: 4px; margin-bottom: 12px; box-shadow: var(--wv-shadow);
}
.wv-toggle-btn {
    border: none; background: transparent; padding: 8px; border-radius: 50%;
    cursor: pointer; transition: background .2s, transform .15s;
    display: flex; align-items: center; justify-content: center;
}
.wv-toggle-btn .icon { width: 20px; height: 20px; fill: #555; transition: fill .2s; }
.wv-toggle-btn:hover { background: var(--wv-soft); }
.wv-toggle-btn.is-active { background: var(--primary-color); }
.wv-toggle-btn.is-active .icon { fill: #fff; }

/* =====================================================================
    Home cards
===================================================================== */
/* Grille d’accueil (réutilise ton layout si tu en as déjà un) */
.wv-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.wv-card {
    overflow: hidden;
    background: #fff;
    position: relative;
}

.flex-1 {
    flex: 1;
}

[data-view="list"] .wv-row .dm-lb__add {
    position: absolute;
	bottom: 12px;
}

[data-page="home"] .wv-card,
[data-view="grid"] .wv-card {
    border: var(--wv-border);
    border-radius: var(--wv-radius);
    box-shadow: var(--wv-shadow);
    transition: transform .12s ease, box-shadow .2s ease;

}

[data-page="home"] .wv-card.ht:hover,
[data-view="grid"] .wv-card.ht:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

/* SPINNER - LOADER */

.dm-spinner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    width: 100%;
}

.dm-spinner {
    width: 36px;
    height: 36px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: dm-spin 0.8s linear infinite;
    background: transparent;
}

@keyframes dm-spin {
    to { transform: rotate(360deg); }
}

/* Carte catégorie : tout est cliquable */
.wv-cat-card:has(.wv-cat-link:focus-visible),
.wv-cat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.wv-cat-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* Media */
.wv-cat-media {
    position: relative;
    block-size: 180px; /* hauteur image */
    overflow: hidden;
    background: #f5f5f5;
}
.wv-cat-img {
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.wv-cat-card:hover .wv-cat-img { transform: scale(1.03); }

.wv-cat-gradient {
    position: absolute;
    inset-inline: 0;
    inset-block-end: 0;
    block-size: 55%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.45) 100%);
    pointer-events: none;
}

/* Badge “Catégorie” (en haut, côté start logique) */
.wv-cat-badge {
    position: absolute;
    inset-block-start: 10px;
    inset-inline-start: 10px;
    font: 700 12px/1.2 system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--primary-color);
    background: var(--extra1);
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
}

/* CTA fantôme (bas/end logique) */
.wv-cat-cta {
	position: absolute;
	inset-block-end: 12px;
	inset-inline-end: 12px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255,255,255,.14);
	color: #fff;
	font-weight: 600;
	backdrop-filter: blur(2px);
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .2s ease, transform .2s ease;
	text-shadow: 0 1px rgba(0,0,0,0.5);
    z-index: 1;
}
.wv-cat-card:hover .wv-cat-cta,
.wv-cat-link:focus-visible .wv-cat-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Corps */
.wv-cat-body {
    padding: 12px 14px 14px;
}

.wv-cat-title {
    margin: 0 0 6px 0;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
}

.wv-cat-sub {
    font-size: 14px;
    color: #666;
    display: flex;
    gap: .35rem;
    margin-block-end: 6px;
}
.wv-cat-sub-k { color: #666; }
.wv-cat-sub-v { color: #333; }

.wv-cat-meta {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: .5ch;
}
.wv-cat-sep { opacity: .5; }

/* =====================================================================
    DAILY DISH (home) — card + layout + flags
    - Price: top-right
    - View button: bottom-right
    - Flags: sous la description, compact
===================================================================== */

.wv-daily-card {
    padding: 12px;
    margin-bottom: 52px;
}

.wv-daily-dish {
    display: grid;
    grid-template-columns: 260px 1fr; /* media | body */
    gap: 16px;
}

/* ---------- Media ---------- */
.wv-daily-media {
    overflow: hidden;
    background: #f6f6f6;
    border-start-start-radius: 12px;
    border-end-start-radius: 12px;
    border-start-end-radius: 0;
    border-end-end-radius: 0;
    margin-block-start: -12px;
    margin-block-end: -12px;
    margin-inline-start: -12px;
    margin-inline-end: 0;
}

.wv-daily-media .wv-card-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

/* ---------- Body grid (pin price+btn) ---------- */
.wv-daily-body {
    display: grid;
    grid-template-columns: 1fr auto;            /* content | right rail */
    grid-template-rows: auto auto 1fr auto;     /* kicker, title, content, btn */
    grid-template-areas:
        "kicker price"
        "title  price"
        "content content"
        ".      btn";
    gap: 8px 12px;
    min-width: 0;
    min-height: 100%;
}

/* ===== Daily Dish: badge + price boost ===== */

/* 1) Badge (PILL accentué, sans changer ton HTML) */
.wv-daily-kicker {
	grid-area: kicker;
	display: inline-flex;
	align-items: center;
	justify-self: start;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #111;
	background: var(--extra1);
}
.wv-daily-kicker::before {
    content: "★";
    font-size: 12px;
    line-height: 1;
}

.wv-daily-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
}
.wv-daily-excerpt {
	align-self: start;
}
/* Dark theme lisibilité */
.theme-dark .wv-daily-kicker {
    color: #fff;
    background: rgba(var(--accent-rgb), .25);
    border-color: rgba(var(--accent-rgb), .5);
}

/* 2) PRICE plus visible (top-right) */
.wv-daily-price {
    grid-area: price;
    align-self: start;
    justify-self: end;
    font-variant-numeric: tabular-nums;
    font-size: 22px;          /* + lisible desktop */
    font-weight: 800;
    line-height: 1;
}
.wv-daily-price .price-old {
    font-size: 0.9em;
    font-weight: 500;
    opacity: .55;
    text-decoration: line-through;
    margin-inline-end: 8px;
}
.wv-daily-price .price-old + span {
    color: rgb(var(--accent-rgb)); /* si promo, nouveau prix en accent */
    font-weight: 900;
}

/* Mobile: un cran en dessous pour garder l’équilibre */
@media (max-width: 720px) {
    .wv-daily-price { font-size: 20px; }
    .wv-daily-media {
        border-radius: 12px 12px 0 0;
        margin: -12px -12px 0 -12px;
    }
}

/* 3) Flags: souffle léger sous la desc (option lisibilité) */
.wv-daily-flags { margin-top: 8px; }
.wv-daily-flags .wv-flag-item { filter: saturate(1.05); }

/* Description + Flags partagent la même zone "content" (ils se stackent) */
.wv-daily-desc   { grid-area: content; margin: 0; color: var(--wv-muted); line-height: 1.5; }

/* ---------- Bouton ---------- */
.wv-daily-btn {
    grid-area: btn;
    justify-self: end;      /* bottom-right */
    align-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none;
    background: var(--primary-color);
    color: #fff;
    transition: background .2s ease, transform .12s ease;
    white-space: nowrap;
}
.wv-daily-btn:hover { background: var(--primary-color-hover); }

/* =====================================================================
    QUICK ACTIONS: Lang dropdown + Phone sheet
===================================================================== */

/* ============ LANG DROPDOWN ============ */
/* Indicateur langue statique (non cliquable) */
.wv-lang-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-inline: 10px;
    padding-block: 6px;
    color: var(--menu-text-primary);
    border: 1px solid #ddd;
    border-radius: 999px;
    background: #f7f7f7;
    line-height: 1;
    user-select: none;
}

/* Icône drapeau (image, pas de bg) */
.wv-lang-flag {
    border-radius: 50%;
    display: block;
}

/* Code langue (FR, EN, AR) */
.wv-lang-code {
    font-size: 12px;
    font-weight: 600;
    opacity: .85;
    text-transform: uppercase;
}

/* Option : version compacte (uniquement le drapeau) */
.wv-lang-indicator.is-compact {
    padding-inline: 6px;
    gap: 0;
}
.wv-lang-indicator.is-compact .wv-lang-code {
    display: none;
}

/* ============ PHONE FAB + SHEET ============ */
.wv-call-fab {
	inline-size: 34px;
	block-size: 34px;
	border-radius: 17px;
	border: 1px solid #ddd;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #0b8a00;
	cursor: pointer;
	transition: transform .1s ease, box-shadow .2s ease, background .2s;
}
.wv-call-fab:hover { background: #f4f4f4; }
.wv-call-fab:active { transform: translateY(1px); }
.wv-call-ico { display: block; }

.wv-phone-sheet {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.25);
    display: none;
    z-index: 1000;
}
.wv-phone-sheet[aria-hidden="false"] { display: block; }

.wv-phone-sheet__panel {
	position: absolute;
	inset-inline: 0;
	inset-block-end: 0;
	background: #fff;
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 -10px 30px rgba(0,0,0,.12);
	max-width: 90%;
	top: 80px;
	height: auto;
	bottom: unset;
	margin: 0 auto;
}

.wv-phone-sheet__close {
    position: absolute;
    inset-inline-end: 8px;
    inset-block-start: 8px;
    width: 28px;
    height: 28px;
    border-radius: 14px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}

.wv-phone-sheet__title {
    font-weight: 700;
    margin: 4px 0 12px;
}

.wv-phone-sheet__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 720px) {
    .wv-lang-menu { min-width: 180px; }
}

/* =====================================================================
    FLAGS (intégration locale)
    - on réutilise tes classes .wv-flags / .wv-flag-item
    - juste des micro-ajustements pour ce bloc
===================================================================== */

.wv-daily-flags.wv-flags {
    /* tailles par défaut compactes pour ce bloc */
    --ff-icon-size: 18px;
    --ff-font-size: 11px;
    grid-area: unset;
}

.wv-daily-flags .wv-flags-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

/* si tu utilises data-flags-mode="icon-text", ça respecte tes règles globales.
   On force juste un léger espace avec le texte au-dessus. */
.wv-daily-flags .wv-flag-item { 
    max-width: 100%;
}

/* Variante ultra-compacte optionnelle (active si tu poses data-flags-size="ultra") */
.wv-daily-flags[data-flags-size="ultra"] .wv-flag-item {
    --ff-icon-size: 16px;
    --ff-font-size: 10px;
}

/* =====================================================================
    Responsive
===================================================================== */
@media (max-width: 1024px) {
    .wv-daily-dish {
        grid-template-columns: 220px 1fr;
    }
}

@media (max-width: 720px) {
    .wv-daily-card { padding: 10px; }
    .wv-daily-dish { grid-template-columns: 1fr; }

    .wv-daily-media .wv-card-img { aspect-ratio: 16 / 9; }

    .wv-daily-body {
        /*grid-template-columns: 1fr auto;
        grid-template-rows: auto auto auto 1fr auto;
        grid-template-areas:
            "kicker price"
            "title  price"
            "content content"
            "content content"
            ".      btn";
        gap: 6px 10px;*/
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: first baseline;
    }
}


/* =====================================================================
    NAV - MENU
===================================================================== */
/* Parent container with horizontal scroll */
/* ===== Rail parents (dans .wv-tabs-wrap) ===== */
.wv-tabs-wrap{
    overflow-x:auto; overflow-y:hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width:none;
    padding: .5rem .25rem;
}
.wv-tabs-wrap::-webkit-scrollbar{ display:none; }

.wv-tabs-list {
	display: flex;
	gap: .5rem;
	padding: 0;
	margin: 0;
	list-style: none;
	white-space: nowrap;
	justify-content: center;
}
.wv-tab-item { position:relative; display:flex; align-items:center; }
.wv-tab-link {
    display:inline-flex; align-items:center; justify-content:center;
    padding:.5rem .9rem; line-height:1; white-space:nowrap;
    border-radius:999px;
    font-weight:600; font-size:.95rem;
    text-decoration:none;
    color: var(--menu-text-primary, #0D3B66);
    background: transparent;
    box-shadow: none;
    transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.header-outer.transparent:not(.sticky) li.wv-tab-item > a.wv-tab-link {
    background: color-mix(in srgb, var(--primary-color, #03224c) 10%, #fff);
    box-shadow: 0 1px 1px rgba(0,0,0,.04), 0 2px 8px rgba(0,0,0,.04);
}

.wv-tab-link:hover{ transform: translateY(-1px); }
.wv-tab-item .wv-tab-link.is-active {
    background: var(--primary-color, #03224c);
    color: var(--button-text-primary, #fff);
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
}

.wv-submenu-toggle {
	margin-left: 0.55rem;
	border: none;
	background: 0 0;
	cursor: pointer;
	border-radius: .4rem;
	color: currentColor;
	font-size: .9rem;
	line-height: 1;
}

/* ===== Panneau flottant (hors wrap) ===== */

.wv-submenu-portal{
    position: fixed;
    background:#fff;
    border-radius:14px;
    border:1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
    animation: wvDrop .12s ease-out;
}

/* petite flèche */
.wv-submenu-portal::before{
    content:"";
    position:absolute;
    top:-8px;
    left: var(--caret-left, 20px);
    border-left:8px solid transparent;
    border-right:8px solid transparent;
    border-bottom:8px solid #fff;
    filter: drop-shadow(0 -1px 0 rgba(0,0,0,.06));
}

@keyframes wvDrop { from { transform: translateY(-4px); opacity:0 } to { transform:none; opacity:1 } }

.wv-submenu-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0;
	padding: .35rem;
	max-height: 60vh;
	overflow: auto;
}

.wv-submenu-list li{ margin:0; }
.wv-submenu-link {
    display:block; padding:.55rem .7rem; border-radius:10px;
    color:var(--menu-text-primary); text-decoration:none; font-weight:550;
}
.wv-submenu-link:hover{
    background: rgba(0,0,0,.05);
}
.wv-submenu-link.is-active {
    background: color-mix(in srgb, var(--primary-color, #03224c) 10%, #fff);
    color:var(--menu-text-on-primary);
}

/* Mobile tweaks */
@media (max-width: 768px){
    .wv-tab-link{ padding:.45rem .75rem; font-size:.92rem; }
}


/* =====================================================================
    SEO block (home)
===================================================================== */
.wv-seo-block {
    display: grid; grid-template-columns: 2fr 1fr; gap: 24px; margin-bottom: 40px; padding: 24px;
    background: #fff; border: var(--wv-border); border-radius: var(--wv-radius); box-shadow: var(--wv-shadow);
}
.wv-seo-content { display: flex; flex-direction: column; gap: 12px; }
.wv-seo-title { font-size: 22px; font-weight: 700; margin: 0; color: #111; }
.wv-seo-desc { font-size: 16px; line-height: 1.6; color: var(--wv-muted); margin: 0; }
.wv-seo-image img { width: 100%; height: auto; border-radius: var(--wv-radius); object-fit: cover; }
@media (max-width: 720px) {
    .wv-seo-block { grid-template-columns: 1fr; text-align: center; }
    .wv-seo-image img { margin: 0 auto; }
    [data-view="list"] .wv-row.has-flags .wv-col-flags {
        margin: 0;                       /* pas de décalage latéral */
        padding-block-start: 12px;
        border-block-start: 1px dashed var(--wv-soft-h);
    }
}

/* =====================================================================
    Contact
===================================================================== */
#contact { padding-bottom: 32px; }
#contact form {
    display: grid; gap: 16px; background: #fff; border: var(--wv-border);
    border-radius: var(--wv-radius); box-shadow: var(--wv-shadow); padding: 24px;
}
#contact input, #contact textarea {
    width: 100%; padding: 12px 14px; border: var(--wv-border); border-radius: 8px; font: inherit; resize: vertical;
    transition: border-color .2s, box-shadow .2s;
}
#contact input:focus, #contact textarea:focus { outline: none; border-color: #111; box-shadow: 0 0 0 2px rgba(0,0,0,.1); }
#contact textarea { min-height: 140px; line-height: 1.5; }
#contact button[type="submit"] {
    background: var(--primary-color); color: #fff; border: none; padding: 12px 20px; border-radius: 999px; font: inherit; cursor: pointer; transition: background .2s; justify-self: start;
}
#contact button[type="submit"]:hover { background: var(--primary-color-hover); }
#contact .g-recaptcha { justify-self: start; }

.success-message {
    margin-top: 5px; padding: 12px 18px; border-radius: 6px; background: #f8fff0;
    border: 1px solid #669f00; color: #4e7900; font-weight: 500; font-size: 15px; text-align: center;
    animation: fadeIn .4s ease-in-out;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

#contact .contact-wrapper { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; margin: 0 auto; }
#contact .contact-wrapper.no-right-side { grid-template-columns: unset; }
#contact .contact-info {
    background: #fff; border: var(--wv-border); border-radius: var(--wv-radius); box-shadow: var(--wv-shadow);
    padding: 24px; font-size: 15px; line-height: 1.5;
}
#error { color: #d00; }
@media (max-width: 720px) { #contact .contact-wrapper { grid-template-columns: 1fr; } }
#contact .wv-sep { border: 0; height: 1px; background: var(--wv-soft); margin: 8px 0 16px; }

#contact .info-list { display: grid; gap: 14px; }
#contact .info-item { display: grid; grid-template-columns: 32px 1fr; column-gap: 12px; align-items: start; }
#contact .info-icon {
    width: 32px; height: 32px; border-radius: 10px; background: var(--primary-color); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 16px; line-height: 1; user-select: none; box-shadow: var(--wv-shadow);
}
#contact .info-label { font-size: 12px; color: var(--wv-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 2px; }
#contact .info-value { font-weight: 600; }
#contact .info-value--phone { font-size: 18px; letter-spacing: .02em; }
#contact .contact-info a { color: inherit; text-decoration: none; }
#contact .contact-info a:hover { text-decoration: underline; }

/* reCAPTCHA visibility */
body:not([data-tab="contact"]) .grecaptcha-badge { opacity: 0; visibility: hidden; pointer-events: none; }
body[data-tab="contact"] .grecaptcha-badge     { opacity: 1; visibility: visible; pointer-events: auto; }

/* Contact map */
.map-container { height: 400px; width: 100%; border-radius: 12px; overflow: hidden; }
#contact .contact-map {
    margin: 0 auto 24px; background: #fff; border: var(--wv-border); border-radius: var(--wv-radius);
    box-shadow: var(--wv-shadow); overflow: hidden;
}
#contact #map { width: 100%; height: 320px; }
#contact .map-actions { display: flex; justify-content: flex-end; gap: 8px; padding: 10px 12px; border-top: var(--wv-border); }
#contact .map-actions a { background: var(--primary-color); color: #fff; padding: 8px 12px; border-radius: 999px; text-decoration: none; }
#contact .map-actions a:hover { background: var(--primary-color-hover); }


/* =====================================================================
    Leaflet marker + popup (de-duped)
===================================================================== */
.animated-dot { position: relative; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; }
.animated-dot[data-color="red"] { --signal-color: red; }
.middle-dot { width: 14px; height: 14px; background-color: var(--signal-color, #4c7be1); border-radius: 50%; z-index: 2; }
.signal, .signal2, .signal3 {
    position: absolute; width: 50px; height: 50px; border-radius: 50%; opacity: 0; animation: ping 3s ease-out infinite;
    background-color: color-mix(in srgb, var(--signal-color, #4c7be1) 30%, transparent);
}
.signal2 { animation-delay: .4s; } .signal3 { animation-delay: .8s; }
@keyframes ping { 0%{ transform: scale(.3); opacity:.7; } 40%{ transform: scale(1.3); opacity:.4; } 80%,100%{ transform: scale(1.8); opacity:0; } }
.leaflet-popup-content { white-space: nowrap !important; }

/* =====================================================================
    Footer / Social
===================================================================== */
.brand-ltr { direction: ltr; unicode-bidi: isolate; }

.wv-footer { padding: 24px 0; color: var(--wv-muted); font-size: 14px; }
.wv-footer-inner { border-top: var(--wv-border); padding-top: 12px; }

.footer-social { margin-bottom: 8px; }
.social-list { display: flex; flex-wrap: wrap; gap: 10px 14px; padding: 0; margin: 0 0 6px; list-style: none; }
.social-item a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; text-decoration: none; color: inherit; border-radius: 8px;
}
.social-item a:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
.social-ico { width: 20px; height: 20px; display: block; }
.contact-info .social-item > a .social-ico { opacity: .6; transition: opacity .2s ease; }
.contact-info .social-item:hover > a .social-ico { opacity: 1; }
.social-item a:hover { color: #111; }
/* L’icône prend la couleur du lien */
.social-ico { fill: currentColor; stroke: currentColor; }

/* Couleurs par réseau – indépendant de la langue */
.colorized a[data-network="facebook"]  { color: #1877F2; }
.colorized a[data-network="instagram"] { color: #E1306C; }
.colorized a[data-network="whatsapp"]  { color: #25D366; }
.colorized a[data-network="tiktok"]    { color: #000000; }
.colorized a[data-network="youtube"]   { color: #FF0000; }
.colorized a[data-network="snapchat"]  { color: #FFFC00; }
.colorized a[data-network]:hover       { filter: saturate(1.2); }

/* =====================================================================
    Food Flags (compact + color coded)
===================================================================== */
.wv-flags { margin-top: 6px; }
.wv-flags-row { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }

.wv-flag-item {
    --ff-bg: rgba(0,0,0,.06);
    --ff-text: currentColor;
    --ff-border: rgba(0,0,0,.12);
    --ff-radius: 999px;
    --ff-pad-y: 1px;
    --ff-pad-x: 6px;
    --ff-icon-size: 18px;
    --ff-font-size: 11px;

    display: inline-flex; align-items: center; gap: 4px;
    color: #000;/*var(--ff-text);*/
    line-height: 1.1; white-space: nowrap; max-width: 100%;
}
.wv-flag-icon { width: var(--ff-icon-size); height: var(--ff-icon-size); flex: 0 0 var(--ff-icon-size); display: inline-block; }
.wv-flag-label { font-size: var(--ff-font-size); overflow: hidden; text-overflow: ellipsis; max-width: 200px; }

.wv-flags-more {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 22px; height: 22px; padding: 0 6px; border: 1px solid currentColor; border-radius: 11px;
    background: transparent; font: inherit; font-size: 11px; cursor: pointer; line-height: 1;
}

/* Modes */
.wv-flags[data-flags-mode="icon"] .wv-flag-item { padding: 0; background: transparent; border: 0; }
.wv-flags[data-flags-mode="icon"] .wv-flag-label { display: none; }
.wv-flags[data-flags-mode="icon-text"] .wv-flag-item,
.wv-flags[data-flags-mode="text"] .wv-flag-item { padding: var(--ff-pad-y) var(--ff-pad-x); background: var(--ff-bg); /*border: 1px solid var(--ff-border);*/border-radius: var(--ff-radius); }
.wv-flags[data-flags-mode="text"] .wv-flag-icon { display: none; }

/* Sizes */
.wv-flags[data-flags-size="compact"] .wv-flag-item {
	--ff-icon-size: 17px;
	--ff-font-size: 11px;
	--ff-pad-y: 2px;
	--ff-pad-x: 6px;
}
.wv-flags[data-flags-size="ultra"]   .wv-flag-item { --ff-icon-size: 16px; --ff-font-size: 10px; --ff-pad-y: 0;   --ff-pad-x: 4px; }
.wv-flags[data-flags-size="ultra"]   .wv-flags-more { min-width: 20px; height: 20px; font-size: 10px; border-radius: 10px; }

/* Theme variants */
.theme-light .wv-flags .wv-flag-item { --ff-text:#222; }
.theme-dark  .wv-flags .wv-flag-item { --ff-text:#f5f5f5; --ff-bg: rgba(255,255,255,.08); --ff-border: rgba(255,255,255,.2); }

/* Color coding */
.wv-flag-item[data-flag="vegan"],
.wv-flag-item[data-flag="vegetarian"]      { --ff-bg:#e6f4ea; --ff-border:#b7dfc4; --ff-text:#1e7d32; }
.wv-flag-item[data-flag="halal"],
.wv-flag-item[data-flag="kosher"]          { --ff-bg:#e0f2f1; --ff-border:#b2dfdb; --ff-text:#00695c; }
.wv-flag-item[data-flag="pork_free"],
.wv-flag-item[data-flag="alcohol_free"]    { --ff-bg:#ede7f6; --ff-border:#d1c4e9; --ff-text:#4527a0; }
.wv-flag-item[data-flag="gluten_free"],
.wv-flag-item[data-flag="lactose_free"]    { --ff-bg:#e8eaf6; --ff-border:#c5cae9; --ff-text:#283593; }
.wv-flag-item[data-flag^="allergen_"]      { --ff-bg:#fff3e0; --ff-border:#ffe0b2; --ff-text:#e65100; }
.wv-flag-item[data-flag="spicy"]           { --ff-bg:#ffebee; --ff-border:#ffcdd2; --ff-text:#b71c1c; }
.wv-flag-item[data-flag="no_modification"] { --ff-bg:#eceff1; --ff-border:#cfd8dc; --ff-text:#455a64; }
.wv-flag-item[data-flag="may_contain"]     { --ff-bg:#fff8e1; --ff-border:#ffecb3; --ff-text:#b28900; }
.wv-flag-item:hover { filter: saturate(1.1); }

/* Badge discret réutilisable */
.wv-badge {
    display: inline-block;
    margin: 5px 0;
    padding: 2px 8px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 12px;
    line-height: 1.6;
}
.wv-badge--muted {
    background: #f1f1f1;
    color: #333;
}

/* Masquer une des vues */
.is-hidden { display: none; }

/* Bouton lien dans liste */
.wv-btn-link {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    text-decoration: none;
}
.wv-btn-link:hover { opacity: .9; }

/* ========================================
    RTL SUPPORT
   ======================================== */

[dir="rtl"] .header-secondary-outer {
	flex-direction: row-reverse;
}

[dir="rtl"] .dm-auth-dropdown-menu {
    inset-inline-start: 0;
    inset-inline-end: unset;
}

[dir="rtl"] .dm-auth-dropdown-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .dm-auth-dropdown-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .wv-drawer.is-open {
    transform: translateX(0);
}