/* ================================================================
   DISTRIBUTOR SHOW — Premium Landing Page v2.0
   Design inspiré : s-hero (landing) + user-card (admin/users)
   Date : 2026-02-20
   ================================================================ */

/* ═══════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow: auto !important;
    height: auto !important;
    overscroll-behavior-y: auto;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg, #f8fafc);
    color: var(--text, #0f172a);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ═══════════════════════════════════════════════
   HERO — Élégant, propre, structuré
   Couleurs dynamiques du distributeur
   ═══════════════════════════════════════════════ */
.ds-hero {
    position: relative;
    z-index: 10;
    overflow: visible;
    padding: 32px 0 0;
}

/* ── Hero entrance animations ── */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ds-hero h1 {
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.ds-hero-company-name {
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.ds-hero-rating {
    animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.ds-hero-sub {
    animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.ds-hero-actions {
    animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.ds-hero-right {
    animation: heroFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.ds-hero-verify {
    animation: heroFadeIn 0.5s ease 0.6s both, neonShimmerOfficialHero 2s ease-in-out 1.1s infinite;
}

.ds-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 330px;
    background: var(--brand-gradient);
    background-size: 200% 200%;
    z-index: 0;
    /* Coupe diagonale en bas à droite */
    clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
    animation: heroGradientShift 8s ease infinite;
}

@keyframes heroGradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Orbe lumineuse — désactivée (artefact visuel) */
.ds-hero-bg::before {
    display: none;
}

/* Pattern petits points — grille subtile */
.ds-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
    pointer-events: none;
}

@keyframes heroOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-40px, 30px) scale(1.15);
        opacity: 0.4;
    }
}

@keyframes heroOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(50px, -30px) scale(1.2);
        opacity: 0.8;
    }
}

.ds-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}

/* ── Hero Left (Texte + badges + CTA) ── */
.ds-hero-left {
    min-width: 0;
}

/* ── Hero Right (Photo mockup alignée à droite) ── */
.ds-hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* ── Barre supérieure hero (badge type + favori) ── */
.ds-hero-top {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto 20px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ds-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    color: var(--brand);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    text-shadow: none;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.ds-hero-top .ds-hero-badge {
    margin-bottom: 0;
}

/* ── Bouton favori (cercle cœur) ── */
.ds-hero-fav-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ds-hero-fav-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.05);
}

.ds-hero-fav-btn.active {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.ds-hero-fav-btn.active:hover {
    background: rgba(239, 68, 68, 0.3);
}

.ds-hero-badge .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--brand);
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* ── Ligne badges (type + vérifié côte à côte) ── */
.ds-hero-badges-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.ds-hero-badges-row .ds-hero-badge {
    margin-bottom: 0;
}

.ds-hero-verify {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
    /* Desktop : positionné en haut à droite du hero */
    position: absolute;
    top: 12px;
    right: 24px;
    z-index: 10;
    width: auto;
    transition: all 0.25s ease;
    cursor: default;
}

.ds-hero-verify:hover {
    transform: translateY(-2px) scale(1.05);
}

.ds-hero-verify i {
    font-size: 0.85em;
}

/* ── Vérifié (vert néon) — identique aux popups carte ── */
.ds-hero-verify.verified {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.4);
    text-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
    animation: neonPulseGreen 2s ease-in-out infinite;
}

/* ── Officiel (fond violet + glow or néon) — comme dans les popups carte ── */
.ds-hero-verify.official {
    background: linear-gradient(135deg, #6d28d9, #7c3aed, #8b5cf6);
    color: #fbbf24;
    border: 1.5px solid rgba(251, 191, 36, 0.35);
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
    box-shadow:
        0 0 6px rgba(139, 92, 246, 0.4),
        0 0 14px rgba(139, 92, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    animation: neonShimmerOfficialHero 2s ease-in-out infinite;
}

.ds-hero-verify.official i {
    color: #fde68a;
    filter: drop-shadow(0 0 3px rgba(251, 191, 36, 0.5));
}

@keyframes neonShimmerOfficialHero {

    0%,
    100% {
        box-shadow:
            0 0 6px rgba(139, 92, 246, 0.4),
            0 0 14px rgba(139, 92, 246, 0.25),
            0 0 4px rgba(251, 191, 36, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    50% {
        box-shadow:
            0 0 12px rgba(139, 92, 246, 0.6),
            0 0 28px rgba(139, 92, 246, 0.35),
            0 0 10px rgba(251, 191, 36, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.18);
    }
}

/* ── À vérifier (rouge néon blink) — identique aux popups carte ── */
.ds-hero-verify.unverified {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
    text-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
    animation: neonBlinkRed 1.5s ease-in-out infinite;
}

.ds-hero-verify.unverified i {
    animation: shakeIcon 4s ease-in-out infinite;
}

@keyframes pulseUnverified {

    0%,
    100% {
        box-shadow:
            0 4px 20px rgba(239, 68, 68, 0.4),
            0 1px 3px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            0 0 0 0 rgba(239, 68, 68, 0.3);
    }

    50% {
        box-shadow:
            0 6px 28px rgba(239, 68, 68, 0.5),
            0 1px 3px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            0 0 0 10px rgba(239, 68, 68, 0);
    }
}

@keyframes shakeIcon {

    0%,
    88%,
    100% {
        transform: rotate(0deg);
    }

    90% {
        transform: rotate(-6deg);
    }

    92% {
        transform: rotate(6deg);
    }

    94% {
        transform: rotate(-4deg);
    }

    96% {
        transform: rotate(2deg);
    }
}

.ds-hero-company {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(99, 102, 241, 0.12);
    color: #c7d2fe;
    border: 1px solid rgba(99, 102, 241, 0.25);
    margin-bottom: 12px;
}

.ds-hero h1 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ds-hero h1 .accent {
    color: #ffffff;
    -webkit-text-fill-color: unset;
    background: none;
}

.ds-hero-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 24px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.ds-hero-sub strong {
    color: #ffffff;
    font-weight: 700;
}

/* ── Nom établissement dans le hero ── */
.ds-hero-company-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.01em;
}

.ds-hero-company-name i {
    font-size: 0.78rem;
    color: #fbbf24;
}

/* ── Stats pills (compactes, propres) ── */
.ds-hero-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.ds-hero-payments {
    margin-bottom: 24px;
    gap: 6px;
}

.ds-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.2s ease;
    text-shadow: none;
}

.ds-pill:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.ds-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 5px currentColor;
}

.ds-pill-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}

.ds-pill-sub {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1;
    white-space: nowrap;
}

/* Distance pill — cachée par défaut */
.ds-pill-distance {
    display: none;
}

.ds-pill-distance.visible {
    display: flex;
}

/* ── Badge distance hero (caché par défaut) ── */
.ds-hero-distance {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    width: fit-content;
    transition: all 0.25s ease;
    animation: fadeUp 0.4s ease both;
}

.ds-hero-distance:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.ds-hero-distance.visible {
    display: inline-flex;
}

.ds-hero-distance-arrow {
    font-size: 0.6em;
    opacity: 0.7;
    animation: distArrowNudge 1.5s ease-in-out infinite;
}

@keyframes distArrowNudge {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.7;
    }

    50% {
        transform: translateX(4px);
        opacity: 1;
    }
}

/* ── Hero CTA buttons ── */
.ds-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ── Rating dans le hero ── */
.ds-hero-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    margin-top: 2px;
    margin-bottom: 8px;
    transition: opacity 0.2s ease;
}

