/**
 * Marketplace — grille produits, navigation et footer e-commerce
 */

/* ——— Accueil hero ——— */
.boutique-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 5rem 1rem 3rem;
    overflow: hidden;
}
.boutique-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 85% 70% at 50% 35%, black 15%, transparent 72%);
    pointer-events: none;
}
.boutique-hero-glow {
    position: absolute;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.32;
    top: -8rem;
    right: -10rem;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.55), transparent 70%);
    pointer-events: none;
}
.boutique-hero-glow2 {
    position: absolute;
    width: 32rem;
    height: 32rem;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    bottom: -5rem;
    left: -8rem;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4), transparent 70%);
    pointer-events: none;
}
.boutique-kicker {
    letter-spacing: 0.28em;
    font-size: 0.62rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 0.85rem;
}
.boutique-hero h1 {
    font-size: clamp(2.35rem, 5.5vw, 3.85rem);
    font-weight: 900;
    line-height: 1.06;
    margin-bottom: 1.1rem;
}
.boutique-hero-lead {
    max-width: 26rem;
    color: rgba(209, 213, 219, 0.92);
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}
.boutique-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}
.boutique-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}
.boutique-stat strong {
    color: #fff;
    font-weight: 800;
}
.boutique-panel {
    position: relative;
    border-radius: 1.65rem;
    padding: 1.35rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}
.boutique-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.45), transparent 42%, rgba(16, 185, 129, 0.22));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ——— Grille produits ——— */
.boutique-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
@media (min-width: 768px) {
    .boutique-toolbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.boutique-search-wrap {
    flex: 1;
    max-width: 28rem;
    position: relative;
}
.boutique-search-wrap svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.1rem;
    height: 1.1rem;
    color: rgba(255, 255, 255, 0.32);
    pointer-events: none;
}
.boutique-search {
    width: 100%;
    padding: 0.82rem 1rem 0.82rem 2.65rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(0, 0, 0, 0.38);
    color: #fff;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.boutique-search:focus {
    border-color: rgba(255, 59, 59, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.1);
}
.boutique-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: flex-end;
}
.boutique-chip {
    padding: 0.42rem 0.95rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    transition: transform 0.15s, border-color 0.15s, background 0.15s;
}
.boutique-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 59, 59, 0.32);
}
.boutique-chip-active {
    border-color: rgba(255, 59, 59, 0.65);
    background: linear-gradient(135deg, rgba(182, 28, 28, 0.32), rgba(255, 59, 59, 0.18));
    color: #fff;
}
.boutique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
    gap: 1.25rem;
}
.boutique-card {
    border-radius: 1.28rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.035);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.35s;
    animation: boutiqueIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes boutiqueIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.boutique-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 59, 59, 0.12);
    border-color: rgba(255, 59, 59, 0.22);
}
.boutique-card-media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #0a0a0a;
    overflow: hidden;
}
.boutique-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.boutique-card:hover .boutique-card-img {
    transform: scale(1.05);
}
.boutique-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.22);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.boutique-card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.06) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.85s ease;
}
.boutique-card:hover .boutique-card-shine {
    transform: translateX(100%);
}
.boutique-card-badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    padding: 0.22rem 0.58rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.boutique-card-pro {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
    padding: 0.2rem 0.5rem;
    border-radius: 0.35rem;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 250, 240, 0.98);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.92), rgba(180, 120, 40, 0.88));
    border: 1px solid rgba(255, 220, 150, 0.35);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}
.boutique-card-body {
    padding: 1rem 1.05rem 1.15rem;
}
.boutique-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.32;
    margin-bottom: 0.32rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.boutique-card-price {
    font-size: 1.08rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffb3b3, #ff3b3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}
.boutique-card-cta {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.boutique-card-cta:hover {
    color: #ff6b6b;
}
.boutique-loading {
    text-align: center;
    padding: 3.5rem 1rem;
    color: rgba(255, 255, 255, 0.42);
}
.boutique-loading-pulse {
    width: 2.75rem;
    height: 2.75rem;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 59, 59, 0.22);
    border-top-color: #ff3b3b;
    animation: mp-spin 0.85s linear infinite;
}
@keyframes mp-spin {
    to {
        transform: rotate(360deg);
    }
}
.boutique-empty,
.boutique-error {
    text-align: center;
    padding: 2.75rem 1.35rem;
    border-radius: 1.15rem;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.48);
}
.boutique-error {
    border-color: rgba(255, 59, 59, 0.32);
    color: rgba(254, 202, 202, 0.88);
}
.mp-btn-load {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 0;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.mp-btn-load:hover {
    background: rgba(255, 59, 59, 0.15);
    border-color: rgba(255, 59, 59, 0.4);
    transform: translateY(-1px);
}
.mp-btn-load:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

/* ——— Carte boutique vendeur ——— */
.mp-shop-card {
    border-radius: 1.35rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    animation: boutiqueIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.mp-shop-card--pro {
    border-color: rgba(234, 179, 8, 0.35);
    box-shadow: 0 0 0 1px rgba(234, 179, 8, 0.08), 0 12px 40px rgba(0, 0, 0, 0.35);
}
.mp-shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(16, 185, 129, 0.25);
}
.mp-shop-card--pro:hover {
    border-color: rgba(250, 204, 21, 0.45);
}
.mp-shop-cover-wrap {
    position: relative;
}
.mp-shop-pro-ribbon {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    z-index: 2;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.28rem 0.5rem;
    border-radius: 0.45rem;
    color: #0a0a0a;
    background: linear-gradient(135deg, #fde047, #eab308);
    box-shadow: 0 4px 14px rgba(234, 179, 8, 0.35);
}
.mp-shop-cover {
    height: 6.5rem;
    background-size: cover;
    background-position: center;
    position: relative;
}
.mp-shop-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 55%);
}
.mp-shop-avatar {
    position: relative;
    margin: -2.25rem auto 0;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1.1rem;
    border: 3px solid rgba(0, 0, 0, 0.9);
    object-fit: cover;
    display: block;
    z-index: 1;
    background: linear-gradient(135deg, #b91c1c, #f87171);
}
.mp-shop-body {
    padding: 0.65rem 1.15rem 1.25rem;
    text-align: center;
}
.mp-shop-name {
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}
.mp-shop-meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.25rem;
}
.mp-shop-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.4);
}
.mp-shop-stats strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0;
}

.mp-shop-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 0.65rem;
    margin-top: 0.85rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mp-shop-stat {
    text-align: center;
    min-width: 0;
}
.mp-shop-stat__label {
    display: block;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 0.2rem;
    line-height: 1.2;
}
.mp-shop-stat__viewport {
    display: block;
    overflow: hidden;
    height: 1.35em;
    line-height: 1.35em;
}
/* Défilement vertical type rotateur recherche (ecom-text-rotator) */
.mp-shop-stat__viewport--rot {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 1.35em;
}
.mp-shop-stat-scroll-root {
    display: inline-block;
    vertical-align: bottom;
    text-align: center;
}
.mp-shop-stat-scroll-root.ecom-text-rotator-viewport,
.mp-shop-stat-rotator-viewport.ecom-text-rotator-viewport {
    text-align: center;
}
.mp-shop-stat-rotator-viewport {
    display: inline-block;
    vertical-align: bottom;
    overflow: hidden;
    position: relative;
    text-align: center;
    will-change: transform;
}
.mp-shop-stat-rotator-viewport .ecom-text-rotator-track {
    will-change: transform;
}
.mp-shop-stat-rotator-line {
    display: block;
    font-size: 1.02rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.35;
    white-space: nowrap;
}
.mp-shop-stat-rotator-static {
    font-size: 1.02rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.35;
    display: inline-block;
}
.mp-shop-link {
    display: block;
    margin-top: 1rem;
    padding: 0.55rem;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fca5a5;
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s, background 0.2s;
}
.mp-shop-link:hover {
    color: #fff;
    background: rgba(255, 59, 59, 0.12);
}
/* Badge certifié : rosette 12 lobes + coche (icône type patch vérifié, rendu plat) */
.mp-verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 0.28rem;
    vertical-align: -0.2em;
}
.mp-verified-badge__svg {
    display: block;
    width: 18px;
    height: 18px;
}

