/* =========================================================================
   Repair Lab — Boutique (vitrine)
   DA identique à la page devis : Manrope (corps) + Unbounded (titres),
   navy #080928, vert #0EDC54, fond radial vert très léger.
   Tout est scopé sous .rld-boutique pour éviter les conflits avec le thème.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Unbounded:wght@600;700;800;900&display=swap');

.rld-boutique {
    --navy: #080928;
    --navy-soft: #1a1b3a;
    --green: #0EDC54;
    --green-2: #0bc048;
    --green-soft: #d4fcde;
    --green-glow: rgba(14, 220, 84, 0.22);
    --gray-50: #f7f7fb;
    --gray-100: #f0f0f5;
    --gray-200: #e8e8ef;
    --gray-300: #d6d6e0;
    --gray-500: #6b6b7d;
    --purple-soft: #b8a5ff;

    font-family: 'Manrope', -apple-system, sans-serif;
    color: var(--navy);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px 80px;
    /* Subtle radial green halo at the top, identical to devis page. */
    background:
        radial-gradient(ellipse 1200px 600px at 50% -20%, rgba(14, 220, 84, 0.08), transparent 60%);
}
.rld-boutique *, .rld-boutique *::before, .rld-boutique *::after {
    box-sizing: border-box;
}
.rld-boutique h1, .rld-boutique h2, .rld-boutique h3, .rld-boutique h4, .rld-boutique p {
    margin: 0; padding: 0;
}

/* HERO */
.rld-boutique .hero {
    text-align: center;
    padding: 20px 20px 0;
    margin-bottom: 0;
    /* Flex pour pouvoir réordonner badge/titre via order ci-dessous */
    display: flex; flex-direction: column; align-items: center;
}
.rld-boutique .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-soft); color: #0a6e2e;
    padding: 6px 14px; border-radius: 999px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 22px;
    margin-top: 0;
    /* Pill placée AVANT le titre, comme dans zone-intervention.css */
    order: 1;
}
.rld-boutique .hero-title {
    font-family: 'Unbounded', 'Manrope', sans-serif;
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin: 0 auto 22px;
    max-width: 900px;
    order: 2;
}
.rld-boutique .hero-stats { order: 3; }
.rld-boutique .step-label-row { order: 4; }
.rld-boutique .hero-accent {
    display: inline-block; position: relative;
    color: var(--green-2);
    font-style: italic;
    transform: rotate(-1.5deg);
    padding: 0 2px;
}
.rld-boutique .hero-accent::after {
    content: ''; position: absolute;
    left: -4px; right: -4px; bottom: 4%;
    height: 30%; background: var(--green); opacity: 0.35;
    z-index: -1; border-radius: 4px;
    transform: rotate(-1deg);
}
.rld-boutique .hero-neuf { display: inline-block; position: relative; white-space: nowrap; }
.rld-boutique .hero-neuf::after {
    content: ''; position: absolute;
    left: 0; right: 0; bottom: -3px;
    height: 4px; background: var(--green);
    border-radius: 4px;
    transform: scaleX(0); transform-origin: left center;
    animation: rld-bq-underline 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
@keyframes rld-bq-underline { to { transform: scaleX(1); } }
.rld-boutique .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-soft); color: #0a6e2e;
    padding: 6px 14px; border-radius: 999px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 22px;
    margin-top: 0;
}
.rld-boutique .hero-badge-icon {
    width: 6px; height: 6px;
    background: var(--green); border-radius: 50%;
    animation: rld-bq-pulse 1.8s infinite;
}
@keyframes rld-bq-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(14, 220, 84, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(14, 220, 84, 0); }
}

/* Stats */
.rld-boutique .hero-stats {
    display: flex; justify-content: center; flex-wrap: wrap;
    max-width: 720px; margin: 32px auto 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.rld-boutique .hero-stat {
    flex: 1; min-width: 140px; padding: 20px 16px;
    border-right: 1px solid var(--gray-200);
}
.rld-boutique .hero-stat:last-child { border-right: none; }
.rld-boutique .hero-stat b {
    display: block; font-family: 'Unbounded', sans-serif;
    font-size: 30px; font-weight: 800;
    letter-spacing: -0.02em; color: var(--navy); line-height: 1;
}
.rld-boutique .hero-stat span {
    display: block; font-size: 11px; color: var(--gray-500);
    text-transform: uppercase; letter-spacing: 0.14em;
    font-weight: 700; margin-bottom: 8px;
}

/* STEP LABEL */
.rld-boutique .step-label-row { display: flex; justify-content: center; margin: 40px 0 20px; }
.rld-boutique .step-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 15px; font-weight: 700; color: var(--navy);
}
.rld-boutique .step-label-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--green); color: var(--navy);
    font-weight: 900; font-size: 14px;
}

/* TRUST — bandeau navy plein largeur, impact fort */
.rld-boutique .trust-strip {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; margin: 0 0 36px;
    background: var(--navy);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 12px 32px -8px rgba(8, 9, 40, 0.15);
}
.rld-boutique .trust-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 28px 28px;
    display: flex; flex-direction: column; gap: 12px;
    transition: background .2s;
    color: #fff;
    position: relative;
}
/* Dividers verticaux entre blocs (sauf dernier). Couleur subtile pour conserver la cohésion. */
.rld-boutique .trust-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 18%; bottom: 18%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}
.rld-boutique .trust-card:hover {
    transform: none;
    background: rgba(14, 220, 84, 0.04);
}
.rld-boutique .trust-icon {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(14, 220, 84, 0.15);
    color: var(--green);
    border-radius: 12px;
}
.rld-boutique .trust-icon svg { width: 22px; height: 22px; }
.rld-boutique .trust-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px; font-weight: 800;
    color: #fff; letter-spacing: -0.01em; line-height: 1.25;
    margin: 0;
}
.rld-boutique .trust-title strong { color: var(--green); font-weight: 800; }
.rld-boutique .trust-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5; font-weight: 500;
    margin: 0;
}
@media (max-width: 780px) {
    .rld-boutique .trust-strip {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }
    .rld-boutique .trust-card { padding: 22px 22px; }
    .rld-boutique .trust-card:not(:last-child)::after {
        right: 18%; left: 18%; top: auto; bottom: 0;
        width: auto; height: 1px;
    }
}