.ds-hero-rating:hover {
    opacity: 0.8;
}

.ds-hero-rating-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.ds-hero-stars {
    display: inline-flex;
    gap: 1px;
    font-size: 0.85rem;
    color: #f59e0b;
}

.ds-hero-rating-arrow {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: -2px;
}

.ds-hero-rating-count {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* ── Carrousel avis supprimé ── */

@media (max-width: 900px) {
    .ds-hero-rating {
        gap: 4px;
        margin-bottom: 4px;
    }

    .ds-hero-rating-value {
        font-size: 0.78rem;
    }

    .ds-hero-stars {
        font-size: 0.68rem;
    }

    .ds-hero-rating-count {
        font-size: 0.7rem;
    }

    .ds-hero-rating-arrow {
        font-size: 0.45rem;
    }
}

.ds-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    white-space: nowrap;
}

.ds-btn-brand {
    background: #fff;
    color: var(--brand);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.ds-btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ds-btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.ds-btn-glass:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateY(-2px);
}

.ds-btn-fav.active {
    background: rgba(239, 68, 68, 0.15) !important;
    border-color: rgba(239, 68, 68, 0.4) !important;
    color: #fca5a5 !important;
}

/* ── Boutons outline (Ajouter aux favoris, Voir sur la carte) ── */
.ds-btn-outline {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 11px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.ds-btn-outline:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.ds-btn-outline.active {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

/* ── Sous-boutons photo (Y aller / Partager) ── */
.ds-hero-photo-cta {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.ds-btn-brand-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    background: var(--brand);
    color: #fff;
    box-shadow: 0 2px 10px rgba(var(--brand-rgb), 0.3);
    transition: all 0.2s ease;
}

.ds-btn-brand-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(var(--brand-rgb), 0.4);
}

.ds-btn-glass-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid var(--border, #e2e8f0);
    cursor: pointer;
    font-family: inherit;
    background: var(--bg-surface, #fff);
    color: var(--text, #0f172a);
    transition: all 0.2s ease;
}

.ds-btn-glass-sm:hover {
    background: var(--bg-hover, #f8fafc);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   PILLS STRIP — Infos clés sous le hero
   ═══════════════════════════════════════════════ */
.ds-info-strip {
    position: relative;
    z-index: 5;
    background: var(--bg, #f8fafc);
    padding: 10px 0 14px;
    margin-top: -8px;
    border-bottom: 1px solid var(--border-light, #e2e8f0);
}

.ds-info-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.ds-info-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-surface, #fff);
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text, #0f172a);
    transition: all 0.2s ease;
}

.ds-info-pill:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.ds-info-pill i {
    font-size: 0.9rem;
}

.ds-info-pill-distance {
    display: none;
}

.ds-info-pill-distance.visible {
    display: inline-flex;
}

/* ═══════════════════════════════════════════════
   TRUST BADGES — Ligne mobile (Favoris + Vérifié)
   ═══════════════════════════════════════════════ */
.ds-trust-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 16px 16px;
}

.ds-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-surface, #fff);
    border: 1.5px solid var(--border-light, #e2e8f0);
    border-radius: 24px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text, #0f172a);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}

.ds-trust-badge:hover {
    border-color: #10b981;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.12);
    transform: translateY(-1px);
}

.ds-trust-badge i {
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════
   PHOTO MOCKUP FRAME — Cadre 3D avec overlap
   ═══════════════════════════════════════════════ */
.ds-hero-card {
    position: relative;
    z-index: 50;
    top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    animation: fadeUpPhoto 0.5s 0.2s ease both;
    text-shadow: none;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ds-hero-card:hover {
    transform: translateY(-6px) rotate(-1deg);
}

.ds-photo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* ── Cadre mockup 3D premium : bordure blanche épaisse, reflet, ombre profonde ── */
.ds-photo-card-header {
    position: relative;
    width: 240px;
    height: 280px;
    border-radius: 24px;
    overflow: visible;
    background: linear-gradient(145deg, #fff 0%, #f0f0f0 100%);
    padding: 12px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.28),
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.ds-photo-card-header:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.32),
        0 18px 50px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.04);
}

.ds-photo-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    border-radius: 14px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ds-photo-card-header:hover img {
    transform: scale(1.04);
}

.ds-photo-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-gradient);
    font-size: 4rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.ds-photo-card-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15), transparent 70%);
}

/* ── Badge emoji type — Premium, coloré, flottant ── */
.ds-photo-emoji-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 3px solid var(--brand, #f97316);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 5;
    box-shadow:
        0 6px 20px rgba(var(--brand-rgb, 249, 115, 22), 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
    animation: emojiBadgePop 0.4s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both,
        emojiBadgeFloat 3s 1s ease-in-out infinite;
}

@keyframes emojiBadgePop {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes emojiBadgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.ds-photo-card-online {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(16, 185, 129, 0.95);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    z-index: 2;
}

.ds-photo-card-online .dot {
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

/* Avatar emoji masqué */
.ds-photo-card-avatar {
    display: none;
}

.ds-photo-card-body {
    text-align: center;
}

.ds-photo-card-type {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text, #0f172a);
    margin-bottom: 4px;
}

.ds-photo-card-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.ds-photo-card-reviews {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted, #94a3b8);
}

/* ═══════════════════════════════════════════════
   CONTENT LAYOUT — Colonne unique, empilé
   ═══════════════════════════════════════════════ */
.ds-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px 120px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.ds-layout>.ds-content-col,
.ds-layout>.ds-sidebar {
    width: 100%;
}

/* ── Section Card (propre, structuré) ── */
.ds-card {
    background: var(--surface, #fff);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 16px;
    transition: box-shadow 0.3s ease;
}

.ds-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}



.ds-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.ds-card-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--brand-rgb), 0.08);
    color: var(--brand);
    border-radius: 10px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ds-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text, #0f172a);
    flex: 1;
}

/* ── Collapsible cards (mobile uniquement) ── */
.ds-collapse-arrow {
    display: none;
}

@media (max-width: 900px) {
    .ds-collapsible .ds-collapse-toggle {
        cursor: pointer;
        user-select: none;
        margin-bottom: 0;
    }

    .ds-collapse-arrow {
        display: block;
        font-size: 0.8rem;
        color: var(--text-muted, #94a3b8);
        transition: transform 0.3s ease;
        margin-left: auto;
    }

    .ds-collapsible.open .ds-collapse-arrow {
        transform: rotate(180deg);
    }

    .ds-collapsible .ds-card-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.25s ease;
        opacity: 0;
    }

    .ds-collapsible.open .ds-card-body {
        max-height: 2000px;
        opacity: 1;
    }

    .ds-collapsible.open .ds-collapse-toggle {
        margin-bottom: 20px;
    }
}

/* ── Collapsible toujours actif (desktop + mobile) ── */
.ds-collapsible-always .ds-collapse-toggle {
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
}

.ds-collapsible-always .ds-collapse-arrow {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted, #94a3b8);
    transition: transform 0.3s ease;
    margin-left: auto;
}

.ds-collapsible-always.open .ds-collapse-arrow {
    transform: rotate(180deg);
}

.ds-collapsible-always .ds-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    opacity: 0;
}

.ds-collapsible-always.open .ds-card-body {
    max-height: 2000px;
    opacity: 1;
}

.ds-collapsible-always.open .ds-collapse-toggle {
    margin-bottom: 20px;
}

/* ── Upload CTA (unverified) ── */
.ds-upload-cta {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.04), rgba(245, 158, 11, 0.04));
    border: 1.5px dashed rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.ds-upload-cta:hover {
    border-color: rgba(239, 68, 68, 0.5);
}