/* ——— Navigation marketplace ——— */
.mp-navbar {
    background: rgba(5, 5, 8, 0.78) !important;
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}
.mp-navbar.scrolled {
    background: rgba(4, 4, 6, 0.94) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(255, 59, 59, 0.12);
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mp-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    border-radius: 1rem;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.mp-brand--logo-only {
    padding: 2px;
    border-radius: 1rem;
}
.mp-brand--logo-only:hover {
    transform: scale(1.04);
    box-shadow: 0 0 0 1px rgba(255, 59, 59, 0.35), 0 12px 40px rgba(182, 28, 28, 0.25);
}
.mp-brand--logo-only:focus-visible {
    outline: 2px solid rgba(255, 59, 59, 0.7);
    outline-offset: 3px;
}
.mp-brand img {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
    .mp-brand img {
        width: 3rem;
        height: 3rem;
        border-radius: 0.9rem;
    }
}

/* Boutons nav (Connexion / Inscription) */
.mp-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.mp-nav-btn--ghost {
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.mp-nav-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}
.mp-nav-btn--solid {
    color: #fff;
    background: linear-gradient(135deg, #9f1414, #ff3b3b);
    border: 1px solid rgba(255, 80, 80, 0.4);
    box-shadow: 0 4px 20px rgba(182, 28, 28, 0.35);
}
.mp-nav-btn--solid:hover {
    box-shadow: 0 6px 28px rgba(255, 59, 59, 0.45);
    transform: translateY(-1px);
}
.mp-nav-user-btn {
    color: rgba(255, 255, 255, 0.9);
}
.mp-nav-inner {
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    flex-wrap: nowrap;
    min-width: 0;
}
@media (min-width: 1024px) {
    .mp-nav-inner {
        display: flex;
    }
}

/* Barre unique : pills + liens site sur une seule ligne */
.mp-nav-bar-unified {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-end;
    padding: 0.22rem 0.5rem 0.22rem 0.28rem;
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 24px rgba(0, 0, 0, 0.2);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 59, 59, 0.35) transparent;
}
.mp-nav-bar-unified::-webkit-scrollbar {
    height: 4px;
}
.mp-nav-bar-unified::-webkit-scrollbar-thumb {
    background: rgba(255, 59, 59, 0.35);
    border-radius: 4px;
}
.mp-nav-bar-divider {
    width: 1px;
    height: 1.4rem;
    flex-shrink: 0;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255, 255, 255, 0.18) 20%,
        rgba(255, 255, 255, 0.18) 80%,
        transparent
    );
    margin: 0 0.15rem;
}
.mp-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.mp-pill-tray {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    flex-shrink: 0;
    border-radius: 999px;
    background: transparent;
    border: none;
}
.mp-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.48rem 0.95rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.mp-pill-icon {
    width: 1.05rem;
    height: 1.05rem;
    opacity: 0.78;
    flex-shrink: 0;
}
.mp-pill:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}
.mp-pill.is-active {
    color: #fff;
    background: linear-gradient(135deg, #9f1414, #ff3b3b);
    box-shadow: 0 4px 18px rgba(182, 28, 28, 0.35);
}
.mp-pill-pro {
    color: rgba(253, 224, 71, 0.95);
}
.mp-pill-pro:hover {
    color: #fef08a;
    background: rgba(234, 179, 8, 0.12);
}
.mp-pill-pro.is-active {
    background: linear-gradient(135deg, #a16207, #eab308);
    color: #0a0a0a;
    box-shadow: 0 4px 22px rgba(234, 179, 8, 0.25);
}
.mp-pill-pro.is-active .mp-pill-icon {
    opacity: 1;
    color: #0a0a0a;
}
.mp-nav-legacy {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0;
    margin: 0;
    border: none;
    flex-wrap: nowrap;
    flex-shrink: 0;
}
.mp-nav-legacy a {
    font-size: 0.74rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    padding: 0.45rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}
.mp-nav-legacy a:hover {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.05);
}
.mp-nav-legacy a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Menu mobile — label + séparateur cohérents avec la barre unique */
.mp-mobile-nav-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    padding: 0 1rem 0.5rem;
    margin-bottom: 0.25rem;
}
.mp-mobile-nav-sep {
    height: 1px;
    margin: 0.65rem 1rem;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}
.mobile-menu-item-secondary {
    opacity: 0.88;
    font-size: 0.875rem;
}

/* ——— Drawer mobile (mp-drawer) ——— */
.mp-drawer {
    width: min(20.5rem, 88vw) !important;
    background: linear-gradient(165deg, rgba(12, 12, 18, 0.97) 0%, rgba(4, 4, 8, 0.99) 45%, rgba(8, 4, 6, 0.98) 100%) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.07) !important;
    box-shadow: 16px 0 48px rgba(0, 0, 0, 0.55), inset -1px 0 0 rgba(255, 59, 59, 0.06) !important;
}
.mp-drawer-header {
    padding: 1.1rem 1rem 1.1rem 1.15rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    background: linear-gradient(90deg, rgba(255, 59, 59, 0.06), transparent) !important;
}
.mp-drawer-brand {
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 1rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.mp-drawer-brand:hover {
    transform: scale(1.03);
    box-shadow: 0 0 0 1px rgba(255, 59, 59, 0.25);
}
.mp-drawer-brand img {
    width: 3rem !important;
    height: 3rem !important;
    border-radius: 0.85rem !important;
    object-fit: cover;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.mp-drawer-close {
    border-radius: 0.75rem !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.85);
}
.mp-drawer-close:hover {
    background: rgba(255, 59, 59, 0.15) !important;
    border-color: rgba(255, 59, 59, 0.35) !important;
}
.mp-drawer .mobile-menu-content {
    padding: 1.1rem 0.85rem 1.5rem;
}
.mp-drawer .mobile-menu-item {
    border-radius: 0.85rem;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.94rem;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
}
.mp-drawer .mobile-menu-item:hover {
    transform: translateX(3px);
    border-color: rgba(255, 255, 255, 0.06);
}
.mp-drawer .mobile-menu-item.active {
    border-left: none;
    border: 1px solid rgba(255, 59, 59, 0.25);
    background: linear-gradient(90deg, rgba(255, 59, 59, 0.12), rgba(255, 59, 59, 0.02)) !important;
    box-shadow: 0 4px 20px rgba(182, 28, 28, 0.15);
}
.mp-mobile-nav-label {
    padding: 0 0.65rem 0.45rem;
    margin-bottom: 0.15rem;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.28);
}
.mp-mobile-nav-sep {
    margin: 0.75rem 0.85rem;
    opacity: 0.85;
}

/* ——— Footer marketplace ——— */
.mp-footer {
    position: relative;
    margin-top: 4rem;
    padding: 3.5rem 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(182, 28, 28, 0.09), transparent 55%),
        linear-gradient(180deg, rgba(8, 8, 12, 0.5), rgba(2, 2, 4, 0.95));
    overflow: hidden;
}
.mp-footer-glow {
    pointer-events: none;
    position: absolute;
    bottom: -4rem;
    left: 10%;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.12), transparent 70%);
    filter: blur(40px);
}
.mp-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 59, 59, 0.28), transparent);
}
.mp-footer-grid {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}
@media (min-width: 640px) {
    .mp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .mp-footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}
.mp-footer-logo-link {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 3px;
    border-radius: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mp-footer-logo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(182, 28, 28, 0.2);
}
.mp-footer-logo-img {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.9rem;
    object-fit: cover;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.mp-footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    max-width: 19rem;
    margin: 0 0 0.65rem;
    font-weight: 500;
}
.mp-footer-micro {
    font-size: 0.72rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.32);
    max-width: 17rem;
    margin: 0;
}
.mp-footer-col h4 {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.34);
    margin-bottom: 1.05rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 12rem;
}
.mp-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mp-footer-col li {
    margin-bottom: 0.55rem;
}
.mp-footer-col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.52);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}
.mp-footer-col a:hover {
    color: #fecaca;
    padding-left: 3px;
}
.mp-footer-contact li {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 0.45rem;
}
.mp-footer-contact a {
    color: rgba(252, 165, 165, 0.95);
}
.mp-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.mp-footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.mp-footer-social a:hover {
    background: rgba(255, 59, 59, 0.18);
    border-color: rgba(255, 59, 59, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(182, 28, 28, 0.2);
}
.mp-footer-bottom {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.35rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.32);
}
.mp-footer-bottom-inner {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
}
.mp-footer-dot {
    opacity: 0.45;
}
.mp-footer-legal {
    color: rgba(252, 165, 165, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}
.mp-footer-legal:hover {
    color: #fff;
}

/* ——— Page abonnement ——— */
.mp-sub-hero {
    text-align: center;
    padding: 4rem 1rem 2rem;
    max-width: 42rem;
    margin: 0 auto;
}
.mp-sub-grid {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem 4rem;
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .mp-sub-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.mp-sub-card {
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.25s, transform 0.25s;
}
.mp-sub-card:hover {
    border-color: rgba(234, 179, 8, 0.25);
    transform: translateY(-3px);
}
.mp-sub-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(234, 179, 8, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #facc15;
}
.mp-sub-cta-panel {
    max-width: 40rem;
    margin: 0 auto 4rem;
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(234, 179, 8, 0.08), rgba(255, 59, 59, 0.06));
}

/* ═══════════════════════════════════════════════════════════════════════════
   Navigation — version ultra-moderne, responsive, accessibilité
   ═══════════════════════════════════════════════════════════════════════════ */

.mp-navbar-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.mp-navbar-wrap .navbar {
    position: relative;
    top: auto;
}
.mp-navbar-accent {
    height: 2px;
    width: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 59, 59, 0.45) 18%,
        rgba(251, 191, 36, 0.35) 50%,
        rgba(255, 59, 59, 0.45) 82%,
        transparent 100%
    );
    opacity: 0.9;
    pointer-events: none;
}

.mp-pill {
    position: relative;
    isolation: isolate;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.25s ease,
        transform 0.18s ease;
}
.mp-pill::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.35), transparent 55%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.mp-pill:hover::after {
    opacity: 0.45;
}
.mp-pill.is-active::after {
    opacity: 0;
}
.mp-pill.is-active {
    transform: translateY(-0.5px);
}
.mp-pill:active {
    transform: scale(0.97);
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .mp-pill-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    .mp-pill {
        padding: 0.52rem 0.58rem;
    }
    .mp-pill-icon {
        width: 1.2rem;
        height: 1.2rem;
        opacity: 0.9;
    }
}

@media (min-width: 1024px) and (max-width: 1160px) {
    .mp-nav-legacy a {
        font-size: 0.66rem;
        padding: 0.38rem 0.42rem;
    }
}

@media (min-width: 1280px) {
    .mp-nav-bar-unified {
        padding: 0.26rem 0.65rem 0.26rem 0.32rem;
    }
    .mp-pill {
        padding: 0.5rem 1.05rem;
        font-size: 0.8rem;
    }
}

/* Burger — contrôle tactile moderne */
.mp-burger {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem !important;
    align-items: center;
    justify-content: center;
    gap: 5px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease !important;
}
.mp-burger span {
    width: 1.15rem !important;
    height: 2px !important;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.88) !important;
}
.mp-burger:hover {
    background: rgba(255, 59, 59, 0.12) !important;
    border-color: rgba(255, 59, 59, 0.35) !important;
    box-shadow: 0 4px 20px rgba(182, 28, 28, 0.2);
}
.mp-burger.active {
    background: rgba(255, 59, 59, 0.18) !important;
    border-color: rgba(255, 59, 59, 0.45) !important;
}