/* FILTERS — fond blanc + ombre subtile + chips généreuses */
.rld-boutique .filters-wrap {
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: 20px;
    padding: 22px 26px;
    margin-bottom: 28px;
    display: flex; flex-wrap: wrap; gap: 22px; align-items: center;
    box-shadow: 0 4px 20px rgba(8, 9, 40, 0.04);
}
.rld-boutique .fg {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.rld-boutique .fg-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-right: 4px;
    font-family: 'Manrope', sans-serif;
}
.rld-boutique .chip {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--gray-50);
    color: var(--navy);
    border: 1.5px solid var(--gray-200);
    cursor: pointer;
    transition: all .15s;
    line-height: 1.2;
}
.rld-boutique .chip:hover {
    background: #fff;
    border-color: var(--navy);
    transform: translateY(-1px);
}
.rld-boutique .chip.active {
    background: var(--navy);
    color: var(--green);
    border-color: var(--navy);
}

.rld-boutique .sort-wrap { position: relative; margin-left: auto; }
.rld-boutique .sort-btn {
    font-family: 'Manrope', sans-serif;
    font-size: 13px; font-weight: 700;
    padding: 8px 14px; border-radius: 999px;
    background: #fff; color: var(--navy);
    border: 1.5px solid var(--gray-200);
    cursor: pointer; transition: all .15s;
    display: inline-flex; align-items: center; gap: 8px;
}
.rld-boutique .sort-btn:hover { border-color: var(--navy); }
.rld-boutique .sort-btn svg { width: 12px; height: 12px; transition: transform .2s; opacity: .6; }
.rld-boutique .sort-wrap.open .sort-btn svg { transform: rotate(180deg); }
.rld-boutique .sort-menu {
    position: absolute; top: calc(100% + 6px); right: 0;
    min-width: 240px; background: #fff;
    border: 1.5px solid var(--gray-200); border-radius: 12px;
    box-shadow: 0 16px 40px -10px rgba(8, 9, 40, .18);
    padding: 6px; display: none; z-index: 20;
}
.rld-boutique .sort-wrap.open .sort-menu { display: block; }
.rld-boutique .sort-opt {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 10px 12px; border-radius: 8px;
    font-size: 13px; font-weight: 700; color: var(--navy);
    cursor: pointer; background: none; border: none; text-align: left;
    font-family: inherit;
}
.rld-boutique .sort-opt:hover { background: var(--gray-50); }
.rld-boutique .sort-opt.active { background: var(--green-soft); }
.rld-boutique .sort-opt.active::after {
    content: ''; width: 14px; height: 14px;
    background: var(--green); border-radius: 50%;
    box-shadow: inset 0 0 0 3px #fff;
}

.rld-boutique .count-pill { font-size: 13px; color: var(--gray-500); font-weight: 600; }
.rld-boutique .count-pill b {
    color: var(--navy); font-weight: 800;
    font-family: 'Unbounded', sans-serif;
}

/* SECTION TITLE (pattern compact 6.C : pill navy + titre Unbounded + divider gris) */
.rld-boutique .section-title {
    display: flex; align-items: center; gap: 12px;
    margin: 28px 0 20px;
    font-family: 'Unbounded', 'Manrope', sans-serif;
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.rld-boutique .section-title strong {
    color: var(--green-2);
    font-weight: 800;
}
/* Le green-dot devient une vraie pill navy (signature de la DA compact 6.C) */
.rld-boutique .green-dot {
    display: inline-flex; align-items: center;
    background: var(--navy); color: var(--green);
    font-family: 'Manrope', sans-serif;
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.08em;
    padding: 7px 14px;
    border-radius: 999px;
    flex-shrink: 0;
    width: auto; height: auto;
    margin-right: 0; vertical-align: baseline;
}

/* GRID & CARDS */
.rld-boutique .grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px; margin-bottom: 40px;
}
.rld-boutique .card {
    position: relative; background: #fff;
    border: 1.5px solid var(--gray-200); border-radius: 20px;
    display: flex; flex-direction: column;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s, border-color .2s;
    opacity: 0; transform: translateY(12px);
    animation: rld-bq-cardin .5s cubic-bezier(.2, .8, .2, 1) forwards;
    min-width: 0;
}
@keyframes rld-bq-cardin { to { opacity: 1; transform: none; } }
.rld-boutique .card:hover {
    transform: translateY(-4px);
    border-color: var(--green);
    box-shadow: 0 20px 40px -20px rgba(8, 9, 40, 0.18);
}

/* Strip */
.rld-boutique .strip {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 18px; background: var(--navy);
    font-size: 10px; font-weight: 800;
    letter-spacing: 0.14em; text-transform: uppercase;
}
.rld-boutique .strip-left {
    display: flex; align-items: center; gap: 6px;
    color: var(--green);
}
.rld-boutique .strip-left::before {
    content: ''; width: 5px; height: 5px;
    border-radius: 50%; background: currentColor;
}
.rld-boutique .strip-left.recond { color: var(--purple-soft); }
.rld-boutique .strip-right {
    color: rgba(255, 255, 255, 0.5); font-weight: 700;
    font-family: 'Unbounded', sans-serif;
    font-size: 10px; letter-spacing: 0.08em;
}

/* Body */
.rld-boutique .body {
    padding: 20px 20px 18px;
    display: flex; flex-direction: column; gap: 14px; flex: 1;
}
.rld-boutique .head-row {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 10px;
}
.rld-boutique .title-block { min-width: 0; flex: 1; }
.rld-boutique .model {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px; font-weight: 800;
    letter-spacing: -0.03em; line-height: 1.1;
    color: var(--navy); margin: 0;
}
.rld-boutique .submodel {
    font-size: 13px; color: var(--gray-500);
    font-weight: 500; margin-top: 5px;
}
.rld-boutique .submodel b { color: var(--navy); font-weight: 700; }

