/* Page de vente publique.
   Couleurs pilotées par les variables --pv-* (configurées en admin). */

:root {
    --pv-accent: var(--pv-bouton, #e2001a);
}

.pv-titre, .pv-groupe-titre, .pv-offre-titre, .pv-faq-titre,
.pv-faq-q, .pv-toggle-btn, .pv-bouton {
    font-family: var(--pv-font-titres, var(--pv-font-corps, sans-serif));
}

.pv-page {
    background: var(--pv-fond, #fbf3de);
    color: var(--pv-fond-1, #1a1a1a);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--pv-font-corps, sans-serif);
    font-feature-settings: "kern";
    --pv-fond-1: #1a1a1a;
    --pv-fond-2: rgba(0, 0, 0, .55);
    --pv-card-1: #1a1a1a;
    --pv-card-2: #3a3a3a;
    --pv-card-3: #888;
    --pv-bouton-texte: #ffffff;
    --pv-toggle-texte: #1a1a1a;
}
.pv-page.txt-fond-clair {
    --pv-fond-1: #ffffff;
    --pv-fond-2: rgba(255, 255, 255, .75);
}
.pv-page.txt-card-clair {
    --pv-card-1: #ffffff;
    --pv-card-2: rgba(255, 255, 255, .82);
    --pv-card-3: rgba(255, 255, 255, .55);
}
.pv-page.txt-bouton-clair { --pv-bouton-texte: #ffffff; }
.pv-page.txt-bouton-fonce { --pv-bouton-texte: #1a1a1a; }
.pv-page.txt-toggle-clair { --pv-toggle-texte: #ffffff; }
.pv-page.txt-toggle-fonce { --pv-toggle-texte: #1a1a1a; }

.pv-page .container {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ===== Header / Topbar ===== */
.pv-topbar {
    padding: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}
.pv-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}
.pv-topbar-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.pv-topbar-logo-img {
    max-height: 36px;
    width: auto;
    display: block;
}
.pv-topbar-logo-svg {
    height: 36px;
    display: flex;
    align-items: center;
}
.pv-topbar-logo-svg svg {
    height: 36px;
    width: auto;
    display: block;
}
.pv-topbar-logo-svg svg,
.pv-topbar-logo-svg svg * { fill: currentColor !important; }
.pv-topbar-actions {
    display: flex;
    align-items: center;
}
.pv-compte { color: var(--pv-fond-2); font-size: .85rem; }

/* Bouton "Se connecter" — pilule outlined */
.pv-connexion {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border: 1.5px solid var(--pv-fond-1);
    border-radius: 999px;
    padding: .5rem 1.25rem;
    font-weight: 600;
    font-size: .83rem;
    letter-spacing: .01em;
    color: var(--pv-fond-1);
    text-decoration: none;
    transition: background .18s, color .18s;
}
.pv-connexion:hover {
    background: var(--pv-fond-1);
    color: var(--pv-fond, #fff);
    opacity: 1;
}

/* Menu déroulant « Mon compte » */
.pv-compte-menu { position: relative; }
.pv-compte-bouton {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: transparent;
    border: 1.5px solid var(--pv-fond-1);
    border-radius: 999px;
    color: var(--pv-fond-1);
    font-weight: 600;
    font-size: .83rem;
    padding: .5rem 1.25rem;
    cursor: pointer;
    line-height: 1;
    letter-spacing: .01em;
    transition: background .18s, color .18s;
}
.pv-compte-bouton:hover {
    background: var(--pv-fond-1);
    color: var(--pv-fond, #fff);
}
.pv-compte-chevron { font-size: .65rem; }
.pv-compte-liste {
    position: absolute;
    right: 0;
    top: calc(100% + .4rem);
    min-width: 180px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .13);
    border: 1px solid rgba(0, 0, 0, .07);
    padding: .35rem;
    z-index: 50;
}
.pv-compte-item {
    display: block;
    padding: .5rem .8rem;
    border-radius: 8px;
    color: #1a1a1a;
    font-size: .88rem;
    font-weight: 500;
    text-decoration: none;
}
.pv-compte-item:hover { background: #f4f4f4; }
.pv-compte-item.is-active { background: #f4f4f4; color: var(--pv-accent); }
.pv-compte-sep { margin: .35rem 0; border: 0; border-top: 1px solid #eee; }
.pv-compte-deco { color: #c0392b; }

/* Espace compte */
.compte-page .button,
.compte-page .button.is-primary {
    background: #6b7280;
    color: #fff;
    border: 1px solid #6b7280;
    box-shadow: none;
}
.compte-page .button:hover,
.compte-page .button.is-primary:hover {
    background: #565b64;
    color: #fff;
    border-color: #565b64;
}

.pv-preview-bandeau {
    background: #ffdd57;
    color: #000;
    text-align: center;
    font-size: .82rem;
    padding: .35rem;
    font-weight: 600;
}

/* ===== En-tête ===== */
.pv-entete { padding: 2.5rem 1rem 2.5rem; }
.pv-logo { max-height: 72px; width: auto; margin-bottom: 1.5rem; }

.pv-support-logo {
    display: block;
    margin: 0 auto 1.75rem;
    max-width: 280px;
    max-height: 110px;
}
.pv-support-logo svg { width: 100%; height: auto; max-height: 110px; display: block; }
.pv-support-logo svg, .pv-support-logo svg * { fill: currentColor !important; }
img.pv-support-logo { width: auto; object-fit: contain; }

.pv-titre {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.15;
    color: var(--pv-fond-1);
    margin-bottom: 1rem;
}
.pv-description {
    max-width: 620px;
    margin: 0 auto;
    color: var(--pv-fond-2);
    font-size: 1.05rem;
    line-height: 1.65;
}

/* Mise en gras */
.pv-entete strong, .pv-entete b,
.pv-description strong, .pv-description b { color: var(--pv-fond-1); }
.pv-offre strong, .pv-offre b,
.pv-faq strong, .pv-faq b { color: var(--pv-card-1); }

/* ===== Toggle de groupes — outlined pill avec pilule pleine ===== */
.pv-toggle {
    position: relative;
    display: flex;
    width: fit-content;
    margin: 0 auto 2.5rem;
    padding: .3rem;
    background: transparent;
    border-radius: 999px;
    border: 1.5px solid var(--pv-fond-1, #1a1a1a);
    gap: 0;
    box-shadow: none;
}
/* Pilule pleine glissante positionnée par JS */
.pv-toggle-pilule {
    position: absolute;
    top: .3rem;
    bottom: .3rem;
    left: 0;
    width: 0;
    background: var(--pv-fond-1, #1a1a1a);
    border-radius: 999px;
    box-shadow: none;
    transition:
        transform .3s cubic-bezier(0.34, 1.22, 0.64, 1),
        width .3s cubic-bezier(0.34, 1.22, 0.64, 1);
    pointer-events: none;
    will-change: transform, width;
}
.pv-toggle-btn {
    position: relative;
    z-index: 1;
    border: 0;
    background: transparent;
    color: var(--pv-fond-1, #1a1a1a);
    opacity: .5;
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: .6rem 1.75rem;
    border-radius: 999px;
    cursor: pointer;
    transition: opacity .22s ease, color .22s ease;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.pv-toggle-btn.is-active {
    opacity: 1;
    color: var(--pv-fond, #fff);
    font-weight: 700;
    box-shadow: none;
    background: transparent;
}

/* ===== Groupes / grille de cartes ===== */
.pv-groupe { padding: 0 0 2.5rem; }
.pv-groupe[hidden] { display: none !important; }
.pv-groupe-titre {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -.015em;
    color: var(--pv-fond-1);
    text-align: center;
    margin-bottom: 1.75rem;
}
.pv-offres {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1040px;
    margin: 0 auto;
}

/* Bandeau moyens de paiement */
.pv-paiements {
    text-align: center;
    margin: 2.5rem auto 0;
    max-width: 1040px;
    color: var(--pv-fond-2);
    font-size: .85rem;
}
.pv-paiements img {
    max-width: min(100%, 440px);
    height: auto;
    display: inline-block;
    margin-top: .75rem;
    opacity: .85;
}

/* ===== Accueil (racine /) ===== */
.pv-accueil {
    max-width: 580px;
    margin: 0 auto;
    padding: 1rem 0 3rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.pv-accueil-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--pv-card-bg, #fff);
    color: var(--pv-card-1, #1a1a1a);
    border-radius: 14px;
    padding: 1.1rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: none;
    font-weight: 600;
    transition: border-color .18s, transform .18s cubic-bezier(.2,.8,.4,1);
}
.pv-accueil-card:hover {
    border-color: rgba(0, 0, 0, .22);
    transform: translateY(-2px);
    color: var(--pv-card-1, #1a1a1a);
}
.pv-accueil-titre { font-size: 1.05rem; }
.pv-accueil-card .icon { color: var(--pv-accent, #e2001a); }

/* ===== Tunnel de souscription ===== */
.pv-tunnel .title { color: var(--pv-fond-1); }
.pv-tunnel .subtitle { color: var(--pv-fond-2); }
.pv-tunnel .box {
    background: var(--pv-card-bg, #fff);
    color: var(--pv-card-2);
}
.pv-tunnel .box .title { color: var(--pv-card-1); }
.pv-tunnel .box .subtitle { color: var(--pv-card-3); }
.pv-tunnel .box strong, .pv-tunnel .box b { color: var(--pv-card-1); }
.pv-tunnel .label { color: var(--pv-card-1); }
.pv-tunnel .button.is-primary,
.pv-tunnel .button.is-link {
    background-color: var(--pv-bouton, #3273dc);
    border-color: transparent;
    color: var(--pv-bouton-texte, #fff);
}
.pv-tunnel .button.is-primary:hover,
.pv-tunnel .button.is-link:hover { filter: brightness(.94); }

/* ===== Carte d'offre ===== */
.pv-offre {
    position: relative;
    background: var(--pv-card-bg, #fff);
    color: var(--pv-card-2);
    border-radius: 5px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    border: 1px solid rgba(0, 0, 0, .07);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, .04),
        0 4px 16px rgba(0, 0, 0, .06);
    text-align: center;
    transition:
        box-shadow .28s ease,
        border-color .28s;
}
.pv-offre:hover {
    box-shadow:
        0 2px 4px rgba(0, 0, 0, .05),
        0 16px 48px rgba(0, 0, 0, .12);
    border-color: rgba(0, 0, 0, .1);
}
.pv-page.txt-card-clair .pv-offre { background: var(--pv-card-bg, #1f1f1f); }

.pv-offre-tete { min-height: 3rem; }
.pv-offre-titre {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--pv-card-1);
}
.pv-offre-soustitre {
    font-size: .75rem;
    color: var(--pv-card-3);
    font-weight: 500;
    margin-top: .25rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.pv-offre-image {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 10px;
}

/* Prix — séparé visuellement du reste */
.pv-offre-prix {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--pv-card-1);
    line-height: 1;
    letter-spacing: -.04em;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(0, 0, 0, .08);
}
.pv-page.txt-card-clair .pv-offre-prix { border-top-color: rgba(255, 255, 255, .12); }
.pv-offre-prix-euro { font-size: 1.2rem; font-weight: 700; letter-spacing: 0; vertical-align: .15em; }
.pv-offre-prix-barre {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--pv-card-3);
    text-decoration: line-through;
    margin-right: .4rem;
    letter-spacing: 0;
    vertical-align: middle;
}

/* Étiquette de réduction — rectangle centré sur la carte */
.pv-offre-reduction {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .42rem 1.2rem;
    border-radius: 0;
    background: #e62b4a;
    color: #fff;
    font-size: .85rem;
    font-weight: 900;
    letter-spacing: .02em;
    white-space: nowrap;
    box-shadow: none;
}

/* Badge promotionnel */
.pv-offre-badge {
    position: absolute;
    top: -.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #e62b4a;
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: .35rem 1rem;
    border-radius: 999px;
    box-shadow:
        0 4px 14px rgba(230, 43, 74, .4),
        inset 0 1px 0 rgba(255, 255, 255, .2);
}

/* Description */
.pv-offre-description {
    font-size: .88rem;
    color: var(--pv-card-2);
    line-height: 1.55;
}

/* Bouton */
.pv-bouton {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--pv-bouton, #ffd400);
    color: var(--pv-bouton-texte, #1a1a1a);
    border: 0;
    border-radius: 999px;
    padding: .72rem 2.1rem;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .82rem;
    letter-spacing: .04em;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
    transition: filter .18s, transform .18s cubic-bezier(.2, .8, .4, 1);
}
.pv-bouton:hover {
    filter: brightness(.82);
    transform: translateY(-2px);
}
.pv-bouton:active {
    transform: translateY(0);
}
.pv-bouton[disabled] { opacity: .6; cursor: default; transform: none; }

/* Bénéfices : liste à coches en pastilles */
.pv-benefices {
    list-style: none;
    margin: .1rem 0 0;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    border-top: 1px solid rgba(0, 0, 0, .07);
    padding-top: 1rem;
}
.pv-page.txt-card-clair .pv-benefices { border-top-color: rgba(255, 255, 255, .1); }
.pv-benefices li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .87rem;
    color: var(--pv-card-2);
    line-height: 1.4;
}
.pv-benefices li::before {
    content: "✓";
    flex-shrink: 0;
    width: 1.2rem;
    height: 1.2rem;
    background: var(--pv-accent);
    border-radius: 50%;
    color: #fff;
    font-size: .58rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.pv-offre-zone {
    margin-top: auto;
    align-self: center;
    display: inline-block;
    font-size: .67rem;
    color: var(--pv-card-2);
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 600;
    background: rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 999px;
    padding: .22rem .85rem;
}

/* Mention légale */
.pv-offre-mention {
    margin-top: .5rem;
    font-size: .68rem;
    line-height: 1.4;
    color: var(--pv-card-3);
}
.pv-offre-zone + .pv-offre-mention { margin-top: .35rem; }
.pv-offre > .pv-offre-mention:last-child { margin-top: auto; padding-top: .5rem; }

/* ===== Liens (cards bas de page) ===== */
/* Bloc fond blanc : liens + FAQ + footer */
.pv-fond-bas {
    background: #fff;
    width: 100%;
    margin-top: 3rem;
    padding-top: 1px; /* évite le margin-collapse */
}
.pv-fond-bas .container {
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.pv-liens-groupe {
    max-width: 1040px;
    margin: 0 auto 0;
    padding-bottom: 1.5rem;
}
.pv-liens-titre {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -.015em;
    color: var(--pv-fond-1);
    text-align: center;
    margin-bottom: 2rem;
}
.pv-liens {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
@media (max-width: 900px) {
    .pv-liens { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .pv-liens { grid-template-columns: 1fr; }
}
.pv-liens.is-liste { grid-template-columns: 1fr; }
.pv-liens.is-liste .pv-lien-card { flex-direction: row; align-items: stretch; }
.pv-liens.is-liste .pv-lien-image { width: 200px; height: auto; flex: 0 0 auto; }
.pv-liens.is-liste .pv-lien-corps { display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 540px) {
    .pv-liens.is-liste .pv-lien-card { flex-direction: column; }
    .pv-liens.is-liste .pv-lien-image { width: 100%; height: 140px; }
}

/* Card lien */
.pv-lien-card {
    display: flex;
    flex-direction: column;
    background: var(--pv-card-bg, #fff);
    color: var(--pv-card-2);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
    transition:
        box-shadow .24s ease,
        border-color .24s ease,
        transform .24s cubic-bezier(.2,.8,.4,1);
    text-decoration: none;
}
.pv-lien-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
    border-color: rgba(0, 0, 0, .14);
    transform: translateY(-3px);
}
.pv-page.txt-card-clair .pv-lien-card { background: #1f1f1f; }

/* Image avec zoom au hover */
.pv-lien-image {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.pv-lien-card:hover .pv-lien-image {
    transform: scale(1.04);
}

.pv-lien-corps {
    padding: 1rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.pv-lien-titre {
    font-size: .92rem;
    font-weight: 700;
    color: var(--pv-card-1);
    margin-bottom: .3rem;
    letter-spacing: -.01em;
    line-height: 1.3;
    text-align: center;
}
/* Flèche glissante au hover */
.pv-lien-titre::after {
    content: " →";
    display: inline-block;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .2s ease, transform .2s ease;
}
.pv-lien-card:hover .pv-lien-titre::after {
    opacity: 1;
    transform: translateX(2px);
}
.pv-lien-desc {
    font-size: .82rem;
    color: var(--pv-card-2);
    line-height: 1.45;
    margin-top: auto;
    padding-top: .35rem;
}

/* Carte sans image (CTA) */
.pv-lien-card:not(.a-image) {
    align-items: center;
    justify-content: center;
    min-height: 4.5rem;
    padding: 1.1rem 1.5rem;
}
.pv-lien-card:not(.a-image) .pv-lien-corps {
    padding: 0;
    text-align: center;
}
/* Filet au-dessus du titre uniquement quand il y a une image */
.pv-lien-card.a-image .pv-lien-titre {
    padding-top: .75rem;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.pv-lien-card:not(.a-image) .pv-lien-titre {
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .01em;
}
.pv-lien-card:not(.a-image) .pv-lien-titre::after { display: none; }

/* ===== FAQ (accordéon — style Society : flèche →) ===== */
/* ===== FAQ — style séparateur éditorial ===== */
.pv-faq {
    max-width: 760px;
    margin: 2.5rem auto 0;
    padding-bottom: 2rem;
}
.pv-faq-titre {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -.015em;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
}
.pv-faq-item {
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    box-shadow: none;
    overflow: visible;
}
.pv-faq-item:first-of-type { border-top: 1px solid rgba(0, 0, 0, .1); }
.pv-faq-q {
    cursor: pointer;
    padding: 1.25rem 0;
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    user-select: none;
    transition: opacity .15s;
}
.pv-faq-q:hover { opacity: .7; }
.pv-faq-q::-webkit-details-marker { display: none; }
.pv-faq-q::after {
    content: "+";
    flex-shrink: 0;
    font-size: 1.4rem;
    line-height: 1;
    color: #1a1a1a;
    font-weight: 300;
    transition: transform .25s cubic-bezier(.34,1.22,.64,1);
}
.pv-faq-item[open] .pv-faq-q::after {
    transform: rotate(45deg);
}
.pv-faq-r {
    padding: 0 2rem 1.5rem 0;
    color: rgba(0, 0, 0, .6);
    font-size: .95rem;
    line-height: 1.7;
}

/* ===== Modale de souscription ===== */
.pv-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.pv-modal[hidden] { display: none; }
.pv-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(2px);
}
.pv-modal-box {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 640px;
    height: min(90vh, 760px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .3);
    overflow: hidden;
}
.pv-modal-box iframe { width: 100%; height: 100%; border: 0; display: block; }
.pv-modal-close {
    position: absolute;
    top: .5rem; right: .6rem;
    z-index: 2;
    background: rgba(0, 0, 0, .06);
    border: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    color: #444;
    transition: background .15s;
}
.pv-modal-close:hover { background: rgba(0, 0, 0, .13); }

.pv-vide { padding: 4rem 0; color: var(--pv-fond-2); }

.pv-footer {
    margin-top: auto;
    padding: 3rem 1rem;
    background: #fff;
    color: rgba(0, 0, 0, .5);
    border-top: 1px solid rgba(0, 0, 0, .07);
    font-size: .88rem;
}

@media (max-width: 640px) {
    .pv-entete { padding: 1.75rem 1rem 1.75rem; }
    .pv-titre { font-size: 2rem; }
    .pv-offres { gap: 1.1rem; }
    .pv-offre { padding: 1.65rem 1.4rem; }
}
@media (max-width: 420px) {
    .pv-titre { font-size: 1.75rem; }
}