/* Tabbar mobile — zone pouce, encoche */
@media (max-width: 1023px) {
    body.mp-site {
        padding-bottom: calc(3.55rem + env(safe-area-inset-bottom, 0px));
    }
}

.mp-tabbar {
    display: none;
}

@media (max-width: 1023px) {
    .mp-tabbar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        justify-content: space-around;
        align-items: stretch;
        padding: 0.35rem 0.25rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
        background: linear-gradient(180deg, rgba(10, 10, 14, 0.82) 0%, rgba(4, 4, 8, 0.96) 100%);
        backdrop-filter: blur(24px) saturate(160%);
        -webkit-backdrop-filter: blur(24px) saturate(160%);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
    }

    .mp-tab {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.15rem;
        min-width: 0;
        padding: 0.25rem 0.15rem;
        margin: 0 1px;
        border: none;
        border-radius: 0.75rem;
        background: transparent;
        color: rgba(255, 255, 255, 0.45);
        text-decoration: none;
        font-family: inherit;
        cursor: pointer;
        transition:
            color 0.2s ease,
            background 0.2s ease,
            transform 0.15s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mp-tab-icon {
        width: 1.35rem;
        height: 1.35rem;
        flex-shrink: 0;
        stroke-width: 2;
    }

    .mp-tab-text {
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        line-height: 1.1;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mp-tab:hover,
    .mp-tab:focus-visible {
        color: rgba(255, 255, 255, 0.85);
        background: rgba(255, 255, 255, 0.05);
        outline: none;
    }

    .mp-tab.is-active {
        color: #fecaca;
        background: linear-gradient(180deg, rgba(255, 59, 59, 0.18), transparent);
    }

    .mp-tab.is-active .mp-tab-icon {
        color: #f87171;
        filter: drop-shadow(0 0 8px rgba(248, 113, 113, 0.45));
    }

    .mp-tab--pro {
        color: rgba(253, 224, 71, 0.55);
    }
    .mp-tab--pro.is-active {
        color: #fde047;
        background: linear-gradient(180deg, rgba(234, 179, 8, 0.15), transparent);
    }
    .mp-tab--pro.is-active .mp-tab-icon {
        color: #facc15;
        filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.4));
    }

    .mp-tab--menu {
        color: rgba(255, 255, 255, 0.5);
    }
    .mp-tab--menu:hover {
        color: #fff;
    }
}

@media (min-width: 1024px) {
    body.mp-site {
        padding-bottom: 0;
    }
}

/* Réduction des animations si demandé par l’utilisateur */
@media (prefers-reduced-motion: reduce) {
    .mp-pill,
    .mp-pill::after,
    .mp-tab,
    .mp-brand--logo-only,
    .mp-nav-btn,
    .mp-burger {
        transition: none !important;
    }
    .mp-pill:active {
        transform: none;
    }
    .mp-pill.is-active {
        transform: none;
    }
}

/* ——— Cartes catalogue : lien vers page détail ——— */
a.boutique-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.boutique-card--link:focus-visible {
    outline: 2px solid rgba(255, 59, 59, 0.65);
    outline-offset: 3px;
}

/* ——— Page détail annonce v2 (annonce.php) ——— */
.mp-annonce-page {
    position: relative;
    overflow-x: hidden;
}

.mp-annonce-page .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mp-annonce-ambient {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.mp-annonce-ambient__mesh {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black, transparent);
}

.mp-annonce-ambient__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.45;
    animation: mpAnnonceGlow 14s ease-in-out infinite;
}

.mp-annonce-ambient__glow--1 {
    width: min(42rem, 90vw);
    height: min(42rem, 90vw);
    top: -12%;
    left: -8%;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.35), transparent 65%);
}

.mp-annonce-ambient__glow--2 {
    width: min(36rem, 80vw);
    height: min(36rem, 80vw);
    bottom: -18%;
    right: -10%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.12), transparent 60%);
    animation-delay: -7s;
}

@keyframes mpAnnonceGlow {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(2%, 3%) scale(1.05);
        opacity: 0.55;
    }
}

.mp-annonce-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mp-annonce-breadcrumb a {
    color: rgba(255, 255, 255, 0.38);
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.mp-annonce-breadcrumb a:hover {
    color: #fecaca;
    text-shadow: 0 0 24px rgba(255, 59, 59, 0.25);
}

.mp-annonce-breadcrumb__sep {
    color: rgba(255, 255, 255, 0.12);
    font-weight: 400;
}

.mp-annonce-breadcrumb__here {
    color: rgba(255, 255, 255, 0.72);
}

/* Chargement */
.mp-annonce-loading {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 4rem 1.5rem;
}

.mp-annonce-loading__shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.04) 50%,
        transparent 60%
    );
    background-size: 200% 100%;
    animation: mpAnnonceShimmer 1.8s ease-in-out infinite;
}

@keyframes mpAnnonceShimmer {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

.mp-annonce-loading__pulse {
    position: relative;
    z-index: 1;
}

.mp-annonce-loading__text {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

/* Révélation au scroll */
.mp-annonce-main [data-annonce-reveal] {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--ar-d, 0ms);
    will-change: opacity, transform;
}

.mp-annonce-main [data-annonce-reveal].is-visible {
    opacity: 1;
    transform: none;
    will-change: auto;
}

.mp-annonce-banner {
    padding: 0.85rem 1.1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.14), rgba(245, 158, 11, 0.06));
    border: 1px solid rgba(251, 191, 36, 0.32);
    color: rgba(254, 243, 199, 0.96);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.mp-annonce-layout {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1100px) {
    .mp-annonce-layout {
        grid-template-columns: minmax(0, 1fr) min(400px, 34vw);
        grid-template-rows: auto 1fr;
        gap: 1.75rem 2rem;
        align-items: start;
    }

    .mp-annonce-cell--gallery {
        grid-column: 1;
        grid-row: 1;
    }

    .mp-annonce-cell--rail {
        grid-column: 2;
        grid-row: 1 / -1;
        align-self: start;
        position: sticky;
        top: 5.5rem;
    }

    .mp-annonce-cell--below {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
}

@media (max-width: 1099px) {
    .mp-annonce-cell--below {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
}

.mp-annonce-v2 {
    position: relative;
}

/* Galerie */
.mp-annonce-gallery {
    border-radius: 1.35rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(165deg, rgba(12, 12, 12, 0.98), #030303);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 59, 59, 0.06);
}

.mp-annonce-gallery__frame {
    position: relative;
    overflow: hidden;
}

.mp-annonce-gallery__shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(125deg, transparent 35%, rgba(255, 255, 255, 0.07) 48%, transparent 62%);
    transform: translateX(-100%);
    animation: mpAnnonceShine 4.5s ease-in-out infinite;
}

@keyframes mpAnnonceShine {
    0%,
    100% {
        transform: translateX(-100%);
    }
    45%,
    55% {
        transform: translateX(100%);
    }
}

.mp-annonce-gallery__main {
    aspect-ratio: 4 / 3;
    background: #020202;
    position: relative;
}

.mp-annonce-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mp-annonce-gallery__img.is-fading {
    opacity: 0.35;
}

.mp-annonce-gallery__thumbs {
    display: flex;
    gap: 0.55rem;
    padding: 0.65rem 0.75rem;
    overflow-x: auto;
    scrollbar-width: thin;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.45);
}

.mp-annonce-thumb {
    flex: 0 0 3.75rem;
    height: 3.75rem;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 0.55rem;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    opacity: 0.65;
    transition:
        opacity 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.mp-annonce-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.mp-annonce-thumb.is-active {
    opacity: 1;
    border-color: rgba(255, 59, 59, 0.65);
    box-shadow: 0 0 0 1px rgba(255, 59, 59, 0.2);
}

.mp-annonce-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mp-annonce-gallery--empty {
    padding: 4rem 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.mp-annonce-gallery--empty__icon {
    font-size: 1.5rem;
    color: rgba(255, 59, 59, 0.35);
    animation: mpAnnoncePulse 2.4s ease-in-out infinite;
}

@keyframes mpAnnoncePulse {
    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.08);
    }
}

/* Colonne info (rail) */
.mp-annonce-rail-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.mp-annonce-rail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff3b3b, #fbbf24, #34d399);
    opacity: 0.85;
    pointer-events: none;
}

.mp-annonce-eyebrow {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin: 0 0 0.65rem;
}

.mp-annonce-title {
    font-size: clamp(1.45rem, 3.5vw, 2rem);
    font-weight: 900;
    line-height: 1.12;
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
}

.mp-annonce-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 0.85rem;
    margin-bottom: 1.1rem;
}

.mp-annonce-price {
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffb3b3, #ff3b3b 50%, #fecaca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.mp-annonce-state-pill {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
}

.mp-annonce-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    margin: 0 0 1.1rem;
}

.mp-annonce-h2 {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin: 0 0 0.75rem;
}

.mp-annonce-h2--inline {
    margin-bottom: 0.35rem;
}

.mp-annonce-seller-block {
    margin-bottom: 0.85rem;
}

.mp-annonce-seller-name {
    font-weight: 800;
    font-size: 1.02rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.mp-annonce-seller-city {
    margin: 0.35rem 0 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.42);
}

.mp-annonce-secondary-link {
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(252, 165, 165, 0.88);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mp-annonce-secondary-link:hover {
    color: #fff;
    transform: translateX(3px);
}

.mp-annonce-cta {
    display: flex !important;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding-top: 0.9rem !important;
    padding-bottom: 0.9rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em;
}

.mp-annonce-hint {
    margin: 0.85rem 0 0;
    font-size: 0.7rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.38);
}