/* Grade pill */
.rld-boutique .grade {
    font-size: 10px; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 10px; border-radius: 999px;
    white-space: nowrap; line-height: 1;
    display: inline-flex; align-items: center; gap: 5px;
    flex-shrink: 0;
}
.rld-boutique .grade.excellent { background: var(--navy); color: var(--green); }
.rld-boutique .grade.tresbon { background: var(--green-soft); color: #067a2f; }
.rld-boutique .grade.bon { background: rgba(8, 9, 40, 0.06); color: var(--navy); }
.rld-boutique .grade.correct {
    background: transparent; color: var(--gray-500); border: 1px solid var(--gray-200);
}
.rld-boutique .grade.reconditionne { background: rgba(184, 165, 255, 0.2); color: #4a3a8a; }
.rld-boutique .grade .crown { width: 10px; height: 10px; flex-shrink: 0; }

/* Battery */
.rld-boutique .batt {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 14px;
    background: var(--gray-50); border-radius: 12px;
}
.rld-boutique .batt-icon {
    position: relative; width: 30px; height: 18px; flex-shrink: 0;
    border: 1.5px solid var(--navy); border-radius: 3px; padding: 1.5px;
}
.rld-boutique .batt-icon::after {
    content: ''; position: absolute; top: 4px; right: -4.5px;
    width: 3px; height: 8px;
    background: var(--navy); border-radius: 0 2px 2px 0;
}
.rld-boutique .batt-fill {
    height: 100%; border-radius: 1.5px;
    transition: width .4s cubic-bezier(.2, .8, .2, 1);
}
.rld-boutique .batt-info {
    flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px;
}
.rld-boutique .batt-label {
    font-size: 9px; font-weight: 800;
    color: var(--gray-500);
    text-transform: uppercase; letter-spacing: 0.16em; line-height: 1;
}
.rld-boutique .batt-val { display: flex; align-items: baseline; gap: 8px; }
.rld-boutique .batt-val b {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px; font-weight: 800;
    color: var(--navy); letter-spacing: -0.03em; line-height: 1;
}
.rld-boutique .batt-val span { font-size: 11px; color: var(--gray-500); font-weight: 600; }

.rld-boutique .origin {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; color: var(--navy);
}
.rld-boutique .origin svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--green-2); }
.rld-boutique .note {
    font-size: 12px; color: var(--navy);
    font-weight: 500; line-height: 1.5;
    padding: 10px 12px;
    background: rgba(184, 165, 255, 0.08);
    border-radius: 8px;
    border-left: 3px solid var(--purple-soft);
}

/* Foot */
.rld-boutique .foot {
    display: flex; justify-content: space-between;
    align-items: center; gap: 10px;
    padding: 16px 20px; background: #fff;
    border-top: 1.5px solid var(--gray-200);
    margin-top: auto;
}
.rld-boutique .foot-actions {
    display: flex; gap: 8px; align-items: center;
}
.rld-boutique .price-wrap { display: flex; flex-direction: column; gap: 3px; }
.rld-boutique .price-label {
    font-size: 9px; color: var(--gray-500);
    text-transform: uppercase; letter-spacing: 0.16em;
    font-weight: 800; line-height: 1;
}
.rld-boutique .price {
    font-family: 'Unbounded', sans-serif;
    font-size: 26px; font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--navy); line-height: 1; white-space: nowrap;
}
.rld-boutique .price small {
    font-size: 14px; margin-left: 1px;
    color: var(--gray-500); font-weight: 700;
}

.rld-boutique .reserve-btn {
    background: var(--navy); color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 800; font-size: 13px;
    padding: 11px 18px; border-radius: 999px;
    text-decoration: none; border: none; cursor: pointer;
    transition: all .2s;
    white-space: nowrap; line-height: 1;
    display: inline-flex; align-items: center; gap: 6px;
    position: relative; isolation: isolate;
}
.rld-boutique .reserve-btn::before {
    content: ''; position: absolute; inset: 0;
    border-radius: 999px;
    background: var(--green); z-index: -1;
    transform: translate(3px, 3px); transition: transform .2s;
}
.rld-boutique .reserve-btn:hover { transform: translate(1.5px, 1.5px); }
.rld-boutique .reserve-btn:hover::before { transform: translate(0, 0); }
.rld-boutique .reserve-btn svg { width: 13px; height: 13px; transition: transform .2s; }
.rld-boutique .reserve-btn:hover svg { transform: translateX(2px); }

/* === Nouveaux CTA cards : WhatsApp / Téléphone / Détails ===
 * WA et Tel sont des icônes rondes (gain de place dans foot-actions),
 * Détails est un bouton vert plein qui sert de CTA principal pour la page produit. */
.rld-boutique .cta-wa,
.rld-boutique .cta-tel {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff;
    border: 1.5px solid var(--gray-200);
    color: var(--navy);
    text-decoration: none;
    transition: all 0.18s;
    flex-shrink: 0;
}
.rld-boutique .cta-wa svg,
.rld-boutique .cta-tel svg {
    width: 18px; height: 18px;
}
.rld-boutique .cta-wa:hover {
    background: #25D366; /* Vert WhatsApp officiel — connu, pas confondu avec notre vert DA */
    color: #fff;
    border-color: #25D366;
    transform: translateY(-2px);
}
.rld-boutique .cta-tel:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    transform: translateY(-2px);
}
.rld-boutique .cta-details {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--green);
    color: var(--navy);
    font-family: 'Manrope', sans-serif;
    font-weight: 800; font-size: 13px;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.18s;
    box-shadow: 0 4px 12px rgba(14, 220, 84, 0.25);
    white-space: nowrap; line-height: 1;
}
.rld-boutique .cta-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(14, 220, 84, 0.38);
    color: var(--navy);
}
.rld-boutique .cta-details svg {
    width: 12px; height: 12px;
    transition: transform 0.2s;
}
.rld-boutique .cta-details:hover svg { transform: translateX(2px); }