.ds-upload-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.ds-upload-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ef4444;
    flex-shrink: 0;
}

.ds-upload-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.ds-upload-sub {
    font-size: 0.82rem;
    color: var(--text-sub, #64748b);
    line-height: 1.5;
}

.ds-upload-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.ds-upload-btn {
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.ds-upload-btn.primary {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.ds-upload-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
}

.ds-upload-btn.secondary {
    background: var(--bg-soft, #f1f5f9);
    color: var(--text-sub, #64748b);
    border: 1px solid var(--border, #e2e8f0);
}

.ds-upload-btn.secondary:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.ds-upload-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted, #94a3b8);
}

.ds-upload-trust i {
    color: #10b981;
}

.camera-input {
    display: none;
}

/* ── Info text ── */
.ds-info-text {
    color: var(--text-sub, #64748b);
    line-height: 1.8;
    font-size: 0.92rem;
    margin-bottom: 24px;
}

/* ── Amenities grid ── */
.ds-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.ds-amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    background: var(--bg-soft, #f8fafc);
    border: 1px solid var(--border-light, #f1f5f9);
    border-radius: 12px;
    text-align: center;
    transition: all 0.25s ease;
}

.ds-amenity:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--brand-rgb), 0.3);
    box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.08);
}

.ds-amenity i {
    font-size: 1.2rem;
    color: var(--brand);
    opacity: 0.8;
}

.ds-amenity:hover i {
    opacity: 1;
}

.ds-amenity span {
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text);
    line-height: 1.3;
}

/* ── Details grid ── */
.ds-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ds-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--bg-soft, #f8fafc);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.ds-detail:hover {
    background: rgba(var(--brand-rgb), 0.04);
}