.mp-annonce-seller-name .mp-verified-badge {
    margin-left: 0.35rem;
    vertical-align: -0.22em;
}

.mp-annonce-pro-mini {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(180, 120, 40, 0.28));
    color: rgba(255, 248, 220, 0.96);
    border: 1px solid rgba(251, 191, 36, 0.38);
}

/* Blocs contenu */
.mp-annonce-desc-wrap,
.mp-annonce-kw-wrap,
.mp-annonce-video-wrap,
.mp-annonce-map-wrap,
.mp-annonce-share {
    position: relative;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.mp-annonce-desc-wrap:hover,
.mp-annonce-map-wrap:hover,
.mp-annonce-share:hover {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.42);
}

.mp-annonce-desc {
    font-size: 0.95rem;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.8);
}

.mp-annonce-desc-hint {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.38);
    margin: 0 0 0.65rem;
    line-height: 1.4;
}

.mp-annonce-desc-scroll {
    max-height: min(42vh, 280px);
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 0.35rem;
    margin-right: -0.2rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 59, 59, 0.45) rgba(255, 255, 255, 0.06);
    border-radius: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
    -webkit-mask-image: linear-gradient(
        180deg,
        transparent 0%,
        #000 10%,
        #000 calc(100% - 10%),
        transparent 100%
    );
    mask-image: linear-gradient(
        180deg,
        transparent 0%,
        #000 10%,
        #000 calc(100% - 10%),
        transparent 100%
    );
}

.mp-annonce-desc-scroll:hover {
    border-color: rgba(255, 59, 59, 0.2);
}

.mp-annonce-desc-inner {
    padding: 0.65rem 0.75rem 0.85rem;
}

/* Le titre utilise .ecom-typewriter (bloc) — ne pas forcer inline */
.mp-annonce-title-tw {
    min-height: 1.15em;
}

.mp-annonce-loading__text .ecom-typewriter {
    color: rgba(255, 255, 255, 0.88);
}

.mp-annonce-similar {
    margin-top: 0.25rem;
}

.mp-annonce-similar-lead {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 1rem;
    line-height: 1.45;
}

.mp-annonce-similar-grid {
    margin-top: 0.25rem;
}

.mp-annonce-similar-empty {
    text-align: center;
    padding: 1rem 0.5rem;
    margin-bottom: 0.5rem;
}

.mp-annonce-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mp-annonce-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 59, 59, 0.08);
    border: 1px solid rgba(255, 59, 59, 0.18);
    color: rgba(254, 202, 202, 0.9);
    transition: transform 0.2s ease, background 0.2s ease;
}

.mp-annonce-tag:hover {
    transform: translateY(-1px);
    background: rgba(255, 59, 59, 0.12);
}

.mp-annonce-video-lead {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 0.85rem;
}

.mp-annonce-map-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.mp-annonce-map-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(145deg, rgba(255, 152, 0, 0.35), rgba(255, 183, 77, 0.12));
    border: 1px solid rgba(251, 191, 36, 0.25);
    color: #fdba74;
}

.mp-annonce-loc-text {
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.mp-annonce-map {
    height: 240px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.mp-annonce-map .leaflet-tile-pane {
    filter: saturate(0.88) contrast(1.06) brightness(0.95);
}

.mp-annonce-maps-link {
    display: inline-flex;
    margin-top: 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(252, 165, 165, 0.92);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mp-annonce-maps-link:hover {
    color: #fff;
}

.mp-annonce-share-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 0.5rem;
}

.mp-annonce-share-url {
    display: block;
    font-size: 0.8rem;
    word-break: break-all;
    line-height: 1.5;
    color: rgba(252, 165, 165, 0.88);
    text-decoration: none;
    padding: 0.65rem 0.85rem;
    border-radius: 0.65rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.mp-annonce-share-url:hover {
    color: #fff;
    border-color: rgba(255, 59, 59, 0.35);
    background: rgba(255, 59, 59, 0.08);
}

@media (prefers-reduced-motion: reduce) {
    .mp-annonce-ambient__glow,
    .mp-annonce-gallery__shine,
    .mp-annonce-gallery--empty__icon,
    .mp-annonce-loading__shimmer {
        animation: none;
    }

    .mp-annonce-main [data-annonce-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.mp-app-redirect__countdown {
    user-select: none;
}

.mp-app-redirect__product {
    margin: 0 auto;
    width: 8.25rem;
    height: 8.25rem;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 59, 59, 0.12);
    background: #0a0a0a;
    animation: mpAppProductIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes mpAppProductIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.mp-app-redirect__product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .mp-app-redirect__product {
        animation: none;
    }
}

/* ========== Page catalogue produits (.mp-catalog-page) ========== */
.mp-catalog-page {
    position: relative;
}

.mp-catalog-hero {
    position: relative;
    overflow: hidden;
    padding-bottom: 0.25rem;
}

.mp-catalog-hero__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 85% at 50% -25%, rgba(255, 59, 59, 0.2), transparent 55%),
        radial-gradient(ellipse 55% 45% at 92% 55%, rgba(99, 102, 241, 0.12), transparent 52%);
    pointer-events: none;
}

.mp-catalog-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 75% 62% at 50% 18%, black 18%, transparent 72%);
    pointer-events: none;
    opacity: 0.9;
}

.mp-catalog-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
}

.mp-catalog-hero__glow--1 {
    width: min(44rem, 92vw);
    height: min(44rem, 92vw);
    top: -38%;
    right: -18%;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.44), transparent 68%);
    opacity: 0.5;
    animation: mpCatalogGlowDrift 15s ease-in-out infinite alternate;
}

.mp-catalog-hero__glow--2 {
    width: min(30rem, 75vw);
    height: min(30rem, 75vw);
    bottom: -22%;
    left: -12%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 72%);
    opacity: 0.4;
    animation: mpCatalogGlowDrift 19s ease-in-out infinite alternate-reverse;
}

@keyframes mpCatalogGlowDrift {
    from {
        transform: translate(0, 0) scale(1);
    }
    to {
        transform: translate(-20px, 14px) scale(1.06);
    }
}

.mp-catalog-hero__beam {
    position: absolute;
    top: 0;
    left: 12%;
    width: 52%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    opacity: 0.45;
    pointer-events: none;
}

.mp-catalog-crumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.36);
    margin-bottom: 1.35rem;
}

.mp-catalog-crumb a {
    color: rgba(255, 255, 255, 0.52);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mp-catalog-crumb a:hover {
    color: #fff;
}

.mp-catalog-crumb__sep {
    opacity: 0.32;
}

.mp-catalog-crumb__here {
    color: rgba(254, 202, 202, 0.78);
}

.mp-catalog-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.05rem;
}

.mp-catalog-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.9rem;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(12px);
}

.mp-catalog-pill__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3b3b, #fca5a5);
    box-shadow: 0 0 14px rgba(255, 59, 59, 0.7);
    animation: mpCatalogPulse 2.4s ease-in-out infinite;
}

@keyframes mpCatalogPulse {
    50% {
        opacity: 0.7;
        transform: scale(0.9);
    }
}

.mp-catalog-pill--accent {
    border-color: rgba(52, 211, 153, 0.38);
    background: rgba(6, 78, 59, 0.28);
    color: rgba(167, 243, 208, 0.96);
}

.mp-catalog-h1 {
    margin: 0 0 1.1rem;
    line-height: 1.04;
}

.mp-catalog-h1__row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4rem 1rem;
}

.mp-catalog-h1__static {
    font-size: clamp(2.45rem, 6.2vw, 4.1rem);
    font-weight: 900;
    letter-spacing: -0.035em;
}

.mp-catalog-rotator {
    display: inline-block;
    vertical-align: baseline;
}

.mp-catalog-rot-line {
    font-size: clamp(1.55rem, 4vw, 2.55rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(252, 165, 165, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.18;
}

.mp-catalog-seller-hint {
    font-size: 0.92rem;
    color: rgba(209, 250, 229, 0.9);
    margin: 0 0 1rem;
    max-width: 44rem;
}

.mp-catalog-lead {
    max-width: 42rem;
    font-size: 1.03rem;
    line-height: 1.72;
    color: rgba(209, 213, 219, 0.9);
    margin: 0;
}

/* La machine à écrire est déjà .ecom-typewriter (display: block). Le texte fixe suit sur sa propre ligne. */
.mp-catalog-lead__rest {
    display: block;
}

.mp-catalog-pill--store {
    border-color: rgba(99, 102, 241, 0.45);
    background: linear-gradient(135deg, rgba(49, 46, 129, 0.45), rgba(30, 27, 75, 0.35));
    color: rgba(199, 210, 254, 0.96);
}

/* ——— Vue vendeur produits.php?seller= ——— */
.mp-catalog-page--seller .mp-catalog-hero__mesh {
    background:
        radial-gradient(ellipse 90% 80% at 18% 12%, rgba(99, 102, 241, 0.18), transparent 50%),
        radial-gradient(ellipse 70% 55% at 88% 42%, rgba(56, 189, 248, 0.1), transparent 52%),
        radial-gradient(ellipse 100% 85% at 50% -25%, rgba(255, 59, 59, 0.14), transparent 55%);
}

.mp-catalog-page--seller .mp-catalog-hero__glow--1 {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.32), transparent 68%);
    opacity: 0.55;
}

.mp-catalog-page--seller .mp-catalog-hero__glow--2 {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.22), transparent 72%);
    opacity: 0.45;
}

.mp-storefront {
    margin: 0 0 1.35rem;
}