.rld-boutique .photos-btn {
    background: transparent; color: var(--navy);
    font-family: 'Manrope', sans-serif;
    font-weight: 700; font-size: 12px;
    padding: 10px 14px; border-radius: 999px;
    cursor: pointer; border: 1.5px solid var(--gray-200);
    transition: all .15s; white-space: nowrap; line-height: 1;
    display: inline-flex; align-items: center; gap: 6px;
}
.rld-boutique .photos-btn:hover {
    background: var(--navy); color: #fff; border-color: var(--navy);
}
.rld-boutique .photos-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.rld-boutique .photos-count {
    background: var(--green); color: var(--navy);
    font-size: 10px; font-weight: 800;
    border-radius: 999px;
    margin-left: 2px;
    min-width: 18px; height: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 4px;
    font-family: 'Unbounded', sans-serif;
    line-height: 1;
}

/* Empty */
.rld-boutique .empty-card {
    grid-column: 1 / -1;
    padding: 60px 20px; text-align: center;
    color: var(--gray-500); font-size: 15px;
    background: #fff;
    border: 1.5px dashed var(--gray-200);
    border-radius: 20px;
}
.rld-boutique .empty-card b {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 18px; color: var(--navy);
    margin-bottom: 8px; font-weight: 800;
}

/* LIGHTBOX (kept on body, scoped under .rld-lightbox) */
.rld-lightbox {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(8, 9, 40, 0.92);
    display: none; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; transition: opacity .2s;
    backdrop-filter: blur(8px);
    font-family: 'Manrope', sans-serif;
}
.rld-lightbox.open { display: flex; opacity: 1; }
.rld-lightbox * { box-sizing: border-box; }
.rld-lightbox .lb-inner {
    position: relative; max-width: min(1200px, 100%); max-height: 100%;
    display: flex; flex-direction: column; gap: 16px; width: 100%;
}
.rld-lightbox .lb-header {
    display: flex; justify-content: space-between;
    align-items: center; gap: 16px; color: #fff;
}
.rld-lightbox .lb-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px; font-weight: 800;
    letter-spacing: -0.02em; color: #fff; margin: 0;
}
.rld-lightbox .lb-sub { font-size: 12px; color: rgba(255, 255, 255, 0.6); margin-top: 2px; font-weight: 500; }
.rld-lightbox .lb-close {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); border: none; cursor: pointer;
    color: #fff; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.rld-lightbox .lb-close:hover { background: rgba(255, 255, 255, 0.2); }
.rld-lightbox .lb-close svg { width: 18px; height: 18px; }
.rld-lightbox .lb-stage {
    position: relative; min-height: 60vh;
    max-height: calc(100vh - 220px);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.rld-lightbox .lb-img {
    max-width: 100%; max-height: calc(100vh - 220px);
    object-fit: contain; display: block;
    border-radius: 16px;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.5);
}
.rld-lightbox .lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.95); border: none; cursor: pointer;
    color: #080928;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(8, 9, 40, 0.2); z-index: 2;
}
.rld-lightbox .lb-nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.rld-lightbox .lb-nav svg { width: 20px; height: 20px; }
.rld-lightbox .lb-prev { left: 16px; }
.rld-lightbox .lb-next { right: 16px; }
.rld-lightbox .lb-nav[disabled] { opacity: 0; pointer-events: none; }
.rld-lightbox .lb-thumbs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.rld-lightbox .lb-thumb {
    width: 64px; height: 64px; border-radius: 10px;
    border: 2px solid transparent; cursor: pointer; padding: 0;
    overflow: hidden; background: #fff;
}
.rld-lightbox .lb-thumb:hover { border-color: rgba(255, 255, 255, 0.4); }
.rld-lightbox .lb-thumb.active { border-color: #0EDC54; }
.rld-lightbox .lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rld-lightbox .lb-counter {
    position: absolute; top: 16px; left: 16px;
    background: rgba(8, 9, 40, 0.75); color: #fff;
    font-family: 'Unbounded', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
    padding: 6px 10px; border-radius: 999px; z-index: 2;
}

/* Responsive */
@media (max-width: 640px) {
    .rld-boutique { padding: 8px 12px 60px; }
    .rld-boutique .hero { padding: 20px 10px 0; }
    .rld-boutique .hero-stat { padding: 16px 10px; min-width: 0; flex: 1 1 33%; }
    .rld-boutique .hero-stat b { font-size: 22px; }
    .rld-boutique .hero-stat span { font-size: 9px; }
    /* Filtres : layout vertical sur mobile */
    .rld-boutique .filters-wrap {
        padding: 14px 14px 12px;
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
        border-radius: 16px;
    }
    /* Chaque groupe : label sur sa propre ligne (width:100%), chips en dessous */
    .rld-boutique .fg {
        flex-wrap: wrap;
        align-items: center;
        gap: 6px;
    }
    .rld-boutique .fg .fg-label {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
    }
    .rld-boutique .chip {
        font-size: 12px;
        padding: 7px 13px;
    }
    .rld-boutique .sort-wrap {
        margin-left: 0;
        width: 100%;
    }
    .rld-boutique .sort-btn {
        width: 100%;
        justify-content: space-between;
    }
    .rld-boutique .count-pill { width: 100%; text-align: center; order: 99; }
    .rld-boutique .grid { grid-template-columns: 1fr; gap: 12px; }

    /* Card footer fits narrow phones — smaller paddings & buttons,
       allow wrapping if there's still no room. */
    .rld-boutique .foot {
        padding: 12px 14px;
        gap: 8px;
        flex-wrap: wrap;
    }
    .rld-boutique .price { font-size: 22px; }
    .rld-boutique .price small { font-size: 12px; }
    .rld-boutique .photos-btn { font-size: 11px; padding: 8px 11px; }
    .rld-boutique .photos-btn svg { width: 12px; height: 12px; }
    .rld-boutique .reserve-btn { font-size: 12px; padding: 9px 14px; }
    .rld-boutique .reserve-btn svg { width: 12px; height: 12px; }
}

/* Very narrow phones: stack the action buttons on a 2nd row to give the price
   full width. Prevents the "Réserver" button from being clipped on the right. */
@media (max-width: 400px) {
    .rld-boutique .foot {
        flex-direction: column;
        align-items: stretch;
    }
    .rld-boutique .price-wrap { text-align: left; }
    .rld-boutique .foot-actions {
        display: flex; gap: 8px; justify-content: stretch;
    }
    .rld-boutique .foot-actions .photos-btn,
    .rld-boutique .foot-actions .reserve-btn { flex: 1; justify-content: center; }
}

/* ============================================================
   Page produit détail — [repair_lab_produit]
   Réutilise les variables CSS de .rld-boutique (héritage)
   ============================================================ */
.rld-product-page {
    padding-top: 32px;
    padding-bottom: 80px;
}

.rld-product-back {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--gray-500);
    font-size: 13px; font-weight: 700;
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.15s;
}
.rld-product-back:hover { color: var(--navy); }