.ds-detail i {
    color: var(--brand);
    font-size: 0.85rem;
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.ds-detail-label {
    font-size: 0.7rem;
    color: var(--text-muted, #94a3b8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ds-detail-value {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════
   PRODUITS DISPONIBLES
   ═══════════════════════════════════════════════ */
.ds-card-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    border-radius: 50rem;
    background: rgba(var(--brand-rgb), 0.1);
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.ds-products-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ds-product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light, #f1f5f9);
    transition: background 0.2s ease;
}

.ds-product-item:last-child {
    border-bottom: none;
}

.ds-product-item:hover {
    background: rgba(var(--brand-rgb), 0.03);
}

.ds-product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.ds-product-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text, #0f172a);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ds-product-desc {
    font-size: 0.78rem;
    color: var(--text-muted, #94a3b8);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ds-product-price {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--brand);
    white-space: nowrap;
    padding: 5px 12px;
    background: rgba(var(--brand-rgb), 0.08);
    border-radius: 8px;
    flex-shrink: 0;
}

/* Dark mode */
[data-theme="dark"] .ds-product-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .ds-card-count {
    background: rgba(var(--brand-rgb), 0.15);
}

/* ═══════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════ */
.ds-rating-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 24px;
    background: var(--bg-soft, #f8fafc);
    border-radius: 14px;
    margin-bottom: 20px;
    border: 1px solid var(--border-light, #f1f5f9);
}

.ds-rating-big {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--text);
}

.ds-star-row {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 4px;
}

.ds-rating-count {
    color: var(--text-muted, #94a3b8);
    font-weight: 500;
    font-size: 0.82rem;
}

.ds-btn-review {
    width: 100%;
    padding: 13px;
    background: var(--bg-soft, #f8fafc);
    border: 1.5px solid var(--border, #e2e8f0);
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    margin-bottom: 16px;
}

.ds-btn-review:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: rgba(var(--brand-rgb), 0.04);
}

.ds-review-form {
    display: none;
    background: var(--bg-soft, #f8fafc);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-light, #f1f5f9);
    animation: fadeUp 0.3s ease both;
}

.ds-review-form.active {
    display: block;
}

.ds-review-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.85rem;
}

.ds-review-form textarea {
    width: 100%;
    padding: 12px;
    border: 1.5px solid var(--border, #e2e8f0);
    border-radius: 10px;
    background: var(--bg, #fff);
    color: var(--text);
    font-family: inherit;
    font-size: 0.88rem;
    resize: vertical;
    transition: border-color 0.2s;
}

.ds-review-form textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.1);
}

.ds-star-input {
    display: flex;
    gap: 5px;
    font-size: 1.4rem;
    cursor: pointer;
    margin-bottom: 14px;
}

.ds-star-input i {
    color: #e2e8f0;
    transition: all 0.15s;
}

.ds-star-input i.active {
    color: #f59e0b;
    transform: scale(1.1);
}

/* Review items */
.ds-review-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light, #f1f5f9);
}

.ds-review-item:last-child {
    border: none;
}

.ds-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.ds-reviewer-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(var(--brand-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--brand);
    flex-shrink: 0;
    overflow: hidden;
}

.ds-reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ds-reviewer-name {
    font-weight: 700;
    font-size: 0.88rem;
}

.ds-review-stars {
    color: #f59e0b;
    font-size: 0.68rem;
    margin-top: 2px;
}

.ds-review-date {
    font-size: 0.75rem;
    color: var(--text-muted, #94a3b8);
}

.ds-review-text {
    color: var(--text-sub, #64748b);
    line-height: 1.7;
    font-size: 0.88rem;
    background: var(--bg-soft, #f8fafc);
    padding: 12px 16px;
    border-radius: 10px;
    margin-top: 8px;
    font-style: italic;
}

.ds-empty-reviews {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted, #94a3b8);
    background: var(--bg-soft, #f8fafc);
    border-radius: 12px;
}

.ds-empty-reviews i {
    font-size: 1.8rem;
    margin-bottom: 10px;
    opacity: 0.4;
    display: block;
}

.ds-empty-reviews p {
    font-weight: 500;
}

/* ═══════════════════════════════════════════════
   LOCALISATION DU DISTRIBUTEUR — Section pleine largeur
   ═══════════════════════════════════════════════ */
.ds-location-section {
    position: relative;
    z-index: 3;
    padding: 24px 0 0;
}

.ds-location-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.ds-location-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text, #0f172a);
    margin: 0 0 18px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
}

.ds-location-title i {
    color: var(--brand);
    font-size: 1rem;
    filter: drop-shadow(0 1px 3px rgba(var(--brand-rgb), 0.3));
}

.ds-location-card {
    background: var(--surface, #fff);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 16px;
    overflow: visible;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: box-shadow 0.3s ease;
}

.ds-location-card:hover {
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.06);
}

.ds-location-card .ds-map-container {
    height: 220px;
    position: relative;
    z-index: 1;
    touch-action: pan-y !important;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
}

.ds-location-card .ds-map-container .leaflet-container,
.ds-location-card .ds-map-container .leaflet-container * {
    touch-action: pan-y !important;
}

.ds-location-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    border-top: 1px solid var(--border-light, #f1f5f9);
    position: relative;
    z-index: 2;
}

.ds-location-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    font-size: 0.85rem;
}

.ds-location-distance {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #10b981;
    white-space: nowrap;
}

.ds-location-sep {
    color: var(--text-muted, #94a3b8);
    font-weight: 700;
}

.ds-location-address {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-sub, #64748b);
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ds-location-address i {
    flex-shrink: 0;
    font-size: 0.72rem;
}

.ds-location-cta {
    position: absolute;
    right: 24px;
    top: -22px;
    padding: 13px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 12px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 8px 28px rgba(var(--brand-rgb), 0.35),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ═══════════════════════════════════════════════
   SIDEBAR — Actions (layout vertical)
   ═══════════════════════════════════════════════ */
.ds-sidebar {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 16px;
}


/* Actions card */
.ds-actions-card {
    background: var(--surface, #fff);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 14px;
    overflow: hidden;
}

.ds-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    width: 100%;
    border: none;
    background: transparent;
    color: var(--text, #0f172a);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid var(--border-light, #f1f5f9);
    transition: all 0.2s ease;
    font-family: inherit;
    text-align: left;
}

.ds-action-btn:last-child {
    border-bottom: none;
}

.ds-action-btn:hover {
    background: rgba(var(--brand-rgb), 0.04);
    color: var(--brand);
}

.ds-action-btn i {
    width: 18px;
    text-align: center;
    color: var(--text-muted, #94a3b8);
    transition: color 0.2s;
}

.ds-action-btn:hover i {
    color: var(--brand);
}

.ds-action-btn .action-arrow {
    margin-left: auto;
    font-size: 0.72rem;
    color: var(--text-muted, #94a3b8);
    opacity: 0;
    transition: all 0.2s;
}

.ds-action-btn:hover .action-arrow {
    opacity: 1;
    transform: translateX(2px);
}

.ds-action-btn.danger {
    color: #ef4444;
}

.ds-action-btn.danger i {
    color: #ef4444;
}

.ds-action-btn.danger:hover {
    background: rgba(239, 68, 68, 0.04);
}

/* ═══════════════════════════════════════════════
   MOBILE DOCK (Bottom bar)
   ═══════════════════════════════════════════════ */
.ds-dock {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: rgba(var(--surface-rgb, 255, 255, 255), 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid var(--border, #e2e8f0);
    padding: 6px 12px calc(6px + env(safe-area-inset-bottom));
    flex-direction: column;
    gap: 4px;
}

.ds-dock-distance {
    display: none;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-sub, #64748b);
    font-weight: 600;
}

.ds-dock-distance.visible {
    display: block;
}

.ds-dock-btns {
    display: flex;
    gap: 8px;
    width: 100%;
}

.ds-dock-btns .ds-btn {
    flex: 1;
    padding: 10px;
    justify-content: center;
    font-size: 0.85rem;
}

.ds-dock-btns .ds-btn:first-child {
    flex: 2;
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation photo card — conserve le décalage vertical (top: 150px) */
@keyframes fadeUpPhoto {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.15);
    }
}

/* Scroll reveal */
.ds-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ds-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Flash toast */
.flash-toast {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 99999;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: fadeUp 0.3s ease both;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.flash-toast.success {
    background: rgba(16, 185, 129, 0.95);
    color: #fff;
}

.flash-toast.error {
    background: rgba(239, 68, 68, 0.95);
    color: #fff;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 900px)
   Hero côte-à-côte : texte gauche + photo droite
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {

    /* ── Hero : même layout asymétrique que desktop (gauche large, droite compacte) ── */
    .ds-hero {
        padding: 18px 0 30px;
    }

    /* ── Info strip bien sous le hero — diagonale visible ── */
    .ds-info-strip {
        position: relative;
        z-index: 20;
        margin-top: 16px;
    }

    .ds-hero-inner {
        padding: 0 16px;
        grid-template-columns: 1fr 160px;
        gap: 12px;
        align-items: start;
    }

    .ds-hero-bg {
        height: 270px;
        clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
    }

    /* Badge distance compact mobile */
    .ds-hero-distance {
        padding: 5px 12px;
        font-size: 0.75rem;
        margin-bottom: 8px;
        gap: 6px;
    }

    .ds-hero h1 {
        font-size: 1.45rem;
        line-height: 1.2;
    }

    .ds-hero-company-name {
        padding: 4px 10px;
        font-size: 0.72rem;
        gap: 5px;
        margin-bottom: 6px;
    }

    .ds-hero-company-name i {
        font-size: 0.65rem;
    }

    .ds-hero-sub {
        font-size: 12px;
        margin-bottom: 16px;
        max-width: 220px;
    }

    /* ── Badges pills compacts (Ouvert, Paiement, Distance) ── */
    .ds-hero-stats {
        gap: 5px;
        margin-bottom: 6px;
    }

    .ds-pill {
        padding: 4px 9px;
        gap: 5px;
        border-radius: 6px;
    }

    .ds-pill-dot {
        width: 5px;
        height: 5px;
    }

    .ds-pill-text {
        font-size: 0.65rem;
    }

    .ds-pill-sub {
        font-size: 0.6rem;
    }

    .ds-hero-badges-row .ds-hero-badge {
        padding: 4px 10px;
        font-size: 9px;
        border-radius: 6px;
    }

    .ds-hero-verify {
        /* Mobile : position statique + taille réduite */
        position: static;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: start;
        width: auto;
        margin-bottom: 0;
        padding: 4px 10px;
        font-size: 0.62rem;
        gap: 5px;
    }

    /* Grille mobile : left col1 toutes lignes, badge col2 row1, photo col2 row2 */
    .ds-hero-left {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .ds-hero-right {
        grid-column: 2;
        grid-row: 2;
        justify-content: center;
        margin-top: 10px;
    }

    /* Seul le CTA principal reste visible en mobile */
    .ds-hero-actions {
        flex-wrap: nowrap;
        gap: 8px;
    }

    /* CTA orange gradient avec texte blanc sur mobile */
    .ds-hero-actions .ds-btn.ds-btn-brand {
        background: linear-gradient(135deg, var(--brand), var(--brand-dark, var(--brand)));
        color: #fff;
        padding: 12px 22px;
        font-size: 0.85rem;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(var(--brand-rgb), 0.35);
    }

    /* Masquer les boutons secondaires du hero en mobile */
    .ds-hero-actions .ds-btn-outline {
        display: none;
    }

    /* ── Photo card côté droit ── */
    .ds-hero-right {
        justify-content: flex-end;
        align-items: flex-start;
        padding-top: 10px;
    }

    .ds-hero-card {
        top: auto;
        z-index: 50;
        align-items: center;
        margin-bottom: -20px;
    }

    .ds-photo-card-header {
        width: 155px;
        height: 210px;
        padding: 6px;
        border-radius: 16px;
    }

    .ds-photo-card-body {
        display: none;
    }

    /* ── Info Strip : scroll horizontal ── */
    .ds-info-strip {
        padding: 14px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ds-info-strip-inner {
        gap: 8px;
        flex-wrap: nowrap;
        min-width: max-content;
        padding: 0 16px;
    }

    .ds-info-pill {
        padding: 8px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* ── Localisation ── */
    .ds-location-section {
        padding: 0;
        margin-top: -30px;
    }

    .ds-location-inner {
        padding: 0 16px;
    }

    .ds-location-bar {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        padding-top: 12px;
    }

    .ds-location-bar-left {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ds-location-cta {
        position: static;
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    /* ── Content layout ── */
    .ds-layout {
        padding: 24px 16px 120px;
    }

    .ds-dock {
        display: flex;
    }

    .ds-details {
        grid-template-columns: 1fr;
    }

    .ds-card {
        padding: 20px;
    }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Petit mobile (≤ 480px)
   Layout serré, photo compacte
   ═══════════════════════════════════════════════ */
@media (max-width: 480px) {
    .ds-hero {
        padding: 14px 0 26px;
    }

    .ds-hero-inner {
        padding: 0 12px;
        grid-template-columns: 1fr 135px;
        gap: 8px;
    }

    .ds-hero-bg {
        height: 200px;
    }

    .ds-info-strip {
        margin-top: 12px;
    }

    .ds-hero-distance {
        padding: 4px 10px;
        font-size: 0.7rem;
        margin-bottom: 6px;
    }

    .ds-hero h1 {
        font-size: 1.3rem;
        line-height: 1.18;
    }

    .ds-hero-sub {
        font-size: 11px;
        max-width: 180px;
        line-height: 1.5;
    }

    .ds-pill {
        padding: 3px 7px;
        gap: 4px;
        border-radius: 5px;
    }

    .ds-pill-text {
        font-size: 0.58rem;
    }

    .ds-pill-sub {
        font-size: 0.55rem;
    }

    .ds-hero-badges-row .ds-hero-badge {
        padding: 3px 8px;
        font-size: 8px;
    }

    .ds-hero-verify {
        position: static;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: start;
        padding: 3px 8px;
        font-size: 0.58rem;
        gap: 4px;
    }

    .ds-hero-left {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .ds-hero-right {
        grid-column: 2;
        grid-row: 2;
        justify-content: center;
    }

    .ds-hero-actions .ds-btn {
        padding: 9px 16px;
        font-size: 0.78rem;
        gap: 6px;
    }

    .ds-photo-card-header {
        width: 130px;
        height: 175px;
        padding: 5px;
        border-radius: 14px;
    }

    .ds-photo-emoji-badge {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        top: -6px;
        right: -6px;
        border-radius: 8px;
    }

    .ds-hero-card {
        top: 0;
        margin-bottom: -10px;
    }

    .ds-layout {
        padding: 24px 12px 120px;
    }

    .ds-info-pill {
        padding: 7px 12px;
        font-size: 0.75rem;
        gap: 6px;
    }

    .ds-info-strip {
        padding: 12px 0;
    }

    .ds-info-strip-inner {
        padding: 0 12px;
    }

    .ds-location-inner {
        padding: 0 12px;
    }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Très petit mobile (≤ 360px)
   ═══════════════════════════════════════════════ */
@media (max-width: 360px) {
    .ds-hero-inner {
        grid-template-columns: 1fr 115px;
    }

    .ds-hero h1 {
        font-size: 1.15rem;
    }

    .ds-hero-sub {
        font-size: 10px;
        max-width: 150px;
    }

    .ds-photo-card-header {
        width: 110px;
        height: 150px;
    }

    .ds-hero-actions .ds-btn {
        padding: 8px 14px;
        font-size: 0.72rem;
    }
}

/* ── Desktop only / Mobile only ── */
.desktop-only {
    display: flex;
}

@media (max-width: 900px) {
    .desktop-only {
        display: none !important;
    }
}

@media (min-width: 901px) {
    .mobile-only {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════
   DARK MODE — Bridge Variables & Full Page Support
   ═══════════════════════════════════════════════ */

/* ── Bridge Variables — Redéfinit les variables locales en dark ── */
[data-theme="dark"] body {
    --text: #e2e8f0;
    --text-sub: #94a3b8;
    --text-muted: #64748b;
    --bg: #0b1017;
    --bg-soft: rgba(255, 255, 255, 0.03);
    --surface: #131a27;
    --border: #1e293b;
    --border-light: #1e293b;
}

/* ── Page background ── */
[data-theme="dark"] .ds-hero-bg {
    background: linear-gradient(165deg, #0a0f1a 0%, #111827 35%, var(--brand-dark) 100%);
}

[data-theme="dark"] .ds-photo-card-header {
    background: #1e293b;
}

[data-theme="dark"] .ds-photo-card {
    background: var(--surface, #1e293b);
    border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .ds-card {
    background: var(--surface, #1e293b);
    border-color: var(--border, #334155);
}

[data-theme="dark"] .ds-actions-card {
    background: var(--surface, #1e293b);
    border-color: var(--border, #334155);
}

[data-theme="dark"] .ds-dock {
    background: rgba(15, 23, 42, 0.92);
}

[data-theme="dark"] .ds-info-strip {
    background: var(--bg, #0f172a);
    border-color: var(--border, #334155);
}

[data-theme="dark"] .ds-info-pill {
    background: var(--surface, #1e293b);
    border-color: var(--border, #334155);
    color: var(--text, #e2e8f0);
}

[data-theme="dark"] .ds-trust-badge {
    background: var(--surface, #1e293b);
    border-color: var(--border, #334155);
    color: var(--text, #e2e8f0);
}

/* ── Masquer la scrollbar info strip (esthétique mobile) ── */
.ds-info-strip::-webkit-scrollbar {
    display: none;
}

.ds-info-strip {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

[data-theme="dark"] .ds-btn-glass-sm {
    background: var(--surface, #1e293b);
    border-color: var(--border, #334155);
    color: var(--text, #e2e8f0);
}

[data-theme="dark"] .ds-btn-brand {
    background: rgba(var(--brand-rgb, 59, 130, 246), 0.15);
    color: var(--brand, #3b82f6);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .ds-btn-brand:hover {
    background: rgba(var(--brand-rgb, 59, 130, 246), 0.25);
}

[data-theme="dark"] .ds-dock-btns .ds-btn-brand {
    background: var(--brand, #3b82f6);
    color: #fff;
}

[data-theme="dark"] .ds-location-cta {
    background: var(--surface, #1e293b);
    border-color: var(--border, #334155);
    color: var(--text, #e2e8f0);
}

[data-theme="dark"] .ds-location-card {
    background: var(--surface, #1e293b);
    border-color: var(--border, #334155);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .ds-location-bar {
    border-top-color: var(--border, #334155);
}

[data-theme="dark"] .ds-location-address {
    color: #94a3b8;
}

[data-theme="dark"] .ds-location-title {
    color: var(--text, #e2e8f0);
}

[data-theme="dark"] .claim-modal {
    background: var(--surface, #1e293b);
    border: 1px solid var(--border, #334155);
}

[data-theme="dark"] .claim-modal-title {
    color: var(--text, #e2e8f0);
}

[data-theme="dark"] .claim-field input,
[data-theme="dark"] .claim-field textarea {
    background: rgba(0, 0, 0, 0.2);
    border-color: var(--border, #334155);
    color: var(--text, #e2e8f0);
}

[data-theme="dark"] .claim-recap-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--border, #334155);
}

[data-theme="dark"] .claim-step-num {
    background: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .claim-step-dot.active .claim-step-label {
    color: var(--text, #e2e8f0);
}

[data-theme="dark"] .claim-modal-close {
    background: rgba(255, 255, 255, 0.06);
}

/* ── Card sections (titles, icons, body text) ── */
[data-theme="dark"] .ds-card-title {
    color: #e2e8f0;
}

[data-theme="dark"] .ds-card-icon {
    background: rgba(var(--brand-rgb, 16, 185, 129), 0.12);
}

[data-theme="dark"] .ds-info-text {
    color: #94a3b8;
}

/* ── Details grid ── */
[data-theme="dark"] .ds-detail {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .ds-detail-label {
    color: #64748b;
}

[data-theme="dark"] .ds-detail-value {
    color: #e2e8f0;
}

/* ── Rating hero ── */
[data-theme="dark"] .ds-rating-hero {
    background: rgba(255, 255, 255, 0.03);
    border-color: #1e293b;
}

[data-theme="dark"] .ds-rating-big {
    color: #e2e8f0;
}

[data-theme="dark"] .ds-rating-count {
    color: #94a3b8;
}

/* ── Review button ── */
[data-theme="dark"] .ds-btn-review {
    background: rgba(255, 255, 255, 0.03);
    border-color: #1e293b;
    color: #c8cad8;
}

[data-theme="dark"] .ds-btn-review:hover {
    border-color: var(--brand, #10b981);
    color: var(--brand, #10b981);
}

/* ── Review form ── */
[data-theme="dark"] .ds-review-form {
    background: rgba(255, 255, 255, 0.03);
    border-color: #1e293b;
}

[data-theme="dark"] .ds-review-form label {
    color: #c8cad8;
}

[data-theme="dark"] .ds-review-form textarea {
    background: rgba(0, 0, 0, 0.2);
    border-color: #1e293b;
    color: #e2e8f0;
}

[data-theme="dark"] .ds-star-input i {
    color: #334155;
}

/* ── Review items ── */
[data-theme="dark"] .ds-review-item {
    border-bottom-color: #1e293b;
}

[data-theme="dark"] .ds-reviewer-name {
    color: #e2e8f0;
}

[data-theme="dark"] .ds-review-date {
    color: #64748b;
}

[data-theme="dark"] .ds-review-text {
    background: rgba(255, 255, 255, 0.03);
    color: #a0a4b8;
}

[data-theme="dark"] .ds-empty-reviews {
    background: rgba(255, 255, 255, 0.03);
    color: #64748b;
}

/* ── Action buttons (Partager, Favoris, Signaler) ── */
[data-theme="dark"] .ds-action-btn {
    color: #c8cad8;
    border-bottom-color: #1e293b;
}

[data-theme="dark"] .ds-action-btn:hover {
    background: rgba(var(--brand-rgb, 16, 185, 129), 0.06);
}

[data-theme="dark"] .ds-action-btn i {
    color: #64748b;
}

/* ── Upload CTA ── */
[data-theme="dark"] .ds-upload-cta {
    background: rgba(239, 68, 68, 0.04);
    border-color: rgba(239, 68, 68, 0.2);
}

[data-theme="dark"] .ds-upload-title {
    color: #e2e8f0;
}

[data-theme="dark"] .ds-upload-sub {
    color: #94a3b8;
}

[data-theme="dark"] .ds-upload-btn.secondary {
    background: rgba(255, 255, 255, 0.04);
    border-color: #1e293b;
    color: #94a3b8;
}

/* ── Amenities ── */
[data-theme="dark"] .ds-amenity {
    background: rgba(255, 255, 255, 0.03);
    border-color: #1e293b;
}

/* ── Hero company name (sous le header) ── */
[data-theme="dark"] .ds-hero-company-name {
    color: #e2e8f0;
}

[data-theme="dark"] .ds-hero-sub {
    color: #94a3b8;
}

[data-theme="dark"] .ds-hero-rating-value {
    color: #e2e8f0;
}

[data-theme="dark"] .ds-hero-rating-count {
    color: #94a3b8;
}

/* ── Collapse arrow ── */
[data-theme="dark"] .ds-collapse-arrow {
    color: #64748b;
}

/* ── Footer page ── */
[data-theme="dark"] .ds-page-footer {
    background: #0a0f1a;
    border-top-color: #1e293b;
    color: #64748b;
}

[data-theme="dark"] .ds-page-footer a {
    color: #94a3b8;
}

/* ═══════════════════════════════════════════════
   CLAIM MODAL — Modale de revendication Pro
   Extrait de show.php (Audit 2026-02-22)
   ═══════════════════════════════════════════════ */
.claim-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease both;
    padding: 20px;
}

.claim-modal {
    background: var(--surface, #fff);
    border-radius: var(--radius-lg, 24px);
    padding: 40px 32px 32px;
    max-width: 460px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    animation: fadeUp 0.3s var(--ease, ease) both;
    max-height: 90vh;
    overflow-y: auto;
}

.claim-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-soft, #f1f5f9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-muted, #94a3b8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.15s;
}

.claim-modal-close:hover {
    background: #ef4444;
    color: #fff;
}

.claim-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #ef4444;
    margin: 0 auto 20px;
}

.claim-modal-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text, #0f172a);
    margin-bottom: 4px;
}

.claim-modal-sub {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
    margin-bottom: 24px;
}

.claim-info-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.claim-info-box i {
    font-size: 1.2rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.claim-info-box strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.claim-info-box p {
    font-size: 0.8rem;
    color: var(--text-sub, #64748b);
    margin: 0;
}

.claim-info-box.success {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.2);
}

.claim-info-box.success i {
    color: #10b981;
}

.claim-info-box.warning {
    background: rgba(245, 158, 11, 0.06);
    border-color: rgba(245, 158, 11, 0.2);
}

.claim-info-box.warning i {
    color: #f59e0b;
}

.claim-form-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.claim-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-sub, #64748b);
    margin-bottom: 6px;
}

.claim-field label i {
    margin-right: 4px;
}

.claim-field input,
.claim-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border, #e2e8f0);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--bg-soft, #f8fafc);
    color: var(--text, #0f172a);
    transition: border-color 0.2s;
}

.claim-field input:focus,
.claim-field textarea:focus {
    outline: none;
    border-color: var(--brand, #3b82f6);
    box-shadow: 0 0 0 3px rgba(var(--brand-rgb, 59, 130, 246), 0.1);
}

.claim-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.claim-btn.primary {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.25);
}

.claim-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.35);
}

.claim-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.claim-footer-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted, #94a3b8);
    margin-top: 14px;
}

.claim-footer-note i {
    margin-right: 4px;
}

.claim-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 20px;
    animation: scaleIn 0.4s var(--ease-spring, ease) both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════
   CLAIM WIZARD — 2-Step Flow
   ═══════════════════════════════════════════════ */
.claim-wizard-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 24px;
    padding: 0 20px;
}

.claim-step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}

.claim-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-soft, #f1f5f9);
    color: var(--text-muted, #94a3b8);
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
}

.claim-step-dot.active .claim-step-num {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.2);
    transform: scale(1.1);
}

.claim-step-dot.completed .claim-step-num {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.claim-step-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted, #94a3b8);
    transition: color 0.3s;
}

.claim-step-dot.active .claim-step-label {
    color: var(--text, #0f172a);
}

.claim-step-line {
    flex: 1;
    height: 2px;
    background: var(--border, #e2e8f0);
    margin: 0 12px;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.claim-step-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #10b981, #059669);
    transition: width 0.4s ease;
    border-radius: 1px;
}

.claim-step-line.filled::after {
    width: 100%;
}

/* Wizard Pages */
.claim-wizard-page {
    animation: fadeUp 0.3s ease both;
}

/* Recap sections */
.claim-recap-section {
    margin-bottom: 16px;
}

.claim-recap-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-sub, #64748b);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.claim-recap-title i {
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
}

.claim-recap-card {
    background: var(--bg-soft, #f8fafc);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.claim-recap-card.pro {
    background: rgba(16, 185, 129, 0.04);
    border-color: rgba(16, 185, 129, 0.2);
}

.claim-recap-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.claim-recap-row:last-child {
    border-bottom: none;
}

.claim-recap-key {
    font-size: 0.8rem;
    color: var(--text-muted, #94a3b8);
    font-weight: 500;
}

.claim-recap-val {
    font-size: 0.85rem;
    color: var(--text, #0f172a);
    font-weight: 600;
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}

/* Terms Box */
.claim-terms-box {
    text-align: center;
    margin-bottom: 20px;
}

.claim-terms-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #3b82f6;
    margin: 0 auto 12px;
}

.claim-terms-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text, #0f172a);
    margin-bottom: 12px;
}

.claim-terms-content {
    text-align: left;
}

.claim-terms-content p {
    font-size: 0.82rem;
    color: var(--text-sub, #64748b);
    margin-bottom: 10px;
    line-height: 1.5;
}

.claim-terms-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.claim-terms-content li {
    font-size: 0.82rem;
    color: var(--text, #0f172a);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.claim-terms-content li i {
    color: #10b981;
    font-size: 0.78rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.claim-terms-note {
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.8rem !important;
    color: var(--text-sub, #64748b) !important;
}

.claim-terms-note i {
    color: #3b82f6;
    margin-right: 4px;
}

/* Checkbox */
.claim-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border: 1.5px solid var(--border, #e2e8f0);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 16px;
    background: var(--bg-soft, #f8fafc);
}

.claim-checkbox-label:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.03);
}

.claim-checkbox-label.checked {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.04);
}

.claim-checkbox-label input {
    display: none;
}

.claim-checkbox-custom {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid var(--border, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    margin-top: 1px;
}

.claim-checkbox-custom i {
    font-size: 0.65rem;
    color: transparent;
    transition: all 0.15s;
}

.claim-checkbox-label.checked .claim-checkbox-custom {
    background: #10b981;
    border-color: #10b981;
}

.claim-checkbox-label.checked .claim-checkbox-custom i {
    color: #fff;
}

.claim-checkbox-label span:last-child {
    font-size: 0.82rem;
    color: var(--text-sub, #64748b);
    line-height: 1.4;
}

/* Actions step 2 */
.claim-step2-actions {
    display: flex;
    gap: 10px;
}

.claim-step2-actions .claim-btn {
    flex: 1;
}

.claim-btn.secondary {
    background: var(--bg-soft, #f1f5f9);
    color: var(--text-sub, #64748b);
    border: 1px solid var(--border, #e2e8f0);
}

.claim-btn.secondary:hover {
    background: var(--border, #e2e8f0);
    color: var(--text, #0f172a);
}

/* ═══════════════════════════════════════════════
   CLAIM MODAL — Bottom Sheet Mobile
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .claim-modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .claim-modal {
        border-radius: 20px 20px 0 0;
        max-width: 100%;
        width: 100%;
        max-height: 88vh;
        padding: 16px 20px 28px;
        animation: claimSlideUp 0.35s cubic-bezier(0.32, 0.72, 0, 1) both;
    }

    /* Handle de swipe visuel */
    .claim-modal::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: var(--border, #cbd5e1);
        border-radius: 2px;
        margin: 0 auto 16px;
    }

    .claim-modal-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    .claim-modal-title {
        font-size: 1.1rem;
    }

    .claim-modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
    }
}

@keyframes claimSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0.8;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════
   FICHE ÉTABLISSEMENT PRO — Premium Card v2.0
   Structure : Head (photo+identité) / Foot (infos)
   Desktop : grille 2 colonnes dans le footer
   Mobile  : footer collapsible "En savoir plus"
   ═══════════════════════════════════════════════ */
.ds-etab-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid var(--border, #e2e8f0);
    background: var(--surface, #ffffff);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.ds-etab-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

/* ── Hero Photo (16:9) ── */
.ds-etab-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
}

.ds-etab-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ds-etab-hero:hover .ds-etab-hero-img {
    transform: scale(1.03);
}

.ds-etab-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.ds-etab-badge-official {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(245, 158, 11, 0.4);
}

.ds-etab-badge-official i {
    font-size: 0.65rem;
}

/* ── HEAD : zone identité ── */
.ds-etab-head {
    padding: 0;
}

/* ── Identity Bar : Logo + Nom + Activité ── */
.ds-etab-identity-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px 0;
}

.ds-etab-logo {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--surface, #fff);
    background: var(--bg-soft, #f8fafc);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Le logo chevauche légèrement la photo hero quand il y a une photo */
.ds-etab-logo.ds-etab-logo-overlap {
    margin-top: -20px;
    border: 3px solid var(--surface, #fff);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.ds-etab-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ds-etab-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted, #94a3b8);
    font-size: 1.3rem;
}

.ds-etab-identity {
    flex: 1;
    min-width: 0;
}

.ds-etab-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text, #0f172a);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 4px;
}

.ds-etab-activity {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-sub, #64748b);
}

.ds-etab-activity i {
    font-size: 0.7rem;
    color: #8b5cf6;
}

/* ── Description ── */
.ds-etab-description {
    font-size: 0.88rem;
    color: var(--text-sub, #64748b);
    line-height: 1.7;
    padding: 16px 24px 0;
    margin: 0;
}

/* ── FOOT : zone informations ── */
.ds-etab-foot {
    padding: 24px;
    border-top: 1px solid var(--border, #f1f5f9);
    margin-top: 20px;
}

/* Grille 2 colonnes : Horaires | Contact+Adresse */
.ds-etab-foot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.ds-etab-foot-col {
    min-width: 0;
}

/* ── En savoir plus (mobile only) ── */
.ds-etab-more-btn {
    display: none;
    /* Visible uniquement mobile */
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    margin: 16px 0 0;
    background: var(--bg-soft, #f1f5f9);
    border: 1.5px solid var(--border, #e2e8f0);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--text, #0f172a);
    cursor: pointer;
    transition: all 0.2s ease;
}

.ds-etab-more-btn:hover {
    background: var(--border, #e2e8f0);
}

.ds-etab-more-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.ds-etab-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Section heads */
.ds-etab-section-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text, #0f172a);
}

.ds-etab-section-head>i {
    font-size: 0.85rem;
    color: var(--brand, #3b82f6);
    width: 20px;
    text-align: center;
}

/* ── Status Ouvert/Fermé ── */
.ds-etab-status {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.ds-etab-status.open {
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
}

.ds-etab-status.open i {
    font-size: 0.5rem;
    color: #10b981;
    animation: statusPulse 2s ease-in-out infinite;
}

.ds-etab-status.closed {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
}

.ds-etab-status.closed i {
    font-size: 0.5rem;
    color: #ef4444;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ── Grille Horaires ── */
.ds-etab-hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ds-etab-hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.15s ease;
}

.ds-etab-hours-row:hover {
    background: var(--bg-soft, #f8fafc);
}

.ds-etab-hours-row.today {
    background: rgba(var(--brand-rgb, 59, 130, 246), 0.06);
    font-weight: 700;
}

.ds-etab-hours-row.today .ds-etab-hours-day {
    color: var(--brand, #3b82f6);
    font-weight: 800;
}

.ds-etab-hours-row.day-closed .ds-etab-hours-time {
    color: var(--text-muted, #94a3b8);
    font-style: italic;
}

.ds-etab-hours-day {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text, #0f172a);
    min-width: 90px;
}

.ds-etab-hours-time {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-sub, #475569);
    font-variant-numeric: tabular-nums;
}

/* ── Séparateur service coupé (matin • soir) ── */
.ds-hours-split-sep {
    display: inline-block;
    margin: 0 4px;
    color: var(--text-light, #94a3b8);
    font-weight: 700;
    font-size: 0.7rem;
    vertical-align: middle;
}

/* ── Contacts ── */
.ds-etab-contacts {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ds-etab-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--bg-soft, #f8fafc);
    border: 1px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
    color: var(--text, #0f172a);
    font-size: 0.85rem;
    font-weight: 500;
}

.ds-etab-contact-item:hover {
    background: rgba(var(--brand-rgb, 59, 130, 246), 0.06);
    border-color: rgba(var(--brand-rgb, 59, 130, 246), 0.15);
    transform: translateX(4px);
}

.ds-etab-contact-item>i:first-child {
    font-size: 0.85rem;
    color: var(--brand, #3b82f6);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.ds-etab-contact-item span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ds-etab-ext-icon {
    font-size: 0.65rem !important;
    color: var(--text-muted, #94a3b8) !important;
    margin-left: auto;
}

/* ── Adresse + Itinéraire ── */
.ds-etab-address-block {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: var(--bg-soft, #f8fafc);
    border-radius: 12px;
}

.ds-etab-address-text {
    flex: 1;
    font-size: 0.85rem;
    color: var(--text, #0f172a);
    line-height: 1.5;
}

.ds-etab-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--brand, #3b82f6), var(--brand-dark, #2563eb));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 3px 12px rgba(var(--brand-rgb, 59, 130, 246), 0.3);
    text-decoration: none;
}

.ds-etab-directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--brand-rgb, 59, 130, 246), 0.4);
}

.ds-etab-directions-btn:active {
    transform: translateY(0);
}

/* ── Footer bar (type + date) ── */
.ds-etab-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--border, #f1f5f9);
}

.ds-etab-footer-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted, #94a3b8);
}

.ds-etab-footer-emoji {
    font-size: 1.1rem;
}

.ds-etab-footer-item i {
    font-size: 0.72rem;
}

/* ═══════════════════════════════════════════════
   FICHE ÉTABLISSEMENT — Mobile (collapsible)
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .ds-etab-identity-bar {
        padding: 16px 16px 0;
        gap: 12px;
    }

    .ds-etab-logo {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .ds-etab-logo.ds-etab-logo-overlap {
        margin-top: -16px;
    }

    .ds-etab-name {
        font-size: 1.1rem;
    }

    .ds-etab-description {
        padding: 12px 16px 0;
        font-size: 0.84rem;
    }

    /* Bouton "En savoir plus" visible sur mobile */
    .ds-etab-more-btn {
        display: flex;
        margin: 16px 16px 0;
        width: calc(100% - 32px);
    }

    /* Footer collapsible : caché par défaut sur mobile */
    .ds-etab-foot {
        max-height: 0;
        overflow: hidden;
        padding: 0 16px;
        margin-top: 0;
        border-top: none;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease,
            padding 0.3s ease,
            margin 0.3s ease;
    }

    .ds-etab-foot.expanded {
        max-height: 1200px;
        opacity: 1;
        padding: 20px 16px;
        margin-top: 0;
        border-top: 1px solid var(--border, #f1f5f9);
    }

    /* Grille -> colonne unique sur mobile */
    .ds-etab-foot-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ds-etab-address-block {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .ds-etab-directions-btn {
        justify-content: center;
        width: 100%;
    }

    .ds-etab-footer {
        flex-wrap: wrap;
        gap: 10px;
    }

    .ds-etab-hours-day {
        min-width: 70px;
    }
}

/* ── Dark mode ── */
[data-theme="dark"] .ds-etab-card {
    background: var(--surface, #1e293b);
    border-color: var(--border, #334155);
}

[data-theme="dark"] .ds-etab-hero-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

[data-theme="dark"] .ds-etab-logo {
    border-color: var(--border, #334155);
    background: var(--bg, #0f172a);
}

[data-theme="dark"] .ds-etab-logo.ds-etab-logo-overlap {
    border-color: var(--surface, #1e293b);
}

[data-theme="dark"] .ds-etab-description {
    color: var(--text-sub, #94a3b8);
}

[data-theme="dark"] .ds-etab-foot {
    border-color: var(--border, #334155);
}

[data-theme="dark"] .ds-etab-hours-row:hover {
    background: rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .ds-etab-hours-row.today {
    background: rgba(var(--brand-rgb, 59, 130, 246), 0.1);
}

[data-theme="dark"] .ds-etab-contact-item {
    background: rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .ds-etab-contact-item:hover {
    background: rgba(var(--brand-rgb, 59, 130, 246), 0.1);
    border-color: rgba(var(--brand-rgb, 59, 130, 246), 0.2);
}

[data-theme="dark"] .ds-etab-address-block {
    background: rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .ds-etab-footer {
    border-color: var(--border, #334155);
}

[data-theme="dark"] .ds-etab-more-btn {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border, #334155);
    color: var(--text, #e2e8f0);
}

/* ═══════════════════════════════════════════════
   PREMIUM UX ENHANCEMENTS — SaaS 2026
   ═══════════════════════════════════════════════ */

/* ── Scroll reveal : sections apparaissent en douceur ── */
@keyframes sectionReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ds-location-section,
.ds-layout>.ds-content-col>.ds-card,
.ds-layout>.ds-sidebar>.ds-card {
    opacity: 0;
    animation: sectionReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ds-location-section {
    animation-delay: 0.1s;
}

.ds-layout>.ds-content-col>.ds-card:nth-child(1) {
    animation-delay: 0.15s;
}

.ds-layout>.ds-content-col>.ds-card:nth-child(2) {
    animation-delay: 0.25s;
}

.ds-layout>.ds-content-col>.ds-card:nth-child(3) {
    animation-delay: 0.35s;
}

.ds-layout>.ds-sidebar>.ds-card:nth-child(1) {
    animation-delay: 0.2s;
}

.ds-layout>.ds-sidebar>.ds-card:nth-child(2) {
    animation-delay: 0.3s;
}

/* ── Cards — Hover lift premium ── */
.ds-card {
    transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.3s ease;
}

.ds-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
    border-color: rgba(var(--brand-rgb), 0.12);
}

/* ── Bouton favori — pulse au hover ── */
.ds-btn-outline:hover i.fa-heart {
    animation: heartPulse 0.4s ease;
}

@keyframes heartPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

/* ── "Disponible 24/7" — dot pulsant vert ── */
.ds-hero-sub::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    animation: availDot 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

@keyframes availDot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
    }
}

/* ── Section Localisation — barre premium ── */
.ds-location-bar {
    transition: box-shadow 0.3s ease;
}

.ds-location-bar:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.ds-location-cta {
    transition: all 0.3s ease !important;
}

.ds-location-cta:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.3) !important;
}



/* ── Rating stars — glow subtil ── */
.ds-hero-stars i.fas {
    filter: drop-shadow(0 0 3px rgba(245, 158, 11, 0.4));
}

/* ── Respect prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ============================================
   PRO OPTION BADGES - Affiches sur le hero
   ============================================ */
.ds-pro-badges {
    position: absolute;
    top: 42px;
    right: 24px;
    z-index: 9;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
    max-width: 420px;
    animation: heroFadeIn 0.6s ease 0.8s both;
}

.ds-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
}

.ds-pro-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px) scale(1.03);
}

.ds-pro-badge i {
    font-size: 0.7rem;
    color: var(--badge-color, #fff);
    filter: drop-shadow(0 0 3px var(--badge-color));
}

/* Mobile: badges sous le hero verify */
@media (max-width: 900px) {
    .ds-pro-badges {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        max-width: none;
        margin: -8px 16px 12px;
    }

    .ds-pro-badge {
        font-size: 0.68rem;
        padding: 3px 10px;
    }
}

/* Dark mode */
[data-theme="dark"] .ds-pro-badge {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .ds-pro-badge:hover {
    background: rgba(255, 255, 255, 0.14);
}