.mp-storefront__frame {
    position: relative;
    border-radius: 1.75rem;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.55),
        rgba(255, 255, 255, 0.1) 38%,
        rgba(56, 189, 248, 0.35) 72%,
        rgba(255, 59, 59, 0.25)
    );
    box-shadow:
        0 4px 32px rgba(0, 0, 0, 0.35),
        0 32px 100px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mp-storefront__frame::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 1.68rem;
    background: linear-gradient(165deg, rgba(14, 14, 18, 0.97), rgba(7, 8, 12, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
    z-index: 0;
}

.mp-storefront-skeleton,
.mp-storefront__content {
    position: relative;
    z-index: 1;
    border-radius: 1.65rem;
    padding: clamp(1.25rem, 3vw, 2rem) clamp(1.35rem, 3.5vw, 2.35rem);
    min-height: 8.5rem;
}

.mp-storefront-skeleton {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.mp-storefront-skeleton.hidden,
.mp-storefront__content.hidden {
    display: none !important;
}

.mp-storefront-skeleton__avatar {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 1.25rem;
    flex-shrink: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    background-size: 200% 100%;
    animation: mpStoreSkeletonShimmer 1.35s ease-in-out infinite;
}

.mp-storefront-skeleton__lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
}

.mp-storefront-skeleton__bar {
    display: block;
    height: 0.72rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    background-size: 200% 100%;
    animation: mpStoreSkeletonShimmer 1.35s ease-in-out infinite;
    animation-delay: 0.08s;
}

.mp-storefront-skeleton__bar--lg {
    width: 58%;
    height: 0.95rem;
}

.mp-storefront-skeleton__bar--sm {
    width: 36%;
    height: 0.62rem;
    animation-delay: 0.15s;
}

@keyframes mpStoreSkeletonShimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.mp-storefront__grid {
    display: grid;
    gap: 1.5rem 1.75rem;
    align-items: center;
}

@media (min-width: 720px) {
    .mp-storefront__grid {
        grid-template-columns: auto 1fr auto;
        gap: 1.75rem 2rem;
    }
}

.mp-storefront__visual {
    position: relative;
    width: 6.5rem;
    height: 6.5rem;
    flex-shrink: 0;
    justify-self: center;
}

@media (min-width: 720px) {
    .mp-storefront__visual {
        justify-self: start;
    }
}

.mp-storefront__avatar-ring {
    position: absolute;
    inset: -5px;
    border-radius: 1.55rem;
    background: conic-gradient(from 210deg, rgba(99, 102, 241, 0.75), rgba(56, 189, 248, 0.5), rgba(255, 59, 59, 0.45), rgba(99, 102, 241, 0.75));
    opacity: 0.85;
    filter: blur(0.35px);
}

.mp-storefront__avatar-stack {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mp-storefront__avatar-shell {
    position: relative;
    z-index: 1;
    border-radius: 1.2rem;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
    background: rgba(0, 0, 0, 0.35);
}

.mp-storefront__avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mp-storefront__avatar--initial {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(145deg, #4f46e5, #0ea5e9 55%, #be123c);
}

.mp-storefront__main {
    min-width: 0;
    text-align: center;
}

@media (min-width: 720px) {
    .mp-storefront__main {
        text-align: left;
    }
}

.mp-storefront__eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(165, 180, 252, 0.75);
}

.mp-storefront__title {
    margin: 0 0 0.55rem;
    font-size: clamp(1.65rem, 4.2vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.038em;
    line-height: 1.08;
    background: linear-gradient(120deg, #fff 12%, #e0e7ff 42%, #fecaca 92%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mp-storefront__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem 0.75rem;
}

@media (min-width: 720px) {
    .mp-storefront__row {
        justify-content: flex-start;
    }
}

/* Une seule ligne : rotateur vertical — hauteur fixe (évite le rognage du texte) */
.mp-storefront__stats-line {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 1rem;
    margin-top: 1rem;
    padding: 0.55rem 1rem;
    border-radius: 1.05rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(15, 23, 42, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    max-width: min(100%, 32rem);
    min-height: 2.85rem;
}

@media (min-width: 720px) {
    .mp-storefront__stats-line {
        justify-content: flex-start;
        margin-left: 0;
        margin-right: 0;
    }
}

.mp-storefront__stats-kicker {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(165, 180, 252, 0.72);
    flex-shrink: 0;
    padding-top: 0.12rem;
}

.mp-storefront-stats-rotator {
    flex: 1;
    min-width: 0;
    min-height: 2.125rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mp-storefront-stats-rotator .ecom-text-rotator-viewport,
.mp-storefront-stats-rotator__viewport {
    height: 2.125rem !important;
    min-height: 2.125rem !important;
    max-height: 2.125rem !important;
    overflow: hidden !important;
    text-align: center;
}

@media (min-width: 720px) {
    .mp-storefront-stats-rotator .ecom-text-rotator-viewport,
    .mp-storefront-stats-rotator__viewport {
        text-align: left;
    }
}

.mp-storefront-stats-rotator__line {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(248, 250, 252, 0.96);
    letter-spacing: 0.02em;
    white-space: nowrap;
    height: 2.125rem !important;
    line-height: 2.125rem !important;
    margin: 0;
    padding: 0;
    display: block;
    box-sizing: border-box;
}

.mp-storefront__handle {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(147, 197, 253, 0.82);
}

.mp-storefront__city {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 600;
}

.mp-storefront__city::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin-right: 0.5rem;
    margin-bottom: 0.15rem;
    background: rgba(255, 255, 255, 0.25);
    vertical-align: middle;
}

.mp-storefront__row .mp-storefront__city:first-child::before {
    display: none;
}

.mp-storefront__badges {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.mp-storefront__badges .mp-verified-badge {
    margin-left: 0;
}

.mp-storefront__pro {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.22rem 0.48rem;
    border-radius: 0.35rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.35), rgba(217, 119, 6, 0.22));
    color: rgba(254, 243, 199, 0.98);
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.mp-storefront__bio {
    margin: 0.85rem 0 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.82);
    max-width: 36rem;
}

.mp-storefront__actions {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    width: 100%;
}

@media (min-width: 720px) {
    .mp-storefront__actions {
        width: auto;
        min-width: 11.5rem;
    }
}

.mp-storefront__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.72rem 1.15rem;
    border-radius: 0.95rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.mp-storefront__btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.78);
}

.mp-storefront__btn--ghost:hover {
    border-color: rgba(165, 180, 252, 0.45);
    background: rgba(99, 102, 241, 0.12);
    color: #fff;
    transform: translateY(-1px);
}

.mp-storefront__btn--primary {
    border: 1px solid rgba(255, 59, 59, 0.45);
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.55), rgba(127, 29, 29, 0.65));
    color: #fff;
    box-shadow: 0 10px 32px rgba(127, 29, 29, 0.28);
}

.mp-storefront__btn--primary:hover {
    border-color: rgba(252, 165, 165, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(185, 28, 28, 0.35);
}

.mp-storefront__empty {
    text-align: center;
    padding: 1.5rem 1rem 0.5rem;
    max-width: 26rem;
    margin: 0 auto;
}

.mp-storefront__empty-title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
}

.mp-storefront__empty-sub {
    margin: 0 0 1.25rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.55;
}

/* Encadré sous la vitrine — ton professionnel */
.mp-store-callout {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem 1.15rem;
    align-items: start;
    max-width: 48rem;
    margin: 0.25rem auto 0;
    padding: 1.15rem 1.35rem 1.2rem 1.5rem;
    border-radius: 1.2rem;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

@media (min-width: 640px) {
    .mp-store-callout {
        grid-template-columns: auto 1fr;
        padding: 1.25rem 1.5rem 1.3rem;
    }
}

.mp-store-callout__accent {
    position: absolute;
    left: 0.5rem;
    top: 0.85rem;
    bottom: 0.85rem;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.95), rgba(56, 189, 248, 0.65), rgba(248, 113, 113, 0.75));
    opacity: 0.9;
}

.mp-store-callout__icon {
    grid-column: 1;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.15rem;
    color: rgba(196, 181, 253, 0.95);
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.22), rgba(15, 23, 42, 0.5));
    border: 1px solid rgba(165, 180, 252, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.mp-store-callout__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.mp-store-callout__body {
    grid-column: 2;
    min-width: 0;
}

.mp-store-callout__title {
    margin: 0 0 0.4rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.88);
}

.mp-store-callout__text {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.68;
    color: rgba(203, 213, 225, 0.88);
}

.mp-store-callout__sub {
    display: block;
    margin-top: 0.55rem;
    font-size: 0.86rem;
    line-height: 1.6;
    color: rgba(148, 163, 184, 0.82);
}

.mp-store-callout__sub strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.mp-catalog-body--seller {
    padding-top: 0.15rem;
}

.mp-catalog-body--seller .max-w-7xl::before {
    content: '';
    display: block;
    height: 1px;
    margin: 0 0 1.35rem;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(99, 102, 241, 0.35) 22%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(248, 113, 113, 0.25) 78%,
        transparent
    );
    opacity: 0.85;
}

.mp-catalog-page--seller .mp-catalog-toolbar {
    border-radius: 1.5rem;
    padding: 1px;
    background: linear-gradient(
        128deg,
        rgba(99, 102, 241, 0.42),
        rgba(255, 255, 255, 0.08) 40%,
        rgba(255, 59, 59, 0.28) 100%
    );
    box-shadow:
        0 4px 32px rgba(0, 0, 0, 0.32),
        0 32px 100px rgba(15, 23, 42, 0.45);
}