.rld-product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}
@media (max-width: 880px) {
    .rld-product-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== Galerie ===== */
.rld-product-gallery {
    position: sticky;
    top: 80px;
}
@media (max-width: 880px) {
    .rld-product-gallery { position: static; }
}

.rld-product-main-photo {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.rld-product-main-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.rld-product-sold-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--navy); color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 11px; font-weight: 800;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.10em;
}

.rld-product-no-photo {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    color: var(--gray-500);
    font-size: 13px; font-weight: 600;
}

.rld-product-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 8px;
    margin-top: 12px;
}
.rld-product-thumb {
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    padding: 0;
    transition: all 0.15s;
}
.rld-product-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.rld-product-thumb:hover {
    border-color: var(--green);
    transform: translateY(-2px);
}
.rld-product-thumb.active {
    border-color: var(--green);
    border-width: 2px;
}

/* ===== Infos produit (colonne droite) ===== */
.rld-product-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 16px;
}
.rld-product-tag {
    display: inline-flex; align-items: center;
    font-family: 'Manrope', sans-serif;
    font-size: 11px; font-weight: 800;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.rld-product-tag--brand {
    background: var(--navy);
    color: var(--green);
}
.rld-product-tag--occase {
    background: var(--gray-100);
    color: var(--navy);
}
.rld-product-tag--recond {
    background: rgba(184, 165, 255, 0.18);
    color: #5e3eb6;
}
.rld-product-tag--grade { background: var(--gray-50); color: var(--navy); }
.rld-product-tag--excellent { background: #d6fae0; color: #0a6e2e; }
.rld-product-tag--tresbon  { background: #d6e8fa; color: #1d3a6e; }
.rld-product-tag--bon      { background: #faf3d6; color: #6e5a1d; }
.rld-product-tag--correct  { background: #fae6d6; color: #6e3a1d; }
.rld-product-tag--reconditionne { background: #ecdffa; color: #4d2b87; }

.rld-product-title {
    font-family: 'Unbounded', 'Manrope', sans-serif !important;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 8px;
}
.rld-product-color {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 22px;
}
.rld-product-color strong {
    color: var(--navy);
    font-weight: 700;
}

.rld-product-price-wrap {
    display: flex; align-items: baseline; gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid var(--gray-200);
}
.rld-product-price {
    font-family: 'Unbounded', sans-serif !important;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--navy);
    line-height: 1;
}
.rld-product-price small {
    font-size: 24px;
    color: var(--gray-500);
    font-weight: 700;
}
.rld-product-original-price {
    font-size: 18px;
    color: var(--gray-500);
    text-decoration: line-through;
}
.rld-product-price-tbd {
    font-family: 'Unbounded', sans-serif !important;
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-500);
}

.rld-product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.rld-product-spec {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex; flex-direction: column; gap: 4px;
}
.rld-product-spec-label {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.rld-product-spec-value {
    font-family: 'Unbounded', sans-serif !important;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.rld-product-description {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--navy);
}
.rld-product-description p { margin: 0 0 8px; }
.rld-product-description p:last-child { margin-bottom: 0; }

/* ===== 3 CTA principaux page produit ===== */
.rld-product-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}
@media (max-width: 480px) {
    .rld-product-ctas { grid-template-columns: 1fr; }
}
.rld-product-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: #fff;
    border: 1.5px solid var(--gray-200);
    color: var(--navy);
    font-family: 'Manrope', sans-serif;
    font-weight: 800; font-size: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s;
}
.rld-product-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.rld-product-cta--wa:hover {
    background: #25D366; color: #fff; border-color: #25D366;
    transform: translateY(-2px);
}
.rld-product-cta--tel:hover {
    background: var(--navy); color: #fff; border-color: var(--navy);
    transform: translateY(-2px);
}
.rld-product-cta--form {
    background: var(--green);
    border-color: var(--green);
    color: var(--navy);
    box-shadow: 0 4px 12px rgba(14, 220, 84, 0.25);
}
.rld-product-cta--form:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(14, 220, 84, 0.38);
}

.rld-product-sold-msg {
    background: var(--gray-100);
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    padding: 16px;
    color: var(--gray-500);
    font-weight: 600;
    text-align: center;
    margin-bottom: 18px;
}

.rld-product-ref {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin: 0;
    text-align: right;
}

/* ===== Modal formulaire ===== */
.rld-product-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center; justify-content: center;
    padding: 20px;
}
.rld-product-modal.open { display: flex; }
.rld-product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 9, 40, 0.6);
    backdrop-filter: blur(4px);
}
.rld-product-modal-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    max-width: 480px; width: 100%;
    box-shadow: 0 24px 60px rgba(8, 9, 40, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}
.rld-product-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--gray-100);
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 18px; line-height: 1;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.15s;
}
.rld-product-modal-close:hover {
    background: var(--navy); color: #fff;
}
.rld-product-modal-title {
    font-family: 'Unbounded', sans-serif !important;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin: 0 0 4px;
}
.rld-product-modal-sub {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0 0 18px;
}

.rld-product-form { display: flex; flex-direction: column; gap: 12px; }
.rld-product-form label {
    display: flex; flex-direction: column; gap: 4px;
}
.rld-product-form label span {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
}
.rld-product-form input,
.rld-product-form textarea {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    padding: 10px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--navy);
    transition: all 0.15s;
}
.rld-product-form input:focus,
.rld-product-form textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(14, 220, 84, 0.15);
}
.rld-product-form-submit {
    background: var(--green);
    color: var(--navy);
    border: none;
    border-radius: 999px;
    padding: 14px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    margin-top: 4px;
    transition: all 0.18s;
    box-shadow: 0 4px 12px rgba(14, 220, 84, 0.25);
}
.rld-product-form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(14, 220, 84, 0.38);
}
.rld-product-form-status {
    font-size: 13px;
    margin-top: 8px;
    text-align: center;
}

