/* ═══════════════════════════════════════════════════
   Dioulabi Marketplace — Styles
   Version 1.0.0 (v2.8.0 theme)
   Chargé uniquement si la marketplace est activée.
═══════════════════════════════════════════════════ */

:root {
    --mp-card-radius: 14px;
    --mp-card-shadow: 0 2px 8px rgba(0,0,0,0.06);
    --mp-card-shadow-hover: 0 6px 20px rgba(0,0,0,0.12);
}

/* ─── Swimlane homepage ──────────────────────────── */
.dlb-vendors-swimlane {
    padding: 28px 0;
    background: linear-gradient(180deg, #fff 0%, #F8FAF9 100%);
}
.dlb-vendors-swimlane .dlb-vs-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 12px;
    flex-wrap: wrap;
}
.dlb-vendors-swimlane .dlb-vs-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 1.2em;
}
.dlb-vs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
@media (max-width: 900px) {
    .dlb-vs-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 10px;
    }
}
@media (max-width: 600px) {
    .dlb-vs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* ─── Vendor card (swimlane home) ────────────────── */
.dlb-vendor-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--divider, #e5e7eb);
    border-radius: var(--mp-card-radius);
    text-decoration: none;
    color: var(--text-main);
    box-shadow: var(--mp-card-shadow);
    transition: transform .15s, box-shadow .15s, border-color .15s;
}
.dlb-vendor-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--mp-card-shadow-hover);
    border-color: var(--primary, #32B2A0);
}
.dlb-vendor-card-logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--primary-light, #E6F7F4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dlb-vendor-card-logo img,
.dlb-vendor-card-logo .dlb-vendor-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dlb-vendor-logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary, #32B2A0);
    background: var(--primary-light, #E6F7F4);
}
.dlb-vendor-card-body { flex: 1; min-width: 0; }
.dlb-vendor-card-name {
    font-weight: 700;
    font-size: .92rem;
    line-height: 1.2;
    color: var(--text-main, #1A2A2E);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dlb-vendor-card-city,
.dlb-vendor-card-meta {
    font-size: .76rem;
    color: var(--text-sub, #6b7280);
    line-height: 1.3;
}

/* ─── Product page: "Vendu par X" ────────────────── */
.dlb-product-vendor {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--primary-light, #E6F7F4);
    border: 1px solid rgba(50, 178, 160, 0.2);
    border-radius: 12px;
    margin: 16px 0;
}
.dlb-pv-logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dlb-pv-logo img { width: 100%; height: 100%; object-fit: cover; }
.dlb-pv-body { flex: 1; min-width: 0; }
.dlb-pv-label {
    font-size: .68rem;
    color: var(--text-sub, #6b7280);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    margin-bottom: 2px;
}
.dlb-pv-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--primary-dark, #228777);
    text-decoration: none;
}
.dlb-pv-name:hover { text-decoration: underline; }
.dlb-pv-city {
    font-size: .76rem;
    color: var(--text-sub, #6b7280);
    margin-top: 2px;
}
.dlb-pv-whatsapp {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4);
    transition: transform .15s;
}
.dlb-pv-whatsapp:hover { transform: scale(1.08); color: #fff; }

/* ─── Category page: vendor section ──────────────── */
.dlb-cat-vendors {
    margin: 20px 0;
    padding: 16px;
    background: #FAFBFC;
    border-radius: 12px;
    border-left: 3px solid var(--primary, #32B2A0);
}
.dlb-cv-head { margin-bottom: 12px; }
.dlb-cv-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-main);
}
.dlb-cv-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
}
.dlb-cv-card {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px;
    width: 120px;
    background: #fff;
    border: 1px solid var(--divider);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-main);
    transition: border-color .15s, transform .15s;
}
.dlb-cv-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
.dlb-cv-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-light);
    display: flex; align-items: center; justify-content: center;
}
.dlb-cv-logo img { width: 100%; height: 100%; object-fit: cover; }
.dlb-cv-name {
    font-size: .76rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    color: var(--text-main);
}

/* ═══════════════════════════════════════════════════
   PROFIL VENDEUR /vendeur/{slug}/
═══════════════════════════════════════════════════ */
.dlb-vendor-hero {
    position: relative;
    padding: 32px 0 40px;
    background: linear-gradient(135deg, var(--primary-light, #E6F7F4) 0%, #fff 100%);
    border-bottom: 1px solid var(--divider);
    overflow: hidden;
}
.dlb-vendor-hero-deco {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(50, 178, 160, 0.12), transparent 60%);
    pointer-events: none;
}
.dlb-vendor-hero-inner {
    position: relative;
    z-index: 2;
}
.dlb-vendor-hero-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    margin-top: 14px;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.dlb-vendor-hero-logo {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--primary-light);
}
.dlb-vendor-hero-logo img { width: 100%; height: 100%; object-fit: cover; }
.dlb-vendor-hero-logo .dlb-vendor-logo-fallback {
    width: 100%; height: 100%;
    font-size: 2.6rem;
}
.dlb-vendor-hero-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--text-main);
    line-height: 1.15;
}
.dlb-vendor-hero-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #E1F5EE;
    color: #0F6E56;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.dlb-vendor-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}
.dlb-vendor-hero-tag {
    padding: 5px 12px;
    background: #F1F5F9;
    color: var(--text-main);
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 500;
}
.dlb-vendor-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dlb-vendor-hero-actions .btn { white-space: nowrap; }