.mp-catalog-page--seller .mp-catalog-toolbar__inner {
    border-radius: 1.42rem;
    padding: 1.45rem 1.5rem 1.5rem;
    background: linear-gradient(168deg, rgba(10, 11, 16, 0.97), rgba(4, 5, 8, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.mp-catalog-page--seller .mp-catalog-search-label,
.mp-catalog-page--seller .mp-catalog-chips-label {
    color: rgba(165, 180, 252, 0.55);
    letter-spacing: 0.18em;
}

.mp-catalog-page--seller .mp-catalog-search-wrap .boutique-search {
    border-radius: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.52);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mp-catalog-page--seller .mp-catalog-search-wrap .boutique-search:focus {
    border-color: rgba(129, 140, 248, 0.45);
    box-shadow:
        0 0 0 3px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mp-catalog-page--seller .boutique-chip {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.mp-catalog-page--seller .boutique-chip-active {
    box-shadow:
        0 0 0 1px rgba(99, 102, 241, 0.45),
        0 12px 32px rgba(49, 46, 129, 0.25);
    border-color: rgba(165, 180, 252, 0.35);
}

.mp-catalog-page--seller .mp-catalog-meta {
    margin-bottom: 1.25rem;
    padding: 1rem 1.15rem;
    border-radius: 1.1rem;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    align-items: center;
}

.mp-catalog-page--seller .mp-catalog-count__num {
    background: linear-gradient(120deg, #fff 0%, #e0e7ff 45%, #fecdd3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.85rem;
}

.mp-catalog-page--seller .mp-catalog-count__label {
    color: rgba(203, 213, 225, 0.65);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.mp-catalog-page--seller .mp-catalog-range {
    color: rgba(148, 163, 184, 0.75);
    font-size: 0.8rem;
}

.mp-catalog-page--seller .mp-catalog-meta__hint {
    color: rgba(148, 163, 184, 0.5);
    max-width: 22rem;
    text-align: right;
    line-height: 1.45;
}

@media (max-width: 640px) {
    .mp-catalog-page--seller .mp-catalog-meta__hint {
        text-align: left;
        max-width: none;
    }
}

.mp-catalog-page--seller .mp-catalog-meta__hint--seller {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
}

.mp-catalog-page--seller .mp-catalog-grid-wrap {
    position: relative;
}

.mp-catalog-page--seller .mp-catalog-grid-wrap::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .mp-storefront-skeleton__avatar,
    .mp-storefront-skeleton__bar {
        animation: none;
        background: rgba(255, 255, 255, 0.08);
    }
}

.mp-catalog-body {
    position: relative;
    z-index: 1;
}

.mp-catalog-toolbar {
    position: relative;
    border-radius: 1.4rem;
    padding: 1px;
    background: linear-gradient(
        125deg,
        rgba(255, 59, 59, 0.38),
        rgba(255, 255, 255, 0.07) 42%,
        rgba(99, 102, 241, 0.22)
    );
    box-shadow:
        0 4px 28px rgba(0, 0, 0, 0.28),
        0 28px 90px rgba(0, 0, 0, 0.38);
    margin-bottom: 1.4rem;
}

.mp-catalog-toolbar__inner {
    border-radius: 1.32rem;
    padding: 1.3rem 1.35rem 1.4rem;
    background: linear-gradient(168deg, rgba(11, 11, 13, 0.94), rgba(5, 5, 7, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

@media (min-width: 960px) {
    .mp-catalog-toolbar__inner {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 2.25rem;
    }

    .mp-catalog-toolbar__search {
        flex: 1;
        max-width: 26rem;
    }

    .mp-catalog-toolbar__chips {
        flex: 1.2;
        min-width: 0;
    }
}

.mp-catalog-search-label {
    display: block;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.48rem;
}

.mp-catalog-search-wrap .boutique-search {
    border-radius: 1rem;
    padding: 0.95rem 1rem 0.95rem 2.75rem;
    background: rgba(0, 0, 0, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.mp-catalog-search-wrap .boutique-search:focus {
    box-shadow:
        0 0 0 3px rgba(255, 59, 59, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mp-catalog-chips-label {
    margin: 0 0 0.52rem;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.36);
}

.mp-catalog-chips {
    max-height: 5.6rem;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 0.4rem;
    gap: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 59, 59, 0.35) rgba(255, 255, 255, 0.06);
    mask-image: linear-gradient(90deg, transparent, #000 14px, #000 calc(100% - 14px), transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14px, #000 calc(100% - 14px), transparent);
}

@media (min-width: 960px) {
    .mp-catalog-chips {
        max-height: none;
        flex-wrap: wrap;
        overflow-x: visible;
        mask-image: none;
        -webkit-mask-image: none;
        justify-content: flex-end;
    }
}

.mp-catalog-page .boutique-chip {
    flex-shrink: 0;
    padding: 0.48rem 1.05rem;
    font-size: 0.74rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.045);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.mp-catalog-page .boutique-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
    border-color: rgba(255, 59, 59, 0.42);
}

.mp-catalog-page .boutique-chip-active {
    box-shadow:
        0 0 0 1px rgba(255, 59, 59, 0.38),
        0 14px 36px rgba(182, 28, 28, 0.22);
}

.mp-catalog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    margin-bottom: 1.05rem;
    padding: 0 0.2rem;
}

.mp-catalog-meta__primary {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.mp-catalog-range {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.48);
    letter-spacing: 0.03em;
    line-height: 1.4;
}

.mp-catalog-range.hidden {
    display: none;
}

.mp-catalog-count {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.52);
}

.mp-catalog-count__num {
    font-size: 1.7rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, #fecaca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.035em;
    line-height: 1;
}

.mp-catalog-meta__hint {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.34);
    letter-spacing: 0.05em;
}

.mp-catalog-loading {
    position: relative;
    overflow: hidden;
    border-radius: 1.28rem;
    padding: 3.1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.mp-catalog-loading__shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.07) 46%,
        transparent 88%
    );
    animation: mpCatalogShimmer 2.3s ease-in-out infinite;
}

@keyframes mpCatalogShimmer {
    from {
        transform: translateX(-55%);
    }
    to {
        transform: translateX(55%);
    }
}

.mp-catalog-loading__text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
}

.mp-catalog-empty-state {
    border-radius: 1.28rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.035);
}

.mp-catalog-empty__title {
    margin: 0 0 0.4rem;
    font-weight: 800;
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.9);
}

.mp-catalog-empty__sub {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.mp-catalog-grid-wrap {
    position: relative;
    transition: opacity 0.35s ease;
}

.mp-catalog-grid-wrap--busy {
    opacity: 0.42;
    pointer-events: none;
}

.mp-catalog-grid {
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fill, minmax(264px, 1fr));
}

.mp-catalog-page .boutique-card {
    position: relative;
    border-radius: 1.38rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient(168deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022));
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.32);
}

.mp-catalog-page .boutique-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.38s ease;
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.14), transparent 58%);
    z-index: 0;
}

.mp-catalog-page .boutique-card:hover::before {
    opacity: 1;
}

.mp-catalog-page .boutique-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.52),
        0 0 0 1px rgba(255, 59, 59, 0.2);
}

.mp-catalog-page .boutique-card-media {
    position: relative;
    z-index: 1;
    aspect-ratio: 1 / 1.12;
}

.mp-catalog-page .boutique-card-body {
    position: relative;
    z-index: 1;
}

.mp-catalog-page .boutique-card-title {
    font-size: 0.98rem;
    font-weight: 800;
}

.mp-catalog-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.65rem;
    margin-top: 2.5rem;
    padding: 1rem 1.15rem 1.15rem;
    border-radius: 1.35rem;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mp-catalog-pagination.hidden {
    display: none;
}

.mp-pag__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    max-width: min(100%, 28rem);
}

.mp-pag__nav,
.mp-pag__edge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.65rem;
    padding: 0 0.85rem;
    border-radius: 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: rgba(255, 255, 255, 0.82);
    cursor: pointer;
    transition:
        transform 0.18s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.mp-pag__edge {
    min-width: 2.65rem;
    padding: 0 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
}

.mp-pag__nav--next {
    flex-direction: row;
}

.mp-pag__nav-icon {
    font-size: 1.15rem;
    line-height: 1;
    opacity: 0.9;
}