/* ============================================================
   PANIER d'intention — FAB + Drawer + Items + CTA card
   Design cohérent avec la DA compact 6.C : navy + green,
   Manrope, ombres douces, transitions fluides.
   ============================================================ */

/* Bouton "+ Panier" sur les cards (au niveau des autres CTA) */
.rld-boutique .cta-cart {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--green-soft);
    border: 1.5px solid var(--green-soft);
    color: var(--green-dark, #0a6e2e);
    cursor: pointer;
    transition: all 0.18s;
    flex-shrink: 0;
    padding: 0;
}
.rld-boutique .cta-cart svg { width: 18px; height: 18px; }
.rld-boutique .cta-cart .cart-done-icon { display: none; }
.rld-boutique .cta-cart:hover {
    background: var(--green); color: var(--navy);
    border-color: var(--green);
    transform: translateY(-2px);
}
/* État "ajouté" : fond vert plein avec checkmark */
.rld-boutique .cta-cart.added {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--green);
}
.rld-boutique .cta-cart.added .cart-add-icon { display: none; }
.rld-boutique .cta-cart.added .cart-done-icon { display: block; }
.rld-boutique .cta-cart.added:hover {
    background: var(--navy); /* pas d'inverse au hover, on garde l'état "added" stable */
    transform: translateY(-2px);
}

/* === FAB (Floating Action Button) panier === */
.rl-cart-fab {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--green);
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(8, 9, 40, 0.30), 0 4px 12px rgba(8, 9, 40, 0.15);
    display: inline-flex; align-items: center; justify-content: center;
    z-index: 9998;
    transition: transform 0.2s cubic-bezier(0.32, 0.72, 0, 1);
    animation: rl-cart-fab-in 0.4s cubic-bezier(0.32, 0.72, 0, 1) backwards;
}
.rl-cart-fab[hidden] { display: none; }
.rl-cart-fab:hover {
    transform: translateY(-3px) scale(1.05);
}
.rl-cart-fab svg { width: 26px; height: 26px; }
.rl-cart-fab-count {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--green);
    color: var(--navy);
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 800;
    min-width: 22px; height: 22px;
    border-radius: 999px;
    padding: 0 6px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
    line-height: 1;
}
@keyframes rl-cart-fab-in {
    from { opacity: 0; transform: translateY(20px) scale(0.8); }
    to   { opacity: 1; transform: none; }
}
/* Pulse au moment de l'ajout (joué via classe ajoutée temporairement) */
.rl-cart-fab.rl-cart-fab--pulse { animation: rl-cart-fab-pulse 0.5s cubic-bezier(0.32, 0.72, 0, 1); }
@keyframes rl-cart-fab-pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.15); box-shadow: 0 16px 40px rgba(14, 220, 84, 0.4), 0 4px 12px rgba(8, 9, 40, 0.15); }
    100% { transform: scale(1); }
}

/* === Drawer === */
.rl-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
}
.rl-cart-drawer[hidden] { display: none; }
.rl-cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 9, 40, 0.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.28s ease;
}
.rl-cart-drawer.open .rl-cart-backdrop { opacity: 1; }

.rl-cart-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 100%;
    max-width: 440px;
    background: #fff;
    box-shadow: -8px 0 40px rgba(8, 9, 40, 0.18);
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
    font-family: 'Manrope', sans-serif;
}
.rl-cart-drawer.open .rl-cart-panel { transform: none; }

/* Header drawer */
.rl-cart-head {
    padding: 22px 24px 18px;
    border-bottom: 1.5px solid #e8e8ef;
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 12px;
}
.rl-cart-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #080928;
    letter-spacing: -0.02em;
    margin: 0 0 4px;
}
.rl-cart-sub {
    font-size: 13px;
    color: #646980;
    font-weight: 600;
    margin: 0;
}
.rl-cart-close {
    width: 36px; height: 36px;
    background: #f0f0f5;
    border: none;
    border-radius: 50%;
    color: #080928;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s;
}
.rl-cart-close:hover { background: #080928; color: #fff; }
.rl-cart-close svg { width: 16px; height: 16px; }

/* Body drawer (scrollable) */
.rl-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 14px 18px;
}