@media (max-width: 768px) {
    .dlb-vendor-hero { padding: 20px 0 24px; }
    .dlb-vendor-hero-card {
        grid-template-columns: auto 1fr;
        gap: 14px;
        padding: 16px;
    }
    .dlb-vendor-hero-logo { width: 72px; height: 72px; }
    .dlb-vendor-hero-name { font-size: 1.3rem; }
    .dlb-vendor-hero-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .dlb-vendor-hero-actions .btn {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
}

/* ─── Bio ──────────────────────────────────────── */
.dlb-vendor-bio {
    padding: 24px 0;
}
.dlb-vendor-bio-card {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: var(--mp-card-shadow);
}
.dlb-vendor-bio-card h2 {
    margin: 0 0 12px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
}
.dlb-vendor-bio-text {
    color: var(--text-main);
    line-height: 1.65;
    font-size: .95rem;
}

/* ─── Produits du vendeur ─────────────────────── */
.dlb-vendor-products {
    padding: 12px 0 40px;
}
.dlb-vp-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 18px;
}
.dlb-vp-count {
    color: var(--text-sub);
    font-size: .9rem;
}
.dlb-vendor-empty {
    text-align: center;
    padding: 60px 20px;
    background: #FAFBFC;
    border-radius: 16px;
    color: var(--text-sub);
}
.dlb-vendor-empty-ico {
    font-size: 3rem;
    margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════
   v2.9.0 — Bouton "Devenir vendeur" dans brand-bar
═══════════════════════════════════════════════════ */
.brand-bar-vendor-cta .brand-bar-link-vendor {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #fff !important;
    padding: 0 14px !important;
    font-weight: 700 !important;
    border-radius: 8px;
    margin: 4px 6px;
    border: none !important;
    height: calc(100% - 8px);
    align-self: center;
    gap: 6px;
}
.brand-bar-vendor-cta .brand-bar-link-vendor:hover {
    background: linear-gradient(135deg, #B8941F 0%, #8B6E12 100%);
    color: #fff !important;
}

/* ═══════════════════════════════════════════════════
   v2.9.0 — Bannière "Devenir vendeur" sur page Mon compte
═══════════════════════════════════════════════════ */
.dlb-become-vendor-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    margin: 20px 0;
    background: linear-gradient(135deg, var(--primary-light, #E6F7F4) 0%, #FFF8E1 100%);
    border: 1px solid var(--primary, #32B2A0);
    border-radius: 14px;
}
.dlb-bvb-icon { font-size: 2.4rem; flex-shrink: 0; }
.dlb-bvb-body { flex: 1; }
.dlb-bvb-body strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 4px;
}
.dlb-bvb-body p {
    margin: 0;
    color: var(--text-sub, #6b7280);
    font-size: .9rem;
    line-height: 1.4;
}
.dlb-become-vendor-banner .btn {
    flex-shrink: 0;
    white-space: nowrap;
}
@media (max-width: 700px) {
    .dlb-become-vendor-banner {
        flex-direction: column;
        text-align: center;
    }
    .dlb-become-vendor-banner .btn { width: 100%; }
}

/* ═══════════════════════════════════════════════════
   v2.9.0 — Lien "Devenir vendeur" dans menu mobile
═══════════════════════════════════════════════════ */
.mobile-menu-vendor-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 14px !important;
    padding: 14px !important;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%) !important;
    color: #fff !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* ═══════════════════════════════════════════════════
   v2.9.0 — Page /devenir-vendeur/ — Hero
═══════════════════════════════════════════════════ */
.vsign-hero {
    position: relative;
    padding: 50px 0 60px;
    background: linear-gradient(135deg, var(--primary, #32B2A0) 0%, var(--primary-dark, #228777) 100%);
    color: #fff;
    overflow: hidden;
}
.vsign-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 50%);
    pointer-events: none;
}
.vsign-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
}
.vsign-hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.vsign-hero-title {
    font-size: 2.6rem;
    font-weight: 900;
    margin: 0 0 14px;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.5px;
}
.vsign-hero-desc {
    font-size: 1.05rem;
    line-height: 1.55;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.94);
}
.vsign-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vsign-hero-bullets li {
    font-size: .95rem;
    color: rgba(255, 255, 255, 0.95);
}
.vsign-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.vsign-hero-icon {
    font-size: 11rem;
    line-height: 1;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
    animation: vsign-bounce 3s ease-in-out infinite;
}
@keyframes vsign-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@media (max-width: 900px) {
    .vsign-hero { padding: 32px 0 36px; }
    .vsign-hero-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .vsign-hero-title { font-size: 1.9rem; }
    .vsign-hero-icon { font-size: 6rem; }
    .vsign-hero-bullets { display: inline-flex; text-align: left; }
}

/* ═══════════════════════════════════════════════════
   v2.9.0 — Page /devenir-vendeur/ — Formulaire
═══════════════════════════════════════════════════ */
.vsign-form-section {
    padding: 40px 0 60px;
    background: #F8FAF9;
}
.vsign-form-card {
    max-width: 760px;
    margin: -40px auto 0;
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 3;
}
@media (max-width: 700px) {
    .vsign-form-card { padding: 24px 18px; margin-top: -20px; border-radius: 14px; }
}
.vsign-form-title {
    margin: 0 0 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}
.vsign-form-intro {
    color: var(--text-sub);
    margin: 0 0 28px;
    font-size: .92rem;
}

.vsign-step {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px dashed var(--divider, #e5e7eb);
}
.vsign-step:last-of-type { border-bottom: 0; }
.vsign-step-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.vsign-step-num {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary, #32B2A0);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: .92rem;
    flex-shrink: 0;
}
.vsign-step-head h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.vsign-field { margin-bottom: 14px; }
.vsign-field label {
    display: block;
    font-weight: 600;
    font-size: .88rem;
    color: var(--text-main);
    margin-bottom: 6px;
}
.vsign-field input,
.vsign-field textarea,
.vsign-field select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--divider, #e5e7eb);
    border-radius: 10px;
    background: #fff;
    font-size: .95rem;
    font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
}
.vsign-field input:focus,
.vsign-field textarea:focus,
.vsign-field select:focus {
    outline: none;
    border-color: var(--primary, #32B2A0);
    box-shadow: 0 0 0 3px rgba(50, 178, 160, 0.15);
}
.vsign-field textarea { resize: vertical; }
.vsign-field select[multiple] { min-height: 120px; }
.vsign-hint {
    display: block;
    margin-top: 5px;
    font-size: .78rem;
    color: var(--text-sub, #6b7280);
    font-style: italic;
}
.vsign-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 600px) {
    .vsign-grid-2 { grid-template-columns: 1fr; }
}

/* Type cards (radio "Particulier / Pro") */
.vsign-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 600px) {
    .vsign-type-grid { grid-template-columns: 1fr; }
}
.vsign-type-card {
    position: relative;
    cursor: pointer;
}
.vsign-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.vsign-type-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 22px 16px;
    border: 2px solid var(--divider, #e5e7eb);
    border-radius: 14px;
    background: #fff;
    transition: all .2s;
    text-align: center;
}
.vsign-type-card:hover .vsign-type-card-inner {
    border-color: var(--primary, #32B2A0);
    background: var(--primary-light, #E6F7F4);
}
.vsign-type-card input[type="radio"]:checked + .vsign-type-card-inner {
    border-color: var(--primary, #32B2A0);
    background: var(--primary-light, #E6F7F4);
    box-shadow: 0 0 0 3px rgba(50, 178, 160, 0.2);
}
.vsign-type-icon { font-size: 2.2rem; }
.vsign-type-card strong {
    font-size: 1rem;
    color: var(--text-main);
}
.vsign-type-card small {
    color: var(--text-sub, #6b7280);
    font-size: .82rem;
    line-height: 1.35;
}

/* Charte */
.vsign-charte {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 14px;
    border-left: 3px solid var(--primary, #32B2A0);
}
.vsign-charte p {
    margin: 0 0 8px;
    font-weight: 600;
    color: var(--text-main);
}
.vsign-charte ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-sub, #6b7280);
}
.vsign-charte li {
    margin-bottom: 4px;
    font-size: .88rem;
    line-height: 1.45;
}
.vsign-charte-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #FFF8E1;
    border-radius: 10px;
    border: 1px solid #FDE68A;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
}
.vsign-charte-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary, #32B2A0);
    cursor: pointer;
}

/* Submit */
.vsign-submit {
    margin-top: 20px;
    text-align: center;
}
.vsign-submit .btn {
    min-width: 280px;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 700;
}

/* Status (succès / erreur) */
.vsign-status {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 500;
    line-height: 1.45;
}
.vsign-status-ok {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}
.vsign-status-err {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* v2.9.8 — Formulaire progressif (étape 1 visible, reste révélé au choix) */
.vsign-step-intro {
    margin: 0 0 16px;
    color: var(--text-sub, #6b7280);
    font-size: .92rem;
}
.vsign-step-1.vsign-step-1-collapsed {
    /* Compactage de la step 1 quand un type est choisi (pour gagner de la place) */
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.vsign-step-1.vsign-step-1-collapsed .vsign-step-intro { display: none; }
.vsign-step-1.vsign-step-1-collapsed .vsign-type-grid { display: none; }

/* Bandeau résumé "Vous candidatez en tant que..." */
.vsign-type-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    margin: 0 0 24px;
    background: linear-gradient(135deg, var(--primary-light, #E6F7F4) 0%, #FFF8E1 100%);
    border: 1px solid var(--primary, #32B2A0);
    border-radius: 12px;
}
.vsign-ts-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.vsign-ts-body { flex: 1; min-width: 0; }
.vsign-ts-label {
    font-size: .76rem;
    color: var(--text-sub, #6b7280);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    margin-bottom: 2px;
}
.vsign-ts-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-dark, #228777);
}
.vsign-ts-change {
    background: transparent;
    border: 1.5px solid var(--primary, #32B2A0);
    color: var(--primary-dark, #228777);
    padding: 7px 14px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
}
.vsign-ts-change:hover {
    background: var(--primary, #32B2A0);
    color: #fff;
}

#vsign-rest {
    animation: vsign-rest-in .25s ease-out;
}
@keyframes vsign-rest-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .vsign-type-summary { flex-wrap: wrap; }
    .vsign-ts-change { width: 100%; }
}

/* ═══════════════════════════════════════════════════
   v2.10.0 — Dashboard vendeur /vendeur/dashboard/
═══════════════════════════════════════════════════ */
.vdash {
    padding: 30px 0 60px;
    background: #F8FAF9;
    min-height: 70vh;
}
.vdash-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
}
@media (max-width: 900px) {
    .vdash-layout { grid-template-columns: 1fr; }
}

/* Sidebar */
.vdash-sidebar {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
}
.vdash-sidebar-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary, #32B2A0) 0%, var(--primary-dark, #228777) 100%);
    color: #fff;
}
.vdash-side-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.vdash-side-logo img,
.vdash-side-logo .dlb-vendor-logo-fallback {
    width: 100%; height: 100%;
}
.vdash-side-id { flex: 1; min-width: 0; }
.vdash-side-name {
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.vdash-side-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .72rem;
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 600;
}

.vdash-nav {
    padding: 8px 0;
    display: flex;
    flex-direction: column;
}
.vdash-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: var(--text-main, #1A2A2E);
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    border-left: 3px solid transparent;
    transition: background .15s, border-color .15s, color .15s;
}
.vdash-nav-item:hover {
    background: var(--primary-light, #E6F7F4);
    color: var(--primary-dark, #228777);
}
.vdash-nav-item.is-active {
    background: var(--primary-light, #E6F7F4);
    color: var(--primary-dark, #228777);
    border-left-color: var(--primary, #32B2A0);
}
.vdash-nav-icon { font-size: 1.05rem; }
.vdash-nav-public { border-top: 1px solid var(--divider, #e5e7eb); margin-top: 6px; }
.vdash-nav-logout { color: #DC2626; }
.vdash-nav-logout:hover { background: #FEF2F2; color: #991B1B; }

/* Main */
.vdash-main {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    min-height: 500px;
}
@media (max-width: 600px) {
    .vdash-main { padding: 20px 18px; border-radius: 14px; }
}

.vdash-welcome {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--divider, #f1f5f9);
}
.vdash-welcome h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 4px;
    color: var(--text-main);
}
.vdash-welcome p {
    margin: 0;
    color: var(--text-sub, #6b7280);
    font-size: .95rem;
}

/* KPIs */
.vdash-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 26px;
}
.vdash-kpi {
    background: #F8FAF9;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--divider, #e5e7eb);
}
.vdash-kpi-icon { font-size: 1.6rem; margin-bottom: 6px; }
.vdash-kpi-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark, #228777);
    line-height: 1.1;
    margin-bottom: 2px;
}
.vdash-kpi-lbl {
    font-size: .76rem;
    color: var(--text-sub, #6b7280);
    text-transform: uppercase;
    letter-spacing: .4px;
    font-weight: 600;
}

/* Quick actions */
.vdash-section-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 14px;
    color: var(--text-main);
}
.vdash-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}
.vdash-quick-card {
    position: relative;
    display: block;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--divider, #e5e7eb);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    transition: border-color .15s, transform .15s, box-shadow .15s;
}
.vdash-quick-card:hover {
    border-color: var(--primary, #32B2A0);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.vdash-qc-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.vdash-qc-title {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-main);
}
.vdash-qc-desc {
    font-size: .82rem;
    color: var(--text-sub, #6b7280);
    line-height: 1.4;
}
.vdash-qc-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #FEF3C7;
    color: #92400E;
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

/* Tips */
.vdash-tips {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--primary-light, #E6F7F4) 0%, #FFF8E1 100%);
    border-radius: 12px;
}
.vdash-tips-icon { font-size: 1.8rem; }
.vdash-tips-body strong { display: block; margin-bottom: 4px; color: var(--text-main); }
.vdash-tips-body p { margin: 0; color: var(--text-sub, #6b7280); font-size: .92rem; line-height: 1.5; }

/* Stub (onglets en construction) */
.vdash-stub {
    text-align: center;
    padding: 40px 20px;
    background: #FAFBFC;
    border-radius: 14px;
}
.vdash-stub-icon { font-size: 3.5rem; margin-bottom: 14px; }
.vdash-stub h2 {
    margin: 0 0 10px;
    font-size: 1.3rem;
    color: var(--text-main);
}
.vdash-stub p {
    color: var(--text-sub, #6b7280);
    max-width: 460px;
    margin: 0 auto 12px;
    line-height: 1.55;
}
.vdash-stub a { color: var(--primary, #32B2A0); }
.vdash-stub .btn { margin-top: 14px; }

/* ═══════════════════════════════════════════════════
   v2.9.1 — REFONTE PROFIL VENDEUR /vendeur/{slug}/
═══════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────── */
.vp-hero {
    position: relative;
    padding: 24px 0 32px;
    background: linear-gradient(135deg, var(--primary-light, #E6F7F4) 0%, #F8FAF9 100%);
    border-bottom: 1px solid var(--divider);
    overflow: hidden;
}
.vp-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(50, 178, 160, 0.12), transparent 50%);
    pointer-events: none;
}
.vp-hero-inner { position: relative; z-index: 2; }
.vp-crumbs {
    font-size: .82rem;
    color: var(--text-sub, #6b7280);
    margin-bottom: 14px;
}
.vp-crumbs a {
    color: var(--text-sub, #6b7280);
    text-decoration: none;
}
.vp-crumbs a:hover { color: var(--primary, #32B2A0); }
.vp-crumbs span { margin: 0 6px; }
.vp-crumbs-cur { color: var(--text-main); font-weight: 600; }

.vp-hero-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.vp-hero-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--divider);
}
.vp-hero-logo {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--primary-light);
    flex-shrink: 0;
}
.vp-hero-logo img { width: 100%; height: 100%; object-fit: cover; }
.vp-hero-logo .dlb-vendor-logo-fallback {
    width: 100%; height: 100%; font-size: 2.4rem;
}
.vp-hero-name-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.vp-hero-name {
    font-size: 1.7rem;
    font-weight: 800;
    margin: 0;
    color: var(--text-main);
    line-height: 1.15;
}

/* Badge "Vendeur certifié Dioulabi" — coche verte teal très visible */
.vp-badge-certified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px 5px 8px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #fff;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.35);
    white-space: nowrap;
}
.vp-badge-certified svg { flex-shrink: 0; }

.vp-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.vp-tag {
    padding: 4px 11px;
    background: #F1F5F9;
    color: var(--text-main);
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 500;
}
.vp-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vp-hero-actions .btn { white-space: nowrap; }
.vp-cta-wa { background: #25D366 !important; border-color: #25D366 !important; }
.vp-cta-wa:hover { background: #1FAE53 !important; border-color: #1FAE53 !important; }

/* Stats row */
.vp-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}
.vp-stat {
    text-align: center;
    padding: 8px 4px;
}
.vp-stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark, #228777);
    line-height: 1.1;
    margin-bottom: 2px;
}
.vp-stat-lbl {
    font-size: .76rem;
    color: var(--text-sub, #6b7280);
    text-transform: uppercase;
    letter-spacing: .4px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .vp-hero { padding: 14px 0 18px; }
    .vp-hero-card { padding: 14px; }
    .vp-hero-top {
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding-bottom: 14px;
        margin-bottom: 14px;
    }
    .vp-hero-logo { width: 64px; height: 64px; }
    .vp-hero-name { font-size: 1.25rem; }
    .vp-badge-certified { font-size: .72rem; padding: 4px 10px 4px 7px; }
    .vp-hero-actions {
        grid-column: 1 / -1;
        flex-direction: row;
    }
    .vp-hero-actions .btn { flex: 1; justify-content: center; }
    .vp-stat-num { font-size: 1.1rem; }
    .vp-stat-lbl { font-size: .68rem; }
}

/* ── À propos ─────────────────────────────────────── */
.vp-about { padding: 24px 0; }
.vp-about-card {
    background: #fff;
    padding: 22px 26px;
    border-radius: 14px;
    border-left: 4px solid var(--primary, #32B2A0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.vp-about-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--text-main);
}
.vp-about-body {
    color: var(--text-main);
    line-height: 1.65;
    font-size: .95rem;
}
.vp-about-body p { margin: 0 0 10px; }

/* ── Section produits ─────────────────────────────── */
.vp-products { padding: 12px 0 70px; }
.vp-products-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}
.vp-products-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: var(--text-main);
}
.vp-products-count {
    color: var(--text-sub);
    font-size: .9rem;
}
.vp-clear-filters {
    margin-left: 10px;
    color: var(--primary);
    text-decoration: underline;
    font-size: .85rem;
}

.vp-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: start;
}
@media (max-width: 900px) {
    .vp-layout { grid-template-columns: 1fr; }
}

/* ── Filtres sidebar ──────────────────────────────── */
.vp-filters {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 20px;
}
.vp-filters-toggle {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--primary, #32B2A0);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}
.vp-filter-block {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--divider);
}
.vp-filter-block:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.vp-filter-title {
    font-size: .85rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: .4px;
}
.vp-filters select,
.vp-filters input[type="number"] {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid var(--divider);
    border-radius: 8px;
    font-size: .9rem;
    background: #fff;
}
.vp-price-range {
    display: flex;
    align-items: center;
    gap: 6px;
}
.vp-price-range input { flex: 1; min-width: 0; }
.vp-price-range span { color: var(--text-sub); font-weight: 600; }
.vp-filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: .9rem;
    color: var(--text-main);
}
.vp-filter-check input { accent-color: var(--primary); cursor: pointer; }
.vp-filter-apply {
    width: 100%;
    margin-top: 16px;
    justify-content: center;
    padding: 11px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .vp-filters { position: relative; padding: 0; box-shadow: none; background: transparent; }
    .vp-filters-toggle { display: inline-flex; width: auto; padding: 8px 18px; }
    .vp-filters-form {
        display: none;
        background: #fff;
        padding: 18px;
        border-radius: 14px;
        margin-top: 10px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }
    .vp-filters.is-open .vp-filters-form { display: block; }
}

/* ── Grille ──────────────────────────────────────── */
.vp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
@media (max-width: 600px) {
    .vp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* ── Empty state ─────────────────────────────────── */
.vp-empty {
    text-align: center;
    padding: 60px 20px;
    background: #FAFBFC;
    border-radius: 16px;
    color: var(--text-sub);
}
.vp-empty-ico {
    font-size: 3rem;
    margin-bottom: 12px;
}

/* ── Pagination ──────────────────────────────────── */
.vp-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.vp-pagination a,
.vp-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    background: #fff;
    border: 1.5px solid var(--divider);
    border-radius: 8px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: all .15s;
}
.vp-pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.vp-pagination .current {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ── Sticky contact bar (mobile only) ─────────────── */
.vp-sticky-contact {
    display: none;
}
@media (max-width: 768px) {
    .vp-sticky-contact {
        display: flex;
        position: fixed;
        bottom: 64px;  /* au-dessus du bottom nav mobile */
        left: 10px;
        right: 10px;
        gap: 8px;
        z-index: 80;
    }
    .vp-sticky-wa,
    .vp-sticky-tel {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 100px;
        font-weight: 700;
        text-decoration: none;
        font-size: .92rem;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    }
    .vp-sticky-wa {
        background: #25D366;
        color: #fff;
    }
    .vp-sticky-tel {
        background: var(--primary);
        color: #fff;
    }
    /* On masque la barre actions desktop sur mobile (déjà visible en sticky) */
    .vp-hero-actions .btn { display: none; }
    .vp-hero-actions { display: none; }
    /* Ajouter padding bottom au container pour ne pas être caché par la sticky bar */
    .vp-products { padding-bottom: 130px; }
}

/* ═══════════════════════════════════════════════════
   v2.9.2 — COCHE CERTIFIÉE (3 tailles)
═══════════════════════════════════════════════════ */
.dlb-certified {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 1;
    vertical-align: middle;
}
.dlb-certified svg {
    filter: drop-shadow(0 1px 2px rgba(16, 185, 129, 0.3));
}

/* ═══════════════════════════════════════════════════
   v2.9.2 — REFONTE Swimlane "Nos vendeurs partenaires"
═══════════════════════════════════════════════════ */
.dlb-vendors-swimlane-v2 {
    padding: 36px 0;
    background: linear-gradient(180deg, #F8FAF9 0%, #fff 100%);
    border-top: 1px solid var(--divider);
}
.dlb-vs2-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 12px;
}
.dlb-vs2-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}
.dlb-vs2-icon { font-size: 1.4em; }
.dlb-vs2-sub {
    font-size: .8rem;
    font-weight: 500;
    color: #10B981;
    background: #ECFDF5;
    padding: 4px 10px;
    border-radius: 100px;
}
.dlb-vs2-allbtn {
    color: var(--primary, #32B2A0);
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
}
.dlb-vs2-allbtn:hover { text-decoration: underline; }

/* Grille — desktop 4 colonnes, tablet 3, mobile 2 puis scroll horizontal */
.dlb-vs2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}
@media (max-width: 700px) {
    .dlb-vs2-grid {
        grid-auto-flow: column;
        grid-auto-columns: 220px;
        grid-template-columns: none;
        overflow-x: auto;
        gap: 12px;
        padding: 6px 4px 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .dlb-vs2-grid::-webkit-scrollbar { display: none; }
    .dlb-vs2-grid > .dlb-vs2-card { scroll-snap-align: start; }
}

/* Card vendeur — design premium avec header gradient + logo overlay */
.dlb-vs2-card {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid var(--divider, #e5e7eb);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.dlb-vs2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary, #32B2A0);
}
.dlb-vs2-card-header {
    height: 64px;
    background: linear-gradient(135deg, var(--primary, #32B2A0) 0%, var(--primary-dark, #228777) 100%);
    position: relative;
    overflow: hidden;
}
.dlb-vs2-card-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 40%, rgba(255,255,255,0.18), transparent 60%);
}
.dlb-vs2-card-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 12px);
}
.dlb-vs2-card-logo {
    position: absolute;
    top: 30px;
    left: 18px;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 3px solid #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    z-index: 2;
}
.dlb-vs2-card-logo img,
.dlb-vs2-card-logo .dlb-vendor-logo-fallback {
    width: 100%; height: 100%;
}
.dlb-vs2-card-body {
    padding: 38px 18px 18px;
}
.dlb-vs2-card-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.dlb-vs2-card-name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}
.dlb-vs2-card-city {
    font-size: .82rem;
    color: var(--text-sub, #6b7280);
    margin-bottom: 8px;
}
.dlb-vs2-card-stats {
    display: flex;
    gap: 8px;
    font-size: .78rem;
    color: var(--text-sub, #6b7280);
    margin-bottom: 12px;
}
.dlb-vs2-card-stats strong { color: var(--text-main); font-weight: 700; }
.dlb-vs2-stat-sep { opacity: .4; }
.dlb-vs2-card-cta {
    display: inline-block;
    padding: 7px 14px;
    background: var(--primary-light, #E6F7F4);
    color: var(--primary-dark, #228777);
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 700;
    transition: background .15s;
}
.dlb-vs2-card:hover .dlb-vs2-card-cta {
    background: var(--primary, #32B2A0);
    color: #fff;
}

/* ═══════════════════════════════════════════════════
   v2.9.2 — REFONTE Vignette "Vendu par X" (fiche produit)
═══════════════════════════════════════════════════ */
.dlb-product-vendor-v2 {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    margin: 18px 0;
    background: linear-gradient(135deg, #F8FAF9 0%, var(--primary-light, #E6F7F4) 100%);
    border: 1px solid rgba(50, 178, 160, 0.25);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.dlb-pv2-logo {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    text-decoration: none;
}
.dlb-pv2-logo img { width: 100%; height: 100%; object-fit: cover; }
.dlb-pv2-body { flex: 1; min-width: 0; }
.dlb-pv2-label {
    font-size: .68rem;
    color: var(--text-sub, #6b7280);
    text-transform: uppercase;
    letter-spacing: .6px;
    font-weight: 700;
    margin-bottom: 2px;
}
.dlb-pv2-name-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    line-height: 1.2;
}
.dlb-pv2-name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary-dark, #228777);
    text-decoration: none;
}
.dlb-pv2-name-row:hover .dlb-pv2-name {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.dlb-pv2-meta {
    display: flex;
    gap: 6px;
    font-size: .76rem;
    color: var(--text-sub, #6b7280);
    margin-top: 4px;
}
.dlb-pv2-sep { opacity: .4; }
.dlb-pv2-link {
    display: inline-block;
    margin-top: 6px;
    font-size: .78rem;
    color: var(--primary, #32B2A0);
    font-weight: 600;
    text-decoration: none;
}
.dlb-pv2-link:hover { text-decoration: underline; }
.dlb-pv2-wa {
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform .15s;
}
.dlb-pv2-wa:hover { transform: scale(1.08); color: #fff; }

/* v2.9.5 — Boutons "Contacter sur WhatsApp" + "Appeler" sous la vignette,
   très visibles, full-width ou 2 colonnes selon largeur */
.dlb-pv2-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0 0 18px 0;
}
.dlb-pv2-actions:has(.dlb-pv2-action-btn:only-child) { grid-template-columns: 1fr; }
.dlb-pv2-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    transition: transform .12s, box-shadow .15s, filter .12s;
}
.dlb-pv2-action-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    color: #fff;
}
.dlb-pv2-action-wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.dlb-pv2-action-tel {
    background: var(--primary, #32B2A0);
    color: #fff;
    box-shadow: 0 4px 14px rgba(50, 178, 160, 0.35);
}
@media (max-width: 480px) {
    .dlb-pv2-actions { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   v2.9.7 — Swimlane "Les produits de nos vendeurs partenaires"
═══════════════════════════════════════════════════ */
.dlb-vendor-prods-swim {
    padding: 28px 0 36px;
    background: linear-gradient(180deg, #fff 0%, #F8FAF9 100%);
}
.dlb-vps-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 12px;
}
.dlb-vps-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}
.dlb-vps-icon { font-size: 1.3em; }
.dlb-vps-sub {
    font-size: .8rem;
    font-weight: 500;
    color: #10B981;
    background: #ECFDF5;
    padding: 4px 10px;
    border-radius: 100px;
}
.dlb-vps-allbtn {
    color: var(--primary, #32B2A0);
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
}
.dlb-vps-allbtn:hover { text-decoration: underline; }

/* Grille produits : 4 cols desktop, 3 tablette, scroll horizontal mobile */
.dlb-vps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
@media (max-width: 700px) {
    .dlb-vps-grid {
        grid-auto-flow: column;
        grid-auto-columns: 200px;
        grid-template-columns: none;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .dlb-vps-grid::-webkit-scrollbar { display: none; }
    .dlb-vps-item { scroll-snap-align: start; }
}

/* Wrapper item : la carte produit + le badge vendeur en dessous */
.dlb-vps-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}
.dlb-vps-item .product-card {
    flex: 1;
    border-radius: 14px 14px 0 0;
}

/* Badge "Vendu par X" en bas de la carte */
.dlb-vps-vendor-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid var(--divider, #e5e7eb);
    border-top: none;
    border-radius: 0 0 14px 14px;
    text-decoration: none;
    color: var(--text-main);
    transition: background .15s, border-color .15s;
    margin-top: -2px;
}
.dlb-vps-vendor-badge:hover {
    background: var(--primary-light, #E6F7F4);
    border-color: var(--primary, #32B2A0);
    color: var(--primary-dark, #228777);
}
.dlb-vps-vb-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dlb-vps-vb-logo img,
.dlb-vps-vb-logo .dlb-vendor-logo-fallback {
    width: 100%; height: 100%;
}
.dlb-vps-vb-logo .dlb-vendor-logo-fallback {
    font-size: .7rem;
}
.dlb-vps-vb-name {
    flex: 1;
    min-width: 0;
    font-size: .78rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ═══════════════════════════════════════════════════
   v2.9.2 — Sections "Autres produits" + "Similaires"
═══════════════════════════════════════════════════ */
.dlb-vendor-other-products,
.dlb-similar-products {
    margin: 40px 0;
    padding: 28px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.dlb-similar-products {
    background: #FAFBFC;
}
.dlb-vop-head,
.dlb-sp-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}
.dlb-vop-title,
.dlb-sp-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
    color: var(--text-main);
    line-height: 1.3;
}
.dlb-vop-title a { color: var(--primary-dark, #228777); text-decoration: none; }
.dlb-vop-title a:hover { text-decoration: underline; }
.dlb-vop-allbtn {
    color: var(--primary, #32B2A0);
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    white-space: nowrap;
}
.dlb-vop-allbtn:hover { text-decoration: underline; }

.dlb-vop-grid,
.dlb-sp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}
@media (max-width: 600px) {
    .dlb-vop-grid,
    .dlb-sp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .dlb-vendor-other-products,
    .dlb-similar-products {
        padding: 18px;
        margin: 24px 0;
    }
    .dlb-vop-title,
    .dlb-sp-title { font-size: 1rem; }
}

/* Catégorie page : adapter dlb-cv-card pour la coche */
.dlb-cv-card .dlb-cv-name-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
.dlb-cv-card .dlb-certified { margin-top: 2px; }

/* ═══════════════════════════════════════════════════
   v2.10.3 — BANNIÈRE "Mode vendeur" sur /mon-compte/
   Affichée en haut de la page mon compte quand un vendeur
   y arrive — lien rapide pour retourner au dashboard pro.
═══════════════════════════════════════════════════ */
.dlb-vendor-mode-banner {
    background: linear-gradient(135deg, #E1F5EE 0%, #B9E9DA 100%);
    border: 1px solid #6ED1B5;
    border-left: 4px solid #228777;
    border-radius: 10px;
    padding: 14px 18px;
    margin: 0 0 24px;
    box-shadow: 0 2px 6px rgba(50, 178, 160, 0.08);
}
.dlb-vendor-mode-banner .dvmb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.dlb-vendor-mode-banner .dvmb-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
}
.dlb-vendor-mode-banner .dvmb-icon {
    font-size: 1.6rem;
    line-height: 1;
}
.dlb-vendor-mode-banner .dvmb-text strong {
    display: block;
    color: #0F6E56;
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 2px;
}
.dlb-vendor-mode-banner .dvmb-text span {
    color: #355d52;
    font-size: 0.82rem;
}
.dlb-vendor-mode-banner .dvmb-cta {
    background: #228777;
    color: #fff !important;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s ease, transform .15s ease;
}
.dlb-vendor-mode-banner .dvmb-cta:hover {
    background: #196352;
    transform: translateX(-2px);
}
@media (max-width: 640px) {
    .dlb-vendor-mode-banner .dvmb-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .dlb-vendor-mode-banner .dvmb-cta {
        width: 100%;
        text-align: center;
    }
}

/* ── Sidebar dashboard vendeur : divider + cross-link client ── */
.vdash-nav-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #d4dee0, transparent);
    margin: 10px 14px;
}
.vdash-nav-client {
    background: #fff8e1 !important;
    border: 1px dashed #d9b870 !important;
}
.vdash-nav-client:hover {
    background: #ffeeb8 !important;
}
.vdash-nav-client .vdash-nav-icon {
    background: #fde68a !important;
}

/* ═══════════════════════════════════════════════════
   v2.10.4 — DASHBOARD VENDEUR : Gestion produits
═══════════════════════════════════════════════════ */

/* Welcome header avec CTA à droite */
.vdash-welcome-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}
.vdash-welcome-row > div { flex: 1 1 auto; min-width: 0; }
.vdash-cta-new { white-space: nowrap; }

/* Notices */
.vdash-notice {
    padding: 14px 18px;
    border-radius: 10px;
    margin: 0 0 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}
.vdash-notice-success {
    background: #E1F5EE;
    border: 1px solid #6ED1B5;
    color: #0F6E56;
}
.vdash-notice-error {
    background: #FEE2E2;
    border: 1px solid #FCA5A5;
    color: #991B1B;
}
.vdash-notice ul { margin: 0; }

/* Stats produits */
.vdash-prod-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0 0 24px;
}
.vdash-prod-stat {
    background: #fff;
    border: 1px solid #e7eced;
    border-radius: 10px;
    padding: 14px 16px;
    text-align: center;
}
.vdash-prod-stat strong {
    display: block;
    font-size: 1.8rem;
    color: #228777;
    line-height: 1;
    margin-bottom: 4px;
}
.vdash-prod-stat span {
    font-size: 0.78rem;
    color: #5a6a6e;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Empty state */
.vdash-empty {
    background: #fff;
    border: 2px dashed #d4dee0;
    border-radius: 14px;
    padding: 50px 24px;
    text-align: center;
    margin: 24px 0;
}
.vdash-empty-icon {
    font-size: 3.4rem;
    margin-bottom: 14px;
    opacity: 0.5;
}
.vdash-empty h2 {
    font-size: 1.3rem;
    color: #1a2a2e;
    margin: 0 0 6px;
}
.vdash-empty p {
    color: #5a6a6e;
    margin: 0 0 18px;
}

/* Grid produits */
.vdash-prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin: 0 0 24px;
}
.vdash-prod-card {
    background: #fff;
    border: 1px solid #e7eced;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .15s ease, transform .15s ease;
}
.vdash-prod-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}
.vdash-prod-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f6f8f9;
    overflow: hidden;
}
.vdash-prod-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vdash-prod-no-img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    opacity: 0.3;
}
.vdash-prod-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
}
.vdash-prod-badge-ok { background: rgba(225, 245, 238, 0.95); color: #0F6E56; }
.vdash-prod-badge-warn { background: rgba(255, 248, 225, 0.95); color: #854F0B; }
.vdash-prod-badge-mute { background: rgba(241, 245, 249, 0.95); color: #475569; }

.vdash-prod-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.vdash-prod-body h3 {
    font-size: 0.95rem;
    margin: 0;
    color: #1a2a2e;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vdash-prod-price {
    display: flex;
    gap: 8px;
    align-items: baseline;
    flex-wrap: wrap;
}
.vdash-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #228777;
}
.vdash-price-empty { color: #dc2626; font-size: 0.85rem; }
.vdash-price-sale { font-size: 1.05rem; font-weight: 700; color: #DC2626; }
.vdash-price-old { font-size: 0.85rem; color: #94a3b8; text-decoration: line-through; }
.vdash-prod-stock { font-size: 0.78rem; }
.vdash-stock-in { color: #0F6E56; }
.vdash-stock-out { color: #DC2626; }
.vdash-prod-actions {
    display: flex;
    gap: 6px;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #f0f3f4;
}
.vdash-prod-actions .btn { flex: 1; font-size: 0.78rem; padding: 6px 8px; }
.vdash-prod-actions .btn-outline-danger { flex: 0 0 36px; color: #DC2626; border-color: #FCA5A5; }
.vdash-prod-actions .btn-outline-danger:hover { background: #FEE2E2; }

/* Form produit */
.vdash-prod-form { margin-top: 12px; }
.vdash-fs {
    background: #fff;
    border: 1px solid #e7eced;
    border-radius: 12px;
    padding: 20px;
    margin: 0 0 18px;
}
.vdash-fs legend {
    font-size: 1rem;
    font-weight: 700;
    color: #228777;
    padding: 0 10px;
    margin-left: 8px;
}
.vdash-field {
    display: block;
    margin-bottom: 14px;
}
.vdash-field:last-child { margin-bottom: 0; }
.vdash-lbl {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a2a2e;
    margin-bottom: 6px;
}
.vdash-lbl em {
    color: #DC2626;
    font-style: normal;
    margin-left: 2px;
}
.vdash-field input[type="text"],
.vdash-field input[type="number"],
.vdash-field input[type="file"],
.vdash-field select,
.vdash-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d4dee0;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #fafbfc;
    transition: border-color .15s ease, background .15s ease;
}
.vdash-field input:focus,
.vdash-field select:focus,
.vdash-field textarea:focus {
    border-color: #32B2A0;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(50, 178, 160, 0.15);
}
.vdash-field-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    cursor: pointer;
}
.vdash-field-inline input[type="checkbox"] { width: 18px; height: 18px; }
.vdash-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.vdash-help {
    font-size: 0.78rem;
    color: #5a6a6e;
    margin-top: 6px;
    line-height: 1.4;
}
.vdash-img-preview {
    margin-bottom: 14px;
}
.vdash-img-preview img {
    max-width: 180px;
    border-radius: 8px;
    border: 1px solid #e7eced;
}
.vdash-form-actions {
    display: flex;
    gap: 10px;
    padding: 20px;
    background: #f6f8f9;
    border-radius: 12px;
    margin-top: 8px;
}
.vdash-form-actions .btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
}

@media (max-width: 720px) {
    .vdash-prod-stats { grid-template-columns: 1fr; }
    .vdash-row-2 { grid-template-columns: 1fr; }
    .vdash-form-actions { flex-direction: column; }
    .vdash-form-actions .btn { width: 100%; }
}

/* v2.10.5 — Badge "Disponible" (remplace "Bientôt" sur les cartes opérationnelles) */
.vdash-qc-badge-ready {
    background: #DCFCE7 !important;
    color: #15803D !important;
    font-weight: 700;
}
.vdash-quick-card-ready {
    border-color: #86EFAC !important;
    position: relative;
}
.vdash-quick-card-ready::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.08) inset;
}

/* ═══════════════════════════════════════════════════
   v2.10.6 — Bouton Annuler bien lisible (gris clair, texte sombre)
═══════════════════════════════════════════════════ */
.btn-cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #fff !important;
    color: #475569 !important;
    border: 1px solid #cbd5e1 !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn-cancel:hover {
    background: #f1f5f9 !important;
    color: #1e293b !important;
    border-color: #94a3b8 !important;
}

/* ═══════════════════════════════════════════════════
   v2.10.6 — Bloc diagnostic post-save (montre ce qui a été enregistré)
═══════════════════════════════════════════════════ */
.vdash-diagnostic {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-left: 4px solid #d97706;
    border-radius: 10px;
    padding: 14px 18px;
    margin: 0 0 18px;
}
.vdash-diagnostic h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: #92400e;
}
.vdash-diagnostic ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4px 18px;
    font-size: 0.85rem;
    color: #78350f;
}
.vdash-diagnostic li {
    padding: 2px 0;
}
.vdash-diagnostic code {
    background: rgba(255, 255, 255, 0.55);
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 0.78rem;
    color: #1e293b;
}

/* ═══════════════════════════════════════════════════
   v2.10.8 — KPI "Produits en attente" (sous-ligne sur le KPI produits en ligne)
═══════════════════════════════════════════════════ */
.vdash-kpi-sub {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: transform .15s ease, box-shadow .15s ease;
}
.vdash-kpi-pending {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border: 1px solid #f59e0b;
}
.vdash-kpi-pending:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.18);
    color: #78350f;
}

/* ═══════════════════════════════════════════════════
   v2.10.9 — Messagerie modération admin↔vendeur
═══════════════════════════════════════════════════ */

/* Badges produits étendus */
.vdash-prod-badge-danger { background: rgba(254, 226, 226, 0.95) !important; color: #991B1B !important; }
.vdash-prod-msg-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #DC2626;
    color: #fff;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.35);
}

/* Bannière en haut du formulaire d'édition */
.vdash-mod-banner {
    padding: 14px 18px;
    border-radius: 10px;
    margin: 0 0 16px;
}
.vdash-mod-banner strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}
.vdash-mod-banner p { margin: 0; font-size: 0.88rem; line-height: 1.5; }
.vdash-mod-banner-changes {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-left: 4px solid #d97706;
    color: #78350f;
}
.vdash-mod-banner-rejected {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #ef4444;
    border-left: 4px solid #b91c1c;
    color: #7f1d1d;
}
/* v2.10.37 — Bannière "produit approuvé" en VERT TEAL du site (brand color) */
.vdash-mod-banner-approved {
    background: linear-gradient(135deg, #E6F7F4 0%, #BFEBE2 100%);
    border: 1px solid #32B2A0;
    border-left: 4px solid #228777;
    color: #0e4f44;
}

/* Bloc thread admin↔vendeur */
.vdash-mod-thread-block {
    background: #fff;
    border: 1px solid #e7eced;
    border-radius: 12px;
    padding: 20px;
    margin: 0 0 22px;
}
.vdash-mod-thread-title {
    margin: 14px 0 8px;
    font-size: 0.92rem;
    color: #228777;
}
.vdash-mod-thread {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e7eced;
    border-radius: 8px;
    padding: 10px;
    background: #fafbfc;
}
.vdash-mod-msg {
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.88rem;
}
.vdash-mod-msg-admin {
    background: #E0F2FE;
    border-left: 3px solid #0369A1;
}
.vdash-mod-msg-vendor {
    background: #FEF3C7;
    border-left: 3px solid #D97706;
    margin-left: 22px;
}
.vdash-mod-msg-head {
    font-weight: 700;
    font-size: 0.78rem;
    margin-bottom: 4px;
    color: #1a2a2e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}
.vdash-mod-msg-date {
    color: #94a3b8;
    font-weight: 400;
    font-size: 0.72rem;
}
.vdash-mod-msg-body {
    color: #475569;
    line-height: 1.5;
}
.vdash-mod-msg-body p { margin: 0 0 6px; }
.vdash-mod-msg-body p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════
   v2.10.11 — Visibilité messages : alerte + snippet sur cards
═══════════════════════════════════════════════════ */

/* Bannière alerte en haut de la liste produits — IMPOSSIBLE à louper */
.vdash-msg-alert {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: 12px;
    padding: 18px 22px;
    margin: 0 0 24px;
    color: #fff;
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.28);
    animation: vdashMsgPulse 2.5s ease-in-out infinite;
}
@keyframes vdashMsgPulse {
    0%, 100% { box-shadow: 0 6px 18px rgba(220, 38, 38, 0.28); }
    50%      { box-shadow: 0 6px 22px rgba(220, 38, 38, 0.45); }
}
.vdash-msg-alert-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}
.vdash-msg-alert-icon {
    font-size: 2.2rem;
    line-height: 1;
}
.vdash-msg-alert-head strong {
    display: block;
    font-size: 1.05rem;
    line-height: 1.3;
    margin-bottom: 3px;
}
.vdash-msg-alert-sub {
    font-size: 0.85rem;
    opacity: 0.92;
}
.vdash-msg-alert-sub em { font-weight: 700; font-style: normal; }
.vdash-msg-alert-snippet {
    background: rgba(255, 255, 255, 0.14);
    border-left: 3px solid #fff;
    padding: 10px 14px;
    margin: 12px 0 14px;
    border-radius: 0 8px 8px 0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.vdash-msg-alert-quote-icon {
    font-size: 1.3rem;
    line-height: 1.2;
    flex-shrink: 0;
}
.vdash-msg-alert-snippet blockquote {
    margin: 0;
    font-style: italic;
    line-height: 1.5;
    font-size: 0.92rem;
}
.vdash-msg-alert-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #B91C1C !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}
.vdash-msg-alert-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #7f1d1d !important;
}

/* Snippet message admin directement sur la card produit */
.vdash-prod-msg-snippet {
    background: #FEE2E2;
    border-left: 3px solid #DC2626;
    padding: 8px 10px;
    border-radius: 0 6px 6px 0;
    font-size: 0.78rem;
    line-height: 1.4;
}
.vdash-prod-msg-snippet strong {
    display: block;
    color: #991B1B;
    font-size: 0.72rem;
    margin-bottom: 2px;
}
.vdash-prod-msg-snippet span {
    color: #7f1d1d;
    font-style: italic;
}

/* Pastille badge messages — plus grosse et animée */
.vdash-prod-msg-badge {
    animation: vdashBadgePulse 2s ease-in-out infinite;
}
@keyframes vdashBadgePulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.08); }
}

/* ═══════════════════════════════════════════════════
   v2.10.12 — Encart "À votre attention" sur home dashboard
═══════════════════════════════════════════════════ */
.vdash-attention {
    background: #fff;
    border: 1px solid #e7eced;
    border-radius: 14px;
    padding: 20px 22px;
    margin: 0 0 22px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.vdash-attention-title {
    font-size: 1.05rem;
    margin: 0 0 14px;
    color: #1a2a2e;
    display: flex;
    align-items: center;
    gap: 8px;
}
.vdash-attention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.vdash-attention-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
    border: 1px solid transparent;
}
.vdash-attention-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.vdash-attention-icon {
    font-size: 1.6rem;
    line-height: 1;
}
.vdash-attention-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}
.vdash-attention-lbl {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
}
.vdash-attention-action {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: auto;
    font-weight: 700;
    opacity: 0.85;
}
.vdash-attention-card-msg {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: #ef4444;
    color: #7f1d1d;
    animation: vdashAttentionPulse 2.5s ease-in-out infinite;
}
@keyframes vdashAttentionPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.0); }
    50%      { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.18); }
}
.vdash-attention-card-changes {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
    color: #78350f;
}
.vdash-attention-card-pending {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-color: #0ea5e9;
    color: #0c4a6e;
}
.vdash-attention-card-rejected {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-color: #94a3b8;
    color: #1e293b;
}
.vdash-attention-empty {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #10b981;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    color: #065f46;
}
.vdash-attention-empty-icon {
    font-size: 1.6rem;
    width: 38px;
    height: 38px;
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vdash-attention-empty strong {
    color: #064e3b;
    font-size: 0.95rem;
}

/* Badge sur le sidebar nav */
.vdash-nav-badge {
    margin-left: auto;
    background: #DC2626;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    min-width: 22px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(220, 38, 38, 0.35);
}

/* Mini form "Envoyer message" séparé */
.vdash-msg-send-form {
    background: #f8fafb;
    border: 1px dashed #228777;
    border-radius: 10px;
    padding: 14px;
}
.vdash-msg-send-form textarea {
    background: #fff !important;
}
.vdash-msg-send-btn {
    width: 100%;
    margin-top: 10px;
    padding: 12px 20px;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════
   v2.10.14 — Galerie multi-images sur form produit vendeur
═══════════════════════════════════════════════════ */
.vdash-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin: 10px 0;
}
.vdash-gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e7eced;
    background: #f6f8f9;
}
.vdash-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vdash-gallery-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    cursor: pointer;
    display: inline-block;
}
.vdash-gallery-remove input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.vdash-gallery-remove span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.95);
    color: #DC2626;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: background .15s ease, transform .15s ease;
}
.vdash-gallery-remove:hover span {
    background: #DC2626;
    color: #fff;
    transform: scale(1.05);
}
.vdash-gallery-remove input:checked + span {
    background: #DC2626;
    color: #fff;
    transform: scale(1.1);
}
.vdash-gallery-remove input:checked ~ * {
    /* effet visuel quand cochée */
}
.vdash-gallery-item:has(input:checked) {
    opacity: 0.5;
    transform: scale(0.95);
    transition: all .2s ease;
}
.vdash-gallery-item:has(input:checked)::after {
    content: '🗑 Sera supprimée';
    position: absolute;
    inset: auto 0 0 0;
    background: rgba(220, 38, 38, 0.92);
    color: #fff;
    text-align: center;
    padding: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   v2.10.15 — Commandes vendeur (liste + détail)
═══════════════════════════════════════════════════ */

/* Card commande dans la liste */
.vdash-order-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 0 0 24px;
}
.vdash-order-card {
    display: block;
    background: #fff;
    border: 1px solid #e7eced;
    border-radius: 10px;
    padding: 14px 18px;
    text-decoration: none;
    color: inherit;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.vdash-order-card:hover {
    transform: translateX(2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    border-color: #228777;
}
.vdash-order-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}
.vdash-order-num {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a2a2e;
}
.vdash-order-date {
    font-size: 0.78rem;
    color: #5a6a6e;
    margin-top: 2px;
}
.vdash-order-status {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.vdash-order-status-warn { background: #FEF3C7; color: #92400E; }
.vdash-order-status-progress { background: #DBEAFE; color: #1E40AF; }
.vdash-order-status-ok { background: #DCFCE7; color: #15803D; }
.vdash-order-status-mute { background: #F1F5F9; color: #475569; }
.vdash-order-status-danger { background: #FEE2E2; color: #991B1B; }
.vdash-order-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid #f0f3f4;
}
.vdash-order-card-body strong {
    color: #228777;
    font-size: 1.15rem;
    margin-right: 8px;
}
.vdash-order-card-body span {
    color: #5a6a6e;
    font-size: 0.85rem;
}
.vdash-order-cta {
    color: #228777;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Détail commande */
.vdash-order-detail {
    display: grid;
    gap: 18px;
}
.vdash-order-section {
    background: #fff;
    border: 1px solid #e7eced;
    border-radius: 12px;
    padding: 20px;
}
.vdash-order-section h2 {
    font-size: 1.05rem;
    margin: 0 0 14px;
    color: #228777;
}
.vdash-order-items {
    width: 100%;
    border-collapse: collapse;
}
.vdash-order-items th,
.vdash-order-items td {
    text-align: left;
    padding: 10px 8px;
    border-bottom: 1px solid #f0f3f4;
    font-size: 0.88rem;
}
.vdash-order-items th {
    background: #f6f8f9;
    font-weight: 700;
    color: #1a2a2e;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.vdash-order-items tfoot td {
    border-top: 2px solid #228777;
    border-bottom: 0;
    padding-top: 14px;
}
.vdash-order-prod {
    display: flex;
    align-items: center;
    gap: 10px;
}
.vdash-order-prod img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.vdash-order-customer-row {
    display: flex;
    gap: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f3f4;
}
.vdash-order-customer-row:last-child { border-bottom: 0; }
.vdash-order-customer-row strong {
    width: 130px;
    flex-shrink: 0;
    color: #5a6a6e;
    font-size: 0.85rem;
}
.vdash-order-customer-row span {
    color: #1a2a2e;
    font-weight: 600;
}
.vdash-order-shipping-note {
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
    border: 1px solid #0EA5E9;
    border-left: 4px solid #0369A1;
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: 14px;
    font-size: 0.88rem;
    color: #0C4A6E;
    line-height: 1.5;
}
.vdash-order-shipping-note small { display: block; margin-top: 4px; opacity: 0.85; }

/* Card "Commandes à préparer" dans l'encart attention */
.vdash-attention-card-orders {
    background: linear-gradient(135deg, #FEF3C7 0%, #FED7AA 100%);
    border-color: #F97316;
    color: #7C2D12;
}

/* ═══════════════════════════════════════════════════
   v2.10.42 — VARIANTES INFO (bleu/teal) pour messages NON critiques
   Le rouge urgent (vdash-msg-alert, vdash-prod-msg-snippet, vdash-attention-card-msg)
   est désormais réservé aux produits "modifs demandées" ou "rejetés".
   Quand le message porte sur un produit en cours de validation ou publié,
   on bascule sur ces variantes bleu informatif (couleur teal du brand).
═══════════════════════════════════════════════════ */

/* Card "X messages non-lus" sur dashboard home — version info (pas de pulse rouge) */
.vdash-attention-card-msg-info {
    background: linear-gradient(135deg, #E6F7F4 0%, #BFEBE2 100%);
    border-color: #228777;
    color: #0e4f44;
    /* Pas d'animation pulse : le bandeau n'est pas urgent. */
}

/* Bandeau en haut de la liste produits — version info */
.vdash-msg-alert.vdash-msg-alert-info {
    background: linear-gradient(135deg, #228777 0%, #1a6e62 100%);
    box-shadow: 0 6px 18px rgba(34, 135, 119, 0.28);
    animation: none;
}
.vdash-msg-alert.vdash-msg-alert-info .vdash-msg-alert-cta {
    color: #228777 !important;
}
.vdash-msg-alert.vdash-msg-alert-info .vdash-msg-alert-cta:hover {
    color: #0e4f44 !important;
}

/* Snippet message sur card produit — version info */
.vdash-prod-msg-snippet.vdash-prod-msg-snippet-info {
    background: #E6F7F4;
    border-left-color: #228777;
}
.vdash-prod-msg-snippet.vdash-prod-msg-snippet-info strong {
    color: #0e4f44;
}
.vdash-prod-msg-snippet.vdash-prod-msg-snippet-info span {
    color: #0e4f44;
}

@media (max-width: 720px) {
    .vdash-order-items {
        font-size: 0.78rem;
    }
    .vdash-order-prod {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .vdash-order-prod img { width: 32px; height: 32px; }
    .vdash-order-customer-row {
        flex-direction: column;
        gap: 2px;
    }
    .vdash-order-customer-row strong { width: auto; }
}

/* ═══════════════════════════════════════════════════
   v2.10.16 — Édition profil vendeur (sections read-only)
═══════════════════════════════════════════════════ */
.vdash-fs-readonly {
    background: linear-gradient(135deg, #f8fafb 0%, #f1f5f9 100%);
    border-color: #cbd5e1;
}
.vdash-fs-readonly legend {
    color: #475569;
}
.vdash-readonly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 6px;
}
.vdash-readonly-field {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 12px;
    background: #fff;
    border-radius: 8px;
    border: 1px dashed #cbd5e1;
}
.vdash-readonly-field .vdash-lbl {
    font-size: 0.75rem;
    color: #5a6a6e;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
}
.vdash-readonly-val {
    font-weight: 600;
    font-size: 0.92rem;
    color: #1a2a2e;
}

/* Bouton "Voir ma boutique publique" dans le header */
.vdash-welcome-row .btn-outline-primary {
    align-self: center;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════
   v2.10.17 — Retraits vendeur
═══════════════════════════════════════════════════ */
.vdash-payout-balance-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 12px;
    margin: 0 0 24px;
}
.vdash-balance-card {
    background: #fff;
    border: 1px solid #e7eced;
    border-radius: 12px;
    padding: 16px 18px;
}
.vdash-balance-card-main {
    background: linear-gradient(135deg, #228777 0%, #32B2A0 100%);
    border-color: #228777;
    color: #fff;
    grid-row: span 1;
}
.vdash-balance-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
    margin-bottom: 6px;
}
.vdash-balance-num {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.vdash-balance-num span { font-size: 1rem; font-weight: 400; opacity: 0.8; }
.vdash-balance-num-sm {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2a2e;
    margin-bottom: 4px;
}
.vdash-balance-card-main .vdash-balance-num-sm { color: #fff; }
.vdash-balance-help {
    font-size: 0.78rem;
    opacity: 0.7;
}
.vdash-balance-card-main .vdash-balance-help { opacity: 0.85; }

.vdash-payout-form-fs {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 30%);
    border-color: #F59E0B;
}
.vdash-payout-form-fs legend {
    color: #92400E;
}

.vdash-payout-table {
    width: 100%;
    background: #fff;
    border: 1px solid #e7eced;
    border-radius: 10px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}
.vdash-payout-table th,
.vdash-payout-table td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #f0f3f4;
    font-size: 0.88rem;
}
.vdash-payout-table th {
    background: #f6f8f9;
    font-weight: 700;
    color: #1a2a2e;
    font-size: 0.78rem;
    text-transform: uppercase;
}
.vdash-payout-table tr:last-child td { border-bottom: 0; }
.vdash-payout-table code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.78rem;
}

@media (max-width: 720px) {
    .vdash-payout-balance-grid {
        grid-template-columns: 1fr;
    }
    .vdash-balance-num { font-size: 1.8rem; }
    .vdash-payout-table { font-size: 0.78rem; }
    .vdash-payout-table th, .vdash-payout-table td { padding: 8px 6px; }
}

/* ═══════════════════════════════════════════════════
   v2.10.19 — Logistique : Timeline et statut sur fiche commande vendeur
═══════════════════════════════════════════════════ */
.vdash-log-status-display {
    margin-bottom: 16px;
}
.vdash-log-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6px;
    padding: 18px 8px 6px;
    position: relative;
}
.vdash-log-timeline::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: #e7eced;
    z-index: 0;
}
.vdash-log-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}
.vdash-log-step-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 2px solid #e7eced;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-size: 1.2rem;
    transition: all .2s ease;
}
.vdash-log-step.reached .vdash-log-step-icon {
    background: #228777;
    border-color: #228777;
    color: #fff;
}
.vdash-log-step.is-now .vdash-log-step-icon {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(34, 135, 119, 0.18);
}
.vdash-log-step-label {
    font-size: 0.72rem;
    color: #5a6a6e;
    line-height: 1.2;
    font-weight: 600;
}
.vdash-log-step.reached .vdash-log-step-label { color: #228777; }
.vdash-log-step.is-now .vdash-log-step-label { color: #1a2a2e; font-weight: 700; }

@media (max-width: 720px) {
    .vdash-log-timeline { gap: 2px; }
    .vdash-log-step-icon { width: 36px; height: 36px; font-size: 1rem; }
    .vdash-log-step-label { font-size: 0.62rem; }
    .vdash-log-timeline::before { left: 18px; right: 18px; top: 32px; }
}

/* ═══════════════════════════════════════════════════
   v2.10.37 — CARROUSEL VENDEURS sur la home (auto-slide)
═══════════════════════════════════════════════════ */
.dlb-vendors-carousel {
    padding: 36px 0 28px;
    background: linear-gradient(180deg, #fff 0%, #f4faf9 100%);
}
.dlb-vc-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; margin-bottom: 18px; flex-wrap: wrap;
}
.dlb-vc-title {
    margin: 0; font-size: 1.4rem; font-weight: 700; color: #1a2a2e;
    display: flex; align-items: center; gap: 10px;
}
.dlb-vc-icon { font-size: 1.6rem; }
.dlb-vc-sub {
    font-size: 0.82rem; font-weight: 500; color: #228777;
    background: #E6F7F4; padding: 4px 12px; border-radius: 100px;
    margin-left: 6px;
}
.dlb-vc-actions { display: flex; align-items: center; gap: 8px; }
.dlb-vc-arrow {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid #cbe6e0; background: #fff; color: #228777;
    font-size: 1.4rem; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .15s;
}
.dlb-vc-arrow:hover { background: #228777; color: #fff; border-color: #228777; transform: translateY(-1px); }
.dlb-vc-arrow:disabled { opacity: 0.4; cursor: not-allowed; }
.dlb-vc-allbtn {
    margin-left: 6px; color: #228777; font-weight: 600;
    text-decoration: none; font-size: 0.9rem;
    padding: 8px 14px; border-radius: 8px; transition: background .15s;
}
.dlb-vc-allbtn:hover { background: #E6F7F4; }

.dlb-vc-track-wrap { overflow: hidden; position: relative; }
.dlb-vc-track {
    display: flex; gap: 16px;
    transition: transform .55s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}
.dlb-vc-card {
    flex: 0 0 calc(25% - 12px);
    min-width: 240px;
    background: #fff; border-radius: 14px; overflow: hidden;
    text-decoration: none; color: inherit;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #ebf3f1;
    transition: transform .2s, box-shadow .2s;
    display: flex; flex-direction: column;
}
.dlb-vc-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(34,135,119,.15); }
.dlb-vc-card-header {
    height: 64px;
    background: linear-gradient(135deg, #228777 0%, #32B2A0 100%);
    position: relative;
}
.dlb-vc-card-logo {
    width: 72px; height: 72px; border-radius: 50%;
    background: #fff; padding: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    margin: -36px auto 0; position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.dlb-vc-card-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.dlb-vc-card-body {
    padding: 12px 14px 14px; text-align: center;
    display: flex; flex-direction: column; gap: 6px;
    flex: 1;
}
.dlb-vc-card-name-row {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    flex-wrap: wrap;
}
.dlb-vc-card-name { font-weight: 700; font-size: 0.96rem; color: #1a2a2e; }
.dlb-vc-card-city { font-size: 0.78rem; color: #5a6a6e; }
.dlb-vc-card-stats {
    font-size: 0.78rem; color: #5a6a6e; margin-top: 2px;
}
.dlb-vc-card-stats strong { color: #228777; }
.dlb-vc-stat-sep { margin: 0 4px; opacity: 0.5; }
.dlb-vc-card-cta {
    margin-top: 8px; font-size: 0.82rem; font-weight: 600;
    color: #228777;
}

.dlb-vc-footer {
    margin-top: 18px; padding: 14px 18px;
    background: #E6F7F4; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    gap: 14px; flex-wrap: wrap;
}
.dlb-vc-footer-txt { color: #0e4f44; font-weight: 500; font-size: 0.94rem; }
.dlb-vc-cta-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 18px; background: #228777; color: #fff !important;
    border-radius: 100px; text-decoration: none; font-weight: 700;
    font-size: 0.88rem; transition: background .15s, transform .15s;
}
.dlb-vc-cta-pill:hover { background: #1a6f60; transform: translateY(-1px); }

@media (max-width: 1100px) {
    .dlb-vc-card { flex: 0 0 calc(33.333% - 11px); }
}
@media (max-width: 820px) {
    .dlb-vc-card { flex: 0 0 calc(50% - 8px); }
    .dlb-vc-title { font-size: 1.15rem; }
}
@media (max-width: 560px) {
    .dlb-vc-card { flex: 0 0 75%; }
    .dlb-vc-actions .dlb-vc-allbtn { display: none; }
}

/* ═══════════════════════════════════════════════════
   v2.10.37 — REFONTE /vendeurs/ archive
═══════════════════════════════════════════════════ */
.dlb-vendors-archive {
    background: #f4f7f8; min-height: 60vh; padding: 28px 0 60px;
}
.dlb-va-hero {
    background: linear-gradient(135deg, #228777 0%, #32B2A0 100%);
    color: #fff; padding: 50px 0 40px; margin-bottom: 28px;
    position: relative; overflow: hidden;
}
.dlb-va-hero::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 280px; height: 280px; border-radius: 50%;
    background: rgba(255,255,255,0.07);
}
.dlb-va-hero::after {
    content: ''; position: absolute; bottom: -60px; left: 10%;
    width: 180px; height: 180px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.dlb-va-hero-inner { position: relative; z-index: 2; text-align: center; }
.dlb-va-crumbs { font-size: 0.82rem; opacity: 0.9; margin-bottom: 12px; }
.dlb-va-crumbs a { color: #fff; text-decoration: none; }
.dlb-va-crumbs .sep { margin: 0 6px; opacity: 0.6; }
.dlb-va-icon { font-size: 3rem; margin-bottom: 12px; }
.dlb-va-title { color: #fff; font-size: 2rem; font-weight: 800; margin: 0 0 10px; }
.dlb-va-desc { font-size: 1rem; opacity: 0.92; max-width: 600px; margin: 0 auto; }
.dlb-va-counter {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 8px 18px; border-radius: 100px;
    font-weight: 600; margin-top: 16px;
}
.dlb-va-counter strong { font-size: 1.2rem; }

.dlb-va-filters {
    background: #fff; padding: 16px; border-radius: 12px;
    margin-bottom: 24px; box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.dlb-va-filters-lbl { font-weight: 600; color: #1a2a2e; font-size: 0.92rem; }
.dlb-va-filters select,
.dlb-va-filters input[type=search] {
    padding: 8px 12px; border: 1px solid #d8e3e1; border-radius: 8px;
    font-size: 0.92rem; background: #fff;
}
.dlb-va-filters input[type=search] { min-width: 200px; }

.dlb-va-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}
.dlb-va-card {
    background: #fff; border-radius: 14px; overflow: hidden;
    text-decoration: none; color: inherit;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #ebf3f1;
    transition: transform .2s, box-shadow .2s;
    display: flex; flex-direction: column;
}
.dlb-va-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(34,135,119,.18); }
.dlb-va-card-cover {
    height: 70px;
    background: linear-gradient(135deg, #228777 0%, #32B2A0 100%);
}
.dlb-va-card-logo {
    width: 80px; height: 80px; border-radius: 50%;
    background: #fff; padding: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,.14);
    margin: -40px auto 8px; position: relative; z-index: 2;
    overflow: hidden;
}
.dlb-va-card-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.dlb-va-card-body { padding: 4px 16px 18px; text-align: center; }
.dlb-va-card-name {
    font-weight: 700; font-size: 1.02rem; color: #1a2a2e;
    margin-bottom: 4px;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    flex-wrap: wrap;
}
.dlb-va-card-city { font-size: 0.82rem; color: #5a6a6e; margin-bottom: 8px; }
.dlb-va-card-stats {
    font-size: 0.84rem; color: #5a6a6e;
    padding: 8px; background: #f4faf9; border-radius: 8px;
    margin-bottom: 10px;
}
.dlb-va-card-stats strong { color: #228777; font-size: 1.05rem; }
.dlb-va-card-cta {
    display: inline-block; padding: 8px 18px;
    background: #228777; color: #fff !important;
    border-radius: 100px; font-weight: 600; font-size: 0.86rem;
    text-decoration: none;
}
.dlb-va-empty {
    text-align: center; padding: 60px 20px;
    background: #fff; border-radius: 14px;
    color: #5a6a6e;
}
.dlb-va-empty-ico { font-size: 4rem; margin-bottom: 14px; }

/* ═══════════════════════════════════════════════════
   v2.10.37 — DEVENIR VENDEUR multi-step UI
═══════════════════════════════════════════════════ */
.dlb-vsignup-form.dlb-stepper { position: relative; }
.dlb-vsignup-form.dlb-stepper .vsign-step { display: none; }
.dlb-vsignup-form.dlb-stepper .vsign-step.is-active { display: block; }
.dlb-stepbar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 4px; margin: 0 0 28px; padding: 0; list-style: none;
    background: #f4f7f8; border-radius: 12px; padding: 12px 16px;
    position: relative;
}
.dlb-stepbar-item {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    gap: 6px; font-size: 0.78rem; color: #94a3b8; font-weight: 500;
    text-align: center; position: relative;
}
.dlb-stepbar-item::before {
    content: ''; position: absolute; top: 14px; left: -50%;
    width: 100%; height: 2px; background: #d8e3e1; z-index: 0;
}
.dlb-stepbar-item:first-child::before { display: none; }
.dlb-stepbar-num {
    width: 30px; height: 30px; border-radius: 50%;
    background: #fff; border: 2px solid #d8e3e1;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.88rem; color: #94a3b8;
    position: relative; z-index: 1;
    transition: all .25s;
}
.dlb-stepbar-item.is-done .dlb-stepbar-num,
.dlb-stepbar-item.is-active .dlb-stepbar-num {
    background: #228777; border-color: #228777; color: #fff;
}
.dlb-stepbar-item.is-done::before,
.dlb-stepbar-item.is-active::before {
    background: #228777;
}
.dlb-stepbar-item.is-active { color: #228777; font-weight: 700; }
.dlb-stepbar-item.is-done { color: #228777; }
.dlb-stepbar-item.is-done .dlb-stepbar-num::after {
    content: '✓'; font-size: 0.92rem;
}
.dlb-stepbar-item.is-done .dlb-stepbar-num { font-size: 0; }

.dlb-step-nav {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; margin-top: 24px; padding-top: 20px;
    border-top: 1px solid #e7eced;
}
.dlb-step-nav button {
    padding: 11px 22px; border-radius: 10px;
    font-weight: 700; font-size: 0.92rem; cursor: pointer;
    border: 0; transition: all .15s;
}
.dlb-step-back { background: #f4f7f8; color: #1a2a2e; }
.dlb-step-back:hover { background: #e6ecee; }
.dlb-step-next, .dlb-step-submit {
    background: linear-gradient(135deg, #228777 0%, #32B2A0 100%);
    color: #fff; box-shadow: 0 4px 14px rgba(34,135,119,.25);
}
.dlb-step-next:hover, .dlb-step-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(34,135,119,.35); }

.vsign-summary-block {
    background: #f4faf9; border: 1px solid #cbe6e0;
    border-radius: 12px; padding: 16px; margin-bottom: 14px;
}
.vsign-summary-block h4 {
    margin: 0 0 8px; font-size: 0.92rem; color: #228777;
    display: flex; align-items: center; gap: 8px;
}
.vsign-summary-row {
    display: flex; justify-content: space-between; padding: 5px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid #e7f0ee;
}
.vsign-summary-row:last-child { border-bottom: 0; }
.vsign-summary-row span:first-child { color: #5a6a6e; }
.vsign-summary-row span:last-child { color: #1a2a2e; font-weight: 600; }

@media (max-width: 560px) {
    .dlb-stepbar-item { font-size: 0.68rem; }
    .dlb-step-nav { flex-direction: column-reverse; gap: 10px; }
    .dlb-step-nav button { width: 100%; }
}

/* ═══════════════════════════════════════════════════
   v2.10.38 — RANGÉE VENDEURS sur page boutique
═══════════════════════════════════════════════════ */
.dlb-shop-vendors {
    margin: 0 0 28px;
    padding: 20px;
    background: linear-gradient(135deg, #f4faf9 0%, #E6F7F4 100%);
    border-radius: 14px;
    border: 1px solid #cbe6e0;
}
.dlb-sv-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; flex-wrap: wrap; margin-bottom: 14px;
}
.dlb-sv-title {
    margin: 0; font-size: 1.1rem; font-weight: 700; color: #1a2a2e;
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.dlb-sv-icon { font-size: 1.3rem; }
.dlb-sv-sub {
    font-size: 0.78rem; font-weight: 500; color: #228777;
    background: #fff; padding: 3px 10px; border-radius: 100px;
}
.dlb-sv-all {
    color: #228777; font-weight: 600; text-decoration: none;
    font-size: 0.9rem; padding: 6px 12px; border-radius: 8px;
    background: #fff; transition: background .15s;
}
.dlb-sv-all:hover { background: #228777; color: #fff; }

.dlb-sv-scroll {
    display: flex; gap: 12px; overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.dlb-sv-scroll::-webkit-scrollbar { height: 6px; }
.dlb-sv-scroll::-webkit-scrollbar-thumb { background: #cbe6e0; border-radius: 3px; }
.dlb-sv-card {
    flex: 0 0 auto;
    width: 140px; padding: 12px 10px;
    background: #fff; border-radius: 12px;
    text-decoration: none; color: inherit;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    transition: transform .2s, box-shadow .2s;
    scroll-snap-align: start;
}
.dlb-sv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(34,135,119,.18);
}
.dlb-sv-card-logo {
    width: 60px; height: 60px; border-radius: 50%;
    overflow: hidden; margin: 0 auto 8px;
    border: 2px solid #E6F7F4;
}
.dlb-sv-card-logo img { width: 100%; height: 100%; object-fit: cover; }
.dlb-sv-card-name {
    font-weight: 700; font-size: 0.84rem; color: #1a2a2e;
    margin-bottom: 4px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dlb-sv-card-meta {
    font-size: 0.72rem; color: #5a6a6e; margin-top: 2px;
}
.dlb-sv-card-meta strong { color: #228777; }

@media (max-width: 600px) {
    .dlb-sv-card { width: 120px; }
    .dlb-sv-all { display: none; }
}

/* ═══════════════════════════════════════════════════
   v2.10.38 — Polish bloc "Vendeurs spécialisés [catégorie]"
   (existant depuis v2.8 — ici on rafraîchit le visuel)
═══════════════════════════════════════════════════ */
.dlb-cat-vendors {
    margin: 18px 0 24px; padding: 18px 20px;
    background: linear-gradient(135deg, #f4faf9 0%, #E6F7F4 100%);
    border-radius: 14px; border: 1px solid #cbe6e0;
}
.dlb-cv-head { margin-bottom: 12px; }
.dlb-cv-title {
    margin: 0; font-size: 1.05rem; font-weight: 700; color: #1a2a2e;
    display: flex; align-items: center; gap: 8px;
}
.dlb-cv-row {
    display: flex; gap: 12px; overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}
.dlb-cv-row::-webkit-scrollbar { height: 6px; }
.dlb-cv-row::-webkit-scrollbar-thumb { background: #cbe6e0; border-radius: 3px; }
.dlb-cv-card {
    flex: 0 0 auto;
    display: flex; align-items: center; gap: 10px;
    padding: 8px 14px 8px 8px;
    background: #fff; border-radius: 100px;
    text-decoration: none; color: inherit;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    transition: transform .2s, box-shadow .2s;
    border: 1px solid #ebf3f1;
}
.dlb-cv-card:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(34,135,119,.18); border-color: #32B2A0; }
.dlb-cv-logo {
    width: 42px; height: 42px; border-radius: 50%;
    overflow: hidden; flex-shrink: 0;
}
.dlb-cv-logo img { width: 100%; height: 100%; object-fit: cover; }
.dlb-cv-name-wrap { display: flex; align-items: center; gap: 6px; }
.dlb-cv-name { font-weight: 600; font-size: 0.88rem; color: #1a2a2e; }