.mp-pag__nav-text {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mp-pag__nav .mp-pag__nav-icon:first-child {
    margin-right: 0.25rem;
}

.mp-pag__nav .mp-pag__nav-icon:last-child {
    margin-left: 0.25rem;
}

.mp-pag__nav:hover:not(:disabled),
.mp-pag__edge:hover:not(:disabled) {
    border-color: rgba(255, 59, 59, 0.45);
    background: rgba(255, 59, 59, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.mp-pag__nav:disabled,
.mp-pag__edge:disabled {
    opacity: 0.28;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.mp-pag__num {
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.45rem;
    border-radius: 0.75rem;
    font-size: 0.82rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition:
        transform 0.16s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.mp-pag__num:hover {
    color: #fff;
    border-color: rgba(255, 59, 59, 0.35);
    background: rgba(255, 59, 59, 0.1);
    transform: translateY(-1px);
}

.mp-pag__num.is-active {
    color: #fff;
    border-color: rgba(255, 59, 59, 0.65);
    background: linear-gradient(145deg, rgba(182, 28, 28, 0.55), rgba(255, 59, 59, 0.32));
    box-shadow:
        0 0 0 1px rgba(255, 59, 59, 0.2),
        0 10px 28px rgba(182, 28, 28, 0.22);
}

.mp-catalog-page [data-catalog-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--cr-d, 0ms);
}

.mp-catalog-page [data-catalog-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .mp-catalog-hero__glow--1,
    .mp-catalog-hero__glow--2 {
        animation: none;
    }

    .mp-catalog-loading__shimmer {
        animation: none;
    }

    .mp-catalog-pill__dot {
        animation: none;
    }

    .mp-catalog-page [data-catalog-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ─── Page Abonnement Pro v2 (shell premium) ─────────────────────────── */
.mp-sub-v2-page {
    position: relative;
    z-index: 1;
}

.mp-sub-v2-page--pro {
    isolation: isolate;
}

.mp-sub-v2-page--pro::before {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.65), rgba(244, 63, 94, 0.55), transparent);
    opacity: 0.85;
}

.mp-sub-v2-kicker {
    font-weight: 700;
    letter-spacing: 0.38em;
}

.mp-sub-v2-hero__lead {
    color: rgba(255, 255, 255, 0.55);
}

.mp-sub-v2-hero {
    background:
        linear-gradient(155deg, rgba(22, 16, 34, 0.97) 0%, rgba(10, 8, 16, 0.99) 55%, rgba(14, 10, 22, 0.98) 100%);
    box-shadow:
        0 32px 100px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mp-sub-v2-hero__mesh {
    position: absolute;
    inset: 0;
    opacity: 0.55;
    background:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(251, 191, 36, 0.18), transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 30%, rgba(244, 63, 94, 0.12), transparent 50%),
        radial-gradient(ellipse 50% 60% at 50% 100%, rgba(99, 102, 241, 0.1), transparent 45%);
    pointer-events: none;
}

.mp-sub-v2-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
    opacity: 0.35;
}

.mp-sub-v2-hero__orb--1 {
    width: 220px;
    height: 220px;
    background: #f59e0b;
    top: -80px;
    right: -40px;
    animation: mpSubV2Orb 14s ease-in-out infinite;
}

.mp-sub-v2-hero__orb--2 {
    width: 180px;
    height: 180px;
    background: #e11d48;
    bottom: -60px;
    left: 10%;
    animation: mpSubV2Orb 18s ease-in-out infinite reverse;
}

@keyframes mpSubV2Orb {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-12px, 8px) scale(1.06);
    }
}

.mp-sub-v2-gradient-text {
    background: linear-gradient(105deg, #fde68a, #fb923c, #f43f5e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mp-sub-v2-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .mp-sub-v2-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
    }
}

.mp-sub-v2-hero__lottie {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mp-sub-v2-lottie {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.mp-sub-v2-lottie svg {
    width: 100% !important;
    height: auto !important;
}

.mp-sub-v2-lottie--hero {
    width: min(220px, 72vw);
    height: 220px;
    filter: drop-shadow(0 20px 40px rgba(251, 191, 36, 0.15));
}

.mp-sub-v2-section-head .mp-sub-v2-lottie--ribbon {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
}

.mp-sub-v2-plans-head .mp-sub-v2-lottie--plans {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.mp-sub-v2-pay-head .mp-sub-v2-lottie--pay {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.mp-sub-v2-form-intro .mp-sub-v2-lottie--form {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

@media (max-width: 639px) {
    .mp-sub-v2-section-head {
        flex-direction: column;
    }

    .mp-sub-v2-section-head .mp-sub-v2-lottie--ribbon {
        margin-top: 0.25rem;
    }
}

.mp-sub-v2-page [data-sub-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.mp-sub-v2-page [data-sub-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.mp-sub-v2-benefits {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .mp-sub-v2-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mp-sub-v2-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mp-sub-v2-benefit {
    position: relative;
    border-radius: 1.22rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(168deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    padding: 1.2rem 1.25rem 1.25rem 1.35rem;
    transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
    overflow: hidden;
}

.mp-sub-v2-benefit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 1.22rem 0 0 1.22rem;
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.5), rgba(244, 63, 94, 0.25));
    opacity: 0.35;
    transition: opacity 0.28s ease;
}

.mp-sub-v2-benefit:hover {
    border-color: rgba(251, 191, 36, 0.28);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(251, 191, 36, 0.06);
    transform: translateY(-3px);
}

.mp-sub-v2-benefit:hover::before {
    opacity: 0.95;
}

.mp-sub-v2-benefit--wide {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .mp-sub-v2-benefit--wide {
        grid-column: span 2;
    }
}

.mp-sub-v2-benefit__icon {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(251, 191, 36, 0.12);
    color: #fcd34d;
    margin-bottom: 0.75rem;
}

.mp-sub-v2-benefit__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.mp-sub-v2-benefit__title {
    font-weight: 800;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}

.mp-sub-v2-benefit__desc {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.45);
}

.mp-sub-v2-plans {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .mp-sub-v2-plans {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mp-sub-v2-plan-card {
    position: relative;
    text-align: left;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient(175deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    padding: 1.6rem 1.45rem 1.45rem;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
    color: inherit;
    width: 100%;
    overflow: hidden;
}

.mp-sub-v2-plan-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.mp-sub-v2-plan-card:hover::after {
    opacity: 1;
}

.mp-sub-v2-plan-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.38);
}

.mp-sub-v2-plan__cta {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 1.15rem;
    padding: 0.78rem 1.25rem;
    border-radius: 0.95rem;
    border: none;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    color: #0a0a0c;
    background: linear-gradient(105deg, #fde68a, #fbbf24, #fb923c);
    box-shadow: 0 10px 32px rgba(251, 191, 36, 0.25);
    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.mp-sub-v2-plan__cta:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.mp-sub-v2-plan__cta:focus {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(12, 10, 18, 0.9),
        0 0 0 4px rgba(251, 191, 36, 0.45);
}

.mp-sub-v2-plan__badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    margin-bottom: 0.75rem;
}

.mp-sub-v2-plan__badge--muted {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
}

.mp-sub-v2-plan__name {
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 0.25rem;
    letter-spacing: -0.03em;
}

.mp-sub-v2-plan__price {
    margin: 0.35rem 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    color: #fde68a;
    text-shadow: 0 0 28px rgba(251, 191, 36, 0.22);
}

.mp-sub-v2-plan__per {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    text-shadow: none;
}

.mp-sub-v2-plan__sub {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.48);
}

.mp-sub-v2-pay-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .mp-sub-v2-pay-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mp-sub-v2-pay-card {
    position: relative;
    border-radius: 1.35rem;
    border: 1px solid transparent;
    background:
        linear-gradient(rgba(8, 10, 18, 0.92), rgba(8, 10, 18, 0.92)) padding-box,
        linear-gradient(135deg, rgba(56, 189, 248, 0.35), rgba(251, 191, 36, 0.2), rgba(244, 63, 94, 0.25)) border-box;
    padding: 1.4rem 1.3rem;
    cursor: pointer;
    text-align: left;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    color: inherit;
    font: inherit;
    width: 100%;
}

.mp-sub-v2-pay-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.mp-sub-v2-pay-card.is-selected {
    box-shadow:
        0 0 0 2px rgba(56, 189, 248, 0.35),
        0 20px 56px rgba(14, 165, 233, 0.15);
}

.mp-sub-v2-pay-card__brand {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.65rem;
}

.mp-sub-v2-pay-card__brand--moov {
    color: #fbbf24;
}

.mp-sub-v2-pay-card__brand--airtel {
    color: #f87171;
}

.mp-sub-v2-pay-card__num {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
}

.mp-sub-v2-pay-card__holder {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.35;
}

.mp-sub-v2-form-wrap {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mp-sub-v2-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.35rem;
}

.mp-sub-v2-search-input-wrap .mp-sub-v2-input__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(251, 191, 36, 0.45);
    pointer-events: none;
    z-index: 2;
}

.mp-sub-v2-search-input-wrap:focus-within .mp-sub-v2-input__icon {
    color: rgba(251, 191, 36, 0.78);
}

.mp-sub-v2-search__dropdown {
    background: rgba(12, 11, 18, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mp-sub-v2-search__hit {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    text-align: left;
    padding: 0.65rem 1rem;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: background 0.16s ease;
}

.mp-sub-v2-search__hit:last-child {
    border-bottom: 0;
}

.mp-sub-v2-search__hit:hover {
    background: rgba(251, 191, 36, 0.09);
}

.mp-sub-v2-search__avatar {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.25), rgba(244, 63, 94, 0.2));
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.mp-sub-v2-search__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mp-sub-v2-search__avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: -0.02em;
}

.mp-sub-v2-search__hit-name {
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: -0.02em;
    flex: 1;
    min-width: 0;
}

.mp-sub-v2-search__empty {
    padding: 1rem 1.1rem;
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.mp-sub-v2-selected {
    border-radius: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.04));
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #bbf7d0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
}

.mp-sub-v2-selected__avatar {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.mp-sub-v2-selected__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mp-sub-v2-selected__avatar--fb,
.mp-sub-v2-selected__avatar .mp-sub-v2-selected__avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: #ecfccb;
}

.mp-sub-v2-selected__meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.mp-sub-v2-selected__meta strong {
    color: #ecfccb;
    font-weight: 700;
}

.mp-sub-v2-selected-id {
    font-size: 0.62rem;
    font-family: ui-monospace, monospace;
    color: rgba(255, 255, 255, 0.38);
    word-break: break-all;
}

.mp-sub-v2-submit {
    border: none;
    cursor: pointer;
}

body.mp-sub-modal-open {
    overflow: hidden;
}

.mp-sub-v2-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

@media (min-width: 640px) {
    .mp-sub-v2-modal {
        align-items: center;
        padding: 1.5rem;
    }
}

.mp-sub-v2-modal.hidden {
    display: none;
}

.mp-sub-v2-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 4, 8, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mp-sub-v2-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 32rem;
    max-height: min(92vh, 720px);
    overflow-y: auto;
    border-radius: 1.5rem 1.5rem 0 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
    background: linear-gradient(168deg, rgba(22, 18, 30, 0.98), rgba(10, 8, 14, 0.99));
    box-shadow: 0 -20px 80px rgba(0, 0, 0, 0.55);
    padding: 1.25rem 1.25rem 1.75rem;
}

@media (min-width: 640px) {
    .mp-sub-v2-modal__panel {
        border-radius: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 32px 100px rgba(0, 0, 0, 0.55);
    }
}

.mp-sub-v2-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mp-sub-v2-modal__title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

.mp-sub-v2-modal__close {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.mp-sub-v2-modal__close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.mp-sub-v2-modal__summary {
    margin-bottom: 1.25rem;
}

.mp-sub-v2-modal__plan-chip {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(244, 63, 94, 0.08));
    border: 1px solid rgba(251, 191, 36, 0.22);
}

.mp-sub-v2-modal__plan-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
}

.mp-sub-v2-modal__plan-price {
    font-weight: 900;
    font-size: 1.05rem;
    color: #fde68a;
    font-variant-numeric: tabular-nums;
}

.mp-sub-v2-modal__plan-period {
    font-weight: 600;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-left: 0.25rem;
}

.mp-sub-v2-pay-info-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .mp-sub-v2-pay-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mp-sub-v2-pay-info-card {
    border-radius: 1.2rem;
    padding: 1.15rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.22);
}

.mp-sub-v2-pay-info-card__brand {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    color: rgba(251, 191, 36, 0.85);
}

.mp-sub-v2-pay-info-card__num {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.03em;
}

.mp-sub-v2-pay-info-card__holder {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.35;
}

.mp-sub-v2-pay-grid--modal {
    margin-top: 0.25rem;
}

.mp-sub-v2-selected-ok {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(187, 247, 208, 0.75);
    letter-spacing: 0.02em;
}

.mp-sub-v2-preview-img {
    max-width: 100%;
    max-height: 280px;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: contain;
    background: #000;
}

.mp-sub-v2-status {
    min-height: 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.mp-sub-v2-status--ok {
    color: #86efac;
}

.mp-sub-v2-status--err {
    color: #fca5a5;
}

@media (prefers-reduced-motion: reduce) {
    .mp-sub-v2-hero__orb--1,
    .mp-sub-v2-hero__orb--2 {
        animation: none;
    }

    .mp-sub-v2-page [data-sub-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ═══ CTAs globaux « Abonnement Pro » (header, footer, FAB) ═══ */
.mp-pro-ribbon {
    position: relative;
    z-index: 40;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mp-pro-ribbon__track {
    background: linear-gradient(90deg, rgba(88, 28, 135, 0.35), rgba(180, 83, 9, 0.25), rgba(127, 29, 29, 0.3));
    background-size: 200% 100%;
    animation: mpProRibbonShift 14s ease-in-out infinite;
}

@keyframes mpProRibbonShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.mp-pro-ribbon__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    padding: 0.55rem 0;
    min-height: 2.65rem;
}

.mp-pro-ribbon__dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fde68a;
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.85);
    animation: mpProPulse 2.2s ease-in-out infinite;
}

@keyframes mpProPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.65;
        transform: scale(1.15);
    }
}

.mp-pro-ribbon__text {
    flex: 1;
    min-width: 200px;
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 640px) {
    .mp-pro-ribbon__text {
        font-size: 0.82rem;
    }
}

.mp-pro-ribbon__text strong {
    color: #fef3c7;
    font-weight: 800;
}

.mp-pro-ribbon__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0c0a0f;
    background: linear-gradient(105deg, #fef9c3, #fbbf24, #fb923c);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.35);
    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.mp-pro-ribbon__btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.mp-nav-pro-chip {
    position: relative;
    display: none;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0c0a0f;
    text-decoration: none;
    overflow: hidden;
    background: linear-gradient(120deg, #fde68a, #f59e0b, #ea580c);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 8px 28px rgba(245, 158, 11, 0.28);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

@media (min-width: 900px) {
    .mp-nav-pro-chip {
        display: inline-flex;
    }
}

.mp-nav-pro-chip:hover {
    transform: translateY(-1px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.18),
        0 12px 36px rgba(245, 158, 11, 0.38);
}

.mp-nav-pro-chip__glow {
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: mpProChipSpin 5s linear infinite;
    opacity: 0.4;
    pointer-events: none;
}

@keyframes mpProChipSpin {
    to {
        transform: rotate(360deg);
    }
}

.mp-nav-pro-chip__icon,
.mp-nav-pro-chip__label {
    position: relative;
    z-index: 1;
}

.mp-nav-legacy-pro {
    font-weight: 700 !important;
    background: linear-gradient(105deg, #fde68a, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.mp-nav-legacy-pro:hover {
    opacity: 0.92;
}

.mp-dropdown-item-pro {
    color: #fde68a !important;
}

.mp-dropdown-item-pro:hover {
    background: rgba(251, 191, 36, 0.1) !important;
}

.mp-mobile-pro-banner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 1rem 1rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.35);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(244, 63, 94, 0.1));
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.mp-mobile-pro-banner:hover {
    border-color: rgba(251, 191, 36, 0.55);
    transform: scale(1.01);
}

.mp-mobile-pro-banner__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
    pointer-events: none;
}

.mp-mobile-pro-banner__icon {
    flex-shrink: 0;
    display: flex;
    color: #fde68a;
}

.mp-mobile-pro-banner__copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.mp-mobile-pro-banner__title {
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
}

.mp-mobile-pro-banner__sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
}

.mp-mobile-pro-banner__arrow {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: rgba(253, 230, 138, 0.9);
}

.mp-mobile-btn-pro {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(244, 63, 94, 0.12)) !important;
    border: 1px solid rgba(251, 191, 36, 0.35) !important;
    color: #fde68a !important;
}