/* État vide */
.rl-cart-empty {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: 60px 24px;
    color: #646980;
    gap: 8px;
}
.rl-cart-empty svg { color: #d8d8e3; margin-bottom: 8px; }
.rl-cart-empty b {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px; font-weight: 800;
    color: #080928;
    letter-spacing: -0.02em;
}
.rl-cart-empty span {
    font-size: 13.5px;
    line-height: 1.5;
    max-width: 260px;
}

/* Item dans le drawer */
.rl-cart-item {
    background: #f7f7fb;
    border: 1.5px solid #e8e8ef;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    transition: border-color 0.15s;
}
.rl-cart-item:hover { border-color: #0EDC54; }
.rl-cart-item-info { flex: 1; min-width: 0; }
.rl-cart-item-model {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #080928;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 4px;
}
.rl-cart-item-meta {
    font-size: 12.5px;
    color: #646980;
    font-weight: 600;
    margin-bottom: 4px;
}
.rl-cart-item-meta em { font-style: normal; color: #080928; font-weight: 700; }
.rl-cart-item-ref {
    font-size: 10.5px;
    color: #646980;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    font-family: 'Manrope', sans-serif;
}
.rl-cart-item-right {
    display: flex; flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}
.rl-cart-item-price {
    font-family: 'Unbounded', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #080928;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
}
.rl-cart-item-remove {
    width: 26px; height: 26px;
    background: #fff;
    border: 1.5px solid #e8e8ef;
    border-radius: 50%;
    color: #646980;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.15s;
}
.rl-cart-item-remove:hover { background: #080928; color: #fff; border-color: #080928; }
.rl-cart-item-remove svg { width: 12px; height: 12px; }

/* Footer drawer */
.rl-cart-foot {
    border-top: 1.5px solid #e8e8ef;
    padding: 18px 24px 22px;
    background: #fff;
}
.rl-cart-foot[hidden] { display: none; }
.rl-cart-total-row {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 4px;
}
.rl-cart-total-label {
    font-size: 12px;
    color: #646980;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}
.rl-cart-total-value {
    font-family: 'Unbounded', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #080928;
    letter-spacing: -0.03em;
    line-height: 1;
}
.rl-cart-total-value small {
    font-size: 14px;
    color: #646980;
    font-weight: 700;
}
.rl-cart-disclaimer {
    font-size: 11.5px;
    color: #646980;
    line-height: 1.4;
    margin: 0 0 14px;
    font-style: italic;
}
.rl-cart-actions {
    display: flex; flex-direction: column; gap: 8px;
}
.rl-cart-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.18s;
    cursor: pointer;
}
.rl-cart-cta svg { width: 18px; height: 18px; }
.rl-cart-cta--wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.32);
}
.rl-cart-cta--wa:hover {
    background: #1eb858;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.42);
}
.rl-cart-cta--mail {
    background: #fff;
    border: 1.5px solid #e8e8ef;
    color: #080928;
}
.rl-cart-cta--mail:hover {
    background: #080928;
    border-color: #080928;
    color: #fff;
    transform: translateY(-1px);
}

/* Responsive : drawer plein écran sur mobile */
@media (max-width: 480px) {
    .rl-cart-panel { max-width: 100%; }
    .rl-cart-fab { width: 54px; height: 54px; bottom: 16px; right: 16px; }
    .rl-cart-fab svg { width: 22px; height: 22px; }
}

/* ============================================================
   POPUP RÉSERVATION (remplace l'ancien drawer panier)
   Modal centré avec :
   - Header : tag + titre + sous-titre
   - Body : récap produit + upsells cochables + form + total + submit
   - États : loading, erreur, succès
   ============================================================ */

/* CTA "Réserver" sur la card produit (remplace les boutons Voir + Tel + Cart) */
.rld-boutique .cta-reserve {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green);
    color: var(--navy);
    border: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 13px;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.18s;
    box-shadow: 0 4px 12px rgba(14, 220, 84, 0.25);
    line-height: 1;
    white-space: nowrap;
}
.rld-boutique .cta-reserve svg { width: 16px; height: 16px; }
.rld-boutique .cta-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(14, 220, 84, 0.38);
}

/* Modal (overlay) */
.rl-reserve-modal {
    position: fixed; inset: 0;
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
    font-family: 'Manrope', sans-serif;
}
.rl-reserve-modal.open { opacity: 1; }
.rl-reserve-backdrop {
    position: absolute; inset: 0;
    background: rgba(8, 9, 40, 0.55);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.rl-reserve-card {
    position: relative;
    background: #fff;
    width: 100%; max-width: 520px;
    max-height: 92vh;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(8, 9, 40, 0.30);
    display: flex; flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
}
.rl-reserve-modal.open .rl-reserve-card { transform: none; }

.rl-reserve-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 34px; height: 34px;
    background: #f0f0f5;
    border: none;
    border-radius: 50%;
    color: #080928;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    z-index: 2;
    transition: all 0.15s;
}
.rl-reserve-close:hover { background: #080928; color: #fff; }
.rl-reserve-close svg { width: 16px; height: 16px; }

.rl-reserve-head {
    padding: 30px 32px 22px;
    border-bottom: 1.5px solid #e8e8ef;
    background: #f7f7fb;
}
.rl-reserve-tag {
    display: inline-flex; align-items: center;
    background: #080928; color: #0EDC54;
    font-size: 10.5px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.10em;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.rl-reserve-title {
    font-family: 'Unbounded', 'Manrope', sans-serif !important;
    font-size: 22px;
    font-weight: 800;
    color: #080928;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 6px;
    padding-right: 40px; /* place pour le bouton close */
}
.rl-reserve-sub {
    font-size: 13px;
    color: #646980;
    font-weight: 600;
    margin: 0;
}

.rl-reserve-body {
    padding: 22px 32px 28px;
    overflow-y: auto;
    flex: 1;
}

.rl-reserve-product {
    background: #f7f7fb;
    border: 1.5px solid #e8e8ef;
    border-radius: 14px;
    padding: 12px 16px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.rl-reserve-product-info {
    display: flex; flex-direction: column; gap: 2px;
    min-width: 0; flex: 1;
}
.rl-reserve-product-info strong {
    font-size: 10.5px;
    font-weight: 800;
    color: #646980;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}
.rl-reserve-product-info span {
    font-size: 14px;
    font-weight: 700;
    color: #080928;
}
.rl-reserve-product-price {
    font-family: 'Unbounded', sans-serif !important;
    font-size: 22px;
    font-weight: 800;
    color: #080928;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
}
.rl-reserve-product-price small {
    font-size: 13px;
    color: #646980;
    font-weight: 700;
    font-family: 'Manrope', sans-serif !important;
}

/* === Upsells === */
.rl-reserve-upsells {
    margin-bottom: 20px;
}
.rl-reserve-upsells-loading {
    color: #646980; font-size: 13px; font-style: italic;
    text-align: center; padding: 12px;
}
.rl-reserve-upsells-title {
    font-family: 'Unbounded', sans-serif !important;
    font-size: 13px;
    font-weight: 800;
    color: #080928;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.rl-reserve-upsells-list {
    display: flex; flex-direction: column; gap: 8px;
}
.rl-reserve-upsell {
    display: flex; align-items: center; gap: 12px;
    background: #fff;
    border: 1.5px solid #e8e8ef;
    border-radius: 12px;
    padding: 12px 14px;
    cursor: pointer;
    transition: all 0.15s;
}
.rl-reserve-upsell:hover {
    border-color: #0EDC54;
    background: #f7f7fb;
}
.rl-reserve-upsell input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: #0EDC54;
    cursor: pointer;
    margin: 0;
}
.rl-reserve-upsell-content { flex: 1; min-width: 0; }
.rl-reserve-upsell-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #080928;
    line-height: 1.3;
}
.rl-reserve-upsell-desc {
    font-size: 12px;
    color: #646980;
    margin-top: 2px;
    line-height: 1.4;
}
.rl-reserve-upsell-price {
    font-family: 'Unbounded', sans-serif !important;
    font-size: 14px;
    font-weight: 800;
    color: #0a6e2e;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

/* Quand checké : visuellement validé */
.rl-reserve-upsell:has(input:checked) {
    border-color: #0EDC54;
    background: #d6fae0;
}

/* === Form === */
.rl-reserve-form {
    display: flex; flex-direction: column; gap: 12px;
}
.rl-reserve-form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (max-width: 480px) {
    .rl-reserve-form-row { grid-template-columns: 1fr; }
}
.rl-reserve-form label {
    display: flex; flex-direction: column; gap: 4px;
}
.rl-reserve-form label > span {
    font-size: 11.5px;
    font-weight: 800;
    color: #080928;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.rl-reserve-form input,
.rl-reserve-form textarea {
    background: #f7f7fb;
    border: 1.5px solid #e8e8ef;
    border-radius: 10px;
    padding: 11px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #080928;
    transition: all 0.15s;
}
.rl-reserve-form input:focus,
.rl-reserve-form textarea:focus {
    outline: none;
    background: #fff;
    border-color: #0EDC54;
    box-shadow: 0 0 0 3px rgba(14, 220, 84, 0.15);
}
.rl-reserve-form input.invalid,
.rl-reserve-form textarea.invalid {
    border-color: #c0392b;
    background: #fde7e7;
}
.rl-reserve-form input.valid {
    border-color: #0EDC54;
}

.rl-reserve-form .rl-error,
.rl-reserve-form .rl-phone-hint {
    font-size: 12px;
    color: #c0392b;
    margin-top: 4px;
    font-weight: 600;
}
.rl-reserve-form input.valid + .rl-phone-hint { display: none; }

/* Total */
.rl-reserve-total {
    background: #080928;
    color: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 4px;
}
.rl-reserve-total span {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.10em;
}
.rl-reserve-total strong {
    font-family: 'Unbounded', sans-serif !important;
    font-size: 22px;
    font-weight: 800;
    color: #0EDC54;
    letter-spacing: -0.02em;
    line-height: 1;
}

.rl-reserve-disclaimer {
    font-size: 11.5px;
    color: #646980;
    line-height: 1.45;
    margin: 4px 0 0;
    font-style: italic;
}

.rl-reserve-submit-wrap {
    text-align: center;
    width: 100%;
}
.rl-reserve-submit {
    background: #0EDC54;
    color: #080928;
    border: none;
    border-radius: 999px;
    padding: 14px 36px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.18s;
    box-shadow: 0 6px 18px rgba(14, 220, 84, 0.32);
    margin-top: 6px;
    display: inline-block !important;
    width: auto !important;
}
.rl-reserve-submit:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(14, 220, 84, 0.42);
}
.rl-reserve-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.rl-reserve-status {
    margin-top: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}
.rl-reserve-status--error { color: #c0392b; }
.rl-reserve-status--success { color: #0a6e2e; }

/* État succès */
.rl-reserve-success {
    text-align: center;
    padding: 50px 32px 40px;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.rl-reserve-success-icon {
    width: 80px; height: 80px;
    background: #d6fae0;
    color: #0a6e2e;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 6px;
    animation: rl-success-pop 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}
@keyframes rl-success-pop {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}
.rl-reserve-success h3 {
    font-family: 'Unbounded', sans-serif !important;
    font-size: 22px; font-weight: 800;
    color: #080928; letter-spacing: -0.02em;
    margin: 0;
}
.rl-reserve-success p {
    color: #646980; line-height: 1.55; margin: 0;
    max-width: 320px;
}
.rl-reserve-success-btn {
    background: #080928;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    margin-top: 6px;
    transition: all 0.18s;
}
.rl-reserve-success-btn:hover {
    background: #0EDC54;
    color: #080928;
}

/* Mobile : modal plein écran */
@media (max-width: 600px) {
    .rl-reserve-modal { padding: 0; align-items: stretch; }
    .rl-reserve-card {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    .rl-reserve-head { padding: 22px 22px 18px; padding-top: 60px; }
    .rl-reserve-body { padding: 20px 22px 24px; }
}

/* ============================================================
   ÉTAT "RÉSERVÉ" — affiché côté client quand admin a confirmé
   une réservation pour ce téléphone
   ============================================================ */

/* Card entière en mode "réservé" : fond légèrement grisé, opacity réduite,
   bordure spécifique pour différencier visuellement des produits dispos. */
.rld-boutique .card.card-reserved {
    background: #f7f7fb;
    border-color: #d8d8e3;
    /* Pas d'opacity 0.6 globale qui rendrait la lecture fatigante : on joue
       seulement sur le contraste général et le fond. */
}
.rld-boutique .card.card-reserved .price {
    color: #646980; /* prix grisé pour signifier "indisponible à la vente" */
}
.rld-boutique .card.card-reserved:hover {
    transform: none; /* pas de remontée au hover sur une card non-actionnable */
    border-color: #d8d8e3;
    box-shadow: none;
}

/* Badge "Réservé" dans le strip header (à côté du tag occasion/recond) */
.rld-boutique .strip-reserved-badge {
    display: inline-flex; align-items: center;
    background: #ff8a00;          /* orange chaleureux : pas alarmant comme du rouge,
                                     mais bien plus visible qu'une couleur neutre */
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    padding: 4px 10px;
    border-radius: 999px;
    line-height: 1;
    margin-left: 8px;
    /* Petite pulse subtile pour attirer l'œil sans agresser */
    animation: rld-reserved-pulse 2.5s infinite;
}
@keyframes rld-reserved-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.4); }
    50%      { box-shadow: 0 0 0 5px rgba(255, 138, 0, 0); }
}

/* Bouton "Réservé" (variant désactivé du cta-reserve) */
.rld-boutique .cta-reserve.cta-reserve--reserved {
    background: #d8d8e3;
    color: #646980;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none; /* belt-and-suspenders avec disabled HTML */
}
.rld-boutique .cta-reserve.cta-reserve--reserved:hover {
    transform: none;
    box-shadow: none;
}
.rld-boutique .cta-reserve.cta-reserve--reserved svg {
    width: 14px; height: 14px;
}