.mp-pro-fab {
    position: fixed;
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: calc(4.5rem + env(safe-area-inset-bottom));
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    width: 3.35rem;
    min-height: 3.35rem;
    padding: 0.35rem;
    border-radius: 1.1rem;
    text-decoration: none;
    color: #0c0a0f;
    font-weight: 900;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(145deg, #fef3c7, #fbbf24, #f97316);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 12px 40px rgba(0, 0, 0, 0.45),
        0 0 32px rgba(251, 191, 36, 0.25);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

@media (min-width: 1024px) {
    .mp-pro-fab {
        bottom: max(1.5rem, env(safe-area-inset-bottom));
        width: 3.6rem;
        min-height: 3.6rem;
        border-radius: 1.2rem;
    }
}

.mp-pro-fab:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.28),
        0 18px 48px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(251, 191, 36, 0.35);
}

.mp-pro-fab__ring {
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    border: 2px solid rgba(251, 191, 36, 0.45);
    opacity: 0.6;
    animation: mpFabRing 2.8s ease-out infinite;
    pointer-events: none;
}

@keyframes mpFabRing {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }
    70%,
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

.mp-pro-fab__svg {
    position: relative;
    z-index: 1;
}

.mp-pro-fab__label {
    position: relative;
    z-index: 1;
    line-height: 1;
}

.mp-footer-pro-wrap {
    position: relative;
    z-index: 1;
}

.mp-footer-pro-card {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
    border-radius: 1.35rem;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.mp-footer-pro-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.35);
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(251, 191, 36, 0.12);
}

.mp-footer-pro-card__blobs {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(251, 191, 36, 0.18), transparent 55%),
        radial-gradient(ellipse 50% 70% at 100% 30%, rgba(244, 63, 94, 0.12), transparent 50%);
    pointer-events: none;
}

.mp-footer-pro-card__content {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 220px;
}

.mp-footer-pro-card__eyebrow {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253, 230, 138, 0.85);
    margin-bottom: 0.35rem;
}

.mp-footer-pro-card__title {
    margin: 0 0 0.4rem;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
}

.mp-footer-pro-card__title em {
    font-style: normal;
    background: linear-gradient(105deg, #fde68a, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mp-footer-pro-card__desc {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.52);
    max-width: 32rem;
}

.mp-footer-pro-card__cta {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0c0a0f;
    background: linear-gradient(105deg, #fef3c7, #fbbf24);
    box-shadow: 0 8px 28px rgba(251, 191, 36, 0.3);
    transition:
        filter 0.2s ease,
        transform 0.2s ease;
}

.mp-footer-pro-card:hover .mp-footer-pro-card__cta {
    filter: brightness(1.06);
    transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
    .mp-pro-ribbon__track,
    .mp-nav-pro-chip__glow,
    .mp-pro-fab__ring,
    .mp-pro-ribbon__dot {
        animation: none;
    }

    .mp-footer-pro-card:hover {
        transform: none;
    }
}

/* ——— Partenaires livraison (site public, Firestore) ——— */
.mp-partners-livreurs {
    position: relative;
    margin: 3rem 0 4rem;
    padding: 2.5rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(251, 113, 133, 0.08), transparent 55%),
        radial-gradient(ellipse 60% 50% at 100% 80%, rgba(59, 130, 246, 0.06), transparent 50%);
}

.mp-partners-livreurs--compact {
    margin: 2rem 0 2.5rem;
    padding: 1.75rem 0 2rem;
}

.mp-partners-livreurs__head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 1.75rem;
}

.mp-partners-livreurs--compact .mp-partners-livreurs__head {
    margin-bottom: 1.25rem;
}

.mp-partners-livreurs__eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(251, 113, 133, 0.95);
    margin: 0 0 0.5rem;
}

.mp-partners-livreurs__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(105deg, #fff 0%, rgba(255, 255, 255, 0.78) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mp-partners-livreurs__lead {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.48);
}

.mp-partners-livreurs__grid {
    min-height: 3rem;
}

.mp-partners-livreurs__loading {
    margin: 0;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.mp-partners-livreurs__grid-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
    gap: 1rem 1.1rem;
    justify-items: center;
}

.mp-partners-livreurs--compact .mp-partners-livreurs__grid-inner {
    grid-template-columns: repeat(auto-fill, minmax(6.5rem, 1fr));
    gap: 0.85rem;
}

.mp-partners-livreurs__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 8.5rem;
    text-align: center;
}

.mp-partners-livreurs__avatar {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mp-partners-livreurs--compact .mp-partners-livreurs__avatar {
    width: 3.75rem;
    height: 3.75rem;
}

.mp-partners-livreurs__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mp-partners-livreurs__initial {
    font-size: 1rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}

.mp-partners-livreurs__name {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.72);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.mp-partners-livreurs__empty {
    text-align: center;
    padding: 0.5rem 0;
}
