/* =============================================================================
   Vediteis Creators – Frontend Styles
   Breakpoints : Tablet ≤ 1024px | Mobile ≤ 767px | Petit mobile ≤ 480px
============================================================================= */

/* ─── Product Creator Widget ─────────────────────────────────────────────── */

.vediteis-product-creator.vpc {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
}

.vpc__image {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
}

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

.vpc__body {
    flex: 1;
    min-width: 0;
}

.vpc__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 4px;
}

.vpc__name {
    font-family: 'Against', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0 0 8px;
    line-height: 1.2;
}

.vpc__description {
    font-size: 0.875rem;
    color: #555;
    margin: 0 0 12px;
    line-height: 1.55;
}

.vpc__link {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none !important;
    color: inherit;
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 6px 18px;
    transition: opacity 0.2s;
}

.vpc__link:hover,
.vpc__link:focus,
.vpc__link:visited {
    opacity: 0.65;
    text-decoration: none !important;
}

/* ─── Creator Gallery Widget ──────────────────────────────────────────────── */

.vediteis-creator-gallery.vcg {
    display: grid;
    gap: 0;
}

.vcg--cols-1 { grid-template-columns: 1fr; }
.vcg--cols-2 { grid-template-columns: repeat(2, 1fr); }
.vcg--cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Card */
.vcg-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.vcg--cols-2 .vcg-card:nth-child(odd),
.vcg--cols-3 .vcg-card:nth-child(3n+1) {
    border-right: 1px solid #f0f0f0;
}

/* Arch */
.vcg-arch-wrap {
    flex-shrink: 0;
}

.vcg-arch {
    position: relative;
    width: 120px;
    height: 155px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-style: solid;
    border-width: 3px;
    border-color: #1D4ED8;
    background: transparent;
    overflow: hidden;
}

.vcg-arch img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
}

/* Card body */
.vcg-card__body {
    flex: 1;
    min-width: 0;
    padding-top: 8px;
}

.vcg-card__name {
    font-family: 'Against', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0 0 10px;
    line-height: 1.2;
}

.vcg-card__desc {
    font-size: 0.8125rem;
    color: #555;
    margin: 0 0 14px;
    line-height: 1.55;
}

.vcg-card__link {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 6px 16px;
    transition: opacity 0.2s;
    text-decoration: none !important;
}

.vcg-card__link:hover,
.vcg-card__link:focus,
.vcg-card__link:visited {
    opacity: 0.65;
    text-decoration: none !important;
}

/* Pagination */
.vcg-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 36px;
    padding: 0 20px;
}

.vcg-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.vcg-page-link:hover {
    text-decoration: none;
    opacity: 0.75;
}

.vcg-page-link.is-active {
    color: #DC2626;
    font-weight: 700;
    text-decoration: none;
}

/* Empty state */
.vcg-empty {
    color: #888;
    font-style: italic;
}

/* Arch cliquable */
.vcg-arch-wrap--clickable {
    cursor: pointer;
}

.vcg-arch-wrap--clickable:hover .vcg-arch {
    opacity: 0.85;
}

.vcg-arch-wrap--clickable:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
    border-radius: 4px;
}

/* ─── Creator Gallery – Lightbox ─────────────────────────────────────────── */

.vcg-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.vcg-lightbox.is-open {
    display: flex;
}

.vcg-lightbox__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(320px, 85vw);
    width: 100%;
}

.vcg-lightbox__close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    line-height: 1;
    color: #111;
    padding: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.vcg-lightbox__close:hover {
    opacity: 0.7;
}

.vcg-lightbox__arch {
    width: 100%;
    aspect-ratio: 120 / 155;
    border-radius: 50% 50% 0 0;
    overflow: hidden;
    border: 4px solid #fff;
    position: relative;
}

.vcg-lightbox__arch img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 50% 50% 0 0;
}

.vcg-lightbox__name {
    color: #fff;
    font-family: 'Against', sans-serif;
    font-size: clamp(1.3rem, 5vw, 2rem);
    font-weight: 400;
    margin: 20px 0 0;
    text-align: center;
    line-height: 1.2;
}

/* ─── Product Gallery Widget ─────────────────────────────────────────────── */

.vediteis-product-gallery.vpg {
    display: grid;
    gap: 32px 24px;
}

.vpg--cols-1 { grid-template-columns: 1fr; }
.vpg--cols-2 { grid-template-columns: repeat(2, 1fr); }
.vpg--cols-3 { grid-template-columns: repeat(3, 1fr); }
.vpg--cols-4 { grid-template-columns: repeat(4, 1fr); }
.vpg--cols-5 { grid-template-columns: repeat(5, 1fr); }

/* Card */
.vpg-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Arch link wrapper */
.vpg-card__arch-link {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    text-decoration: none !important;
}

/* Arch – tall doorway proportions */
.vpg-arch {
    position: relative;
    width: 200px;
    height: 265px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-style: solid;
    border-width: 4px;
    border-color: #EAB308;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vpg-arch img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 12px;
    box-sizing: border-box;
}

/* Image paysage : pas d'arrondi — les coins restent dans la zone rectangulaire de l'arche */
.vpg-arch--landscape img {
    border-radius: 0 !important;
}

/* Card body */
.vpg-card__body {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px 4px 0;
    flex: 1;
    text-align: left;
    align-items: flex-start;
}

/* Category */
.vpg-card__category {
    font-size: 0.875rem;
    color: #888;
    margin: 0 0 2px;
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
}

/* Name row */
.vpg-card__name-row {
    margin-bottom: 6px;
    line-height: 1.5;
}

.vpg-card__name {
    display: inline;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.vpg-card__name a {
    text-decoration: none;
    color: inherit;
}

.vpg-card__name a:hover {
    opacity: 0.75;
    text-decoration: none;
}

/* "EN SAVOIR +" pill – inline */
.vpg-card__detail {
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    color: inherit;
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 4px 18px;
    white-space: nowrap;
    margin-left: 8px;
    transition: opacity 0.2s;
}

.vpg-card__detail:hover,
.vpg-card__detail:visited {
    opacity: 0.65;
    text-decoration: none !important;
    color: inherit;
}

/* Prix + bouton */
.vpg-card__price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin-top: auto;
    width: 100%;
}

/* Price */
.vpg-card__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: inherit;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
    width: auto;
    max-width: none;
}

.vpg-card__price ins {
    text-decoration: none;
}

/* "AJOUTER AU PANIER" button – résiste aux resets WooCommerce/thème */
.vpg-card__atc,
button.vpg-card__atc {
    display: inline-flex !important;
    align-self: flex-start !important;
    width: auto !important;
    max-width: fit-content !important;
    margin: 0 !important;
    padding: 4px 18px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    text-align: left !important;
    text-decoration: none !important;
    color: #fff !important;
    background: #111 !important;
    background-color: #111 !important;
    border: 1px solid #111 !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
    vertical-align: middle !important;
    box-sizing: border-box !important;
    cursor: pointer;
    transition: opacity 0.2s;
}

.vpg-card__atc:hover,
.vpg-card__atc:focus,
button.vpg-card__atc:hover,
button.vpg-card__atc:focus {
    opacity: 0.8;
    color: #fff !important;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Pagination */
.vpg-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.vpg-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.vpg-page-link:hover {
    text-decoration: none;
    opacity: 0.75;
}

.vpg-page-link.is-active {
    color: #DC2626;
    font-weight: 700;
    text-decoration: none;
}

/* Empty state */
.vpg-empty {
    color: #888;
    font-style: italic;
}

/* ─── Creator Carousel Widget ────────────────────────────────────────────── */

.vediteis-creator-carousel.vcc {
    display: grid !important;
    grid-template-columns: 44px 1fr 44px !important;
    align-items: center;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}

.vcc-track-wrap {
    overflow: hidden;
    min-width: 0;
}

.vcc-track {
    display: flex !important;
    flex-direction: row !important;
    transition: transform 0.35s ease;
    will-change: transform;
}

.vcc-item {
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0 12px;
    text-align: center;
}

.vcc-item__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    color: inherit;
}

.vcc-item__link:hover .vcc-arch {
    opacity: 0.85;
}

.vcc-arch {
    position: relative !important;
    width: 120px;
    height: 155px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border: 3px solid #1D4ED8;
    background: transparent;
    overflow: hidden !important;
    flex-shrink: 0;
    transition: opacity 0.2s;
    line-height: 0;
}

.vcc-arch img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
}

.vcc-name {
    display: block;
    width: 100%;
    margin-top: 12px;
    font-family: 'Against', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

.vcc-btn {
    justify-self: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 0;
    background: #111;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    color: #fff;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.vcc-btn--prev::before,
.vcc-btn--next::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    flex-shrink: 0;
}

.vcc-btn--prev::before {
    border-left: 2px solid currentColor;
    transform: rotate(-45deg) translate(1px, 0);
}

.vcc-btn--next::before {
    border-right: 2px solid currentColor;
    transform: rotate(45deg) translate(-1px, 0);
}

.vcc-btn:hover:not(:disabled) {
    opacity: 0.65;
}

.vcc-btn:disabled {
    cursor: default;
}

.vcc-empty {
    color: #888;
    font-style: italic;
}

/* ─── Carousel artistes : photo pleine arche ─────────────────────────────── */
.vpc-arch--cover {
    padding: 0;
    overflow: hidden;
}

.vpc-arch--cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
}

.vpc-arch--cover ~ .vpc-meta {
    height: 3em;
}

/* ─── Creator Banner Widget ──────────────────────────────────────────────── */

.vediteis-creator-banner.vcb {
    display: flex;
    align-items: center;
    gap: 56px;
    background-color: #495ca9;
    padding: 48px 80px;
    box-sizing: border-box;
    /*
     * Full-bleed via marges négatives plutôt que transform.
     * transform créait un stacking context (étape 6) qui peignait par-dessus
     * les blocs normaux (étape 3) comme la galerie de produits.
     */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.vcb--reverse {
    flex-direction: row-reverse;
}

/* Colonne image */
.vcb__col-image {
    flex: 0 0 42%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arche */
.vcb__arch {
    position: relative;
    width: 280px;
    height: 380px;
    border-top-left-radius: 140px;
    border-top-right-radius: 140px;
    border-style: solid;
    border-width: 4px;
    border-color: #EAB308;
    overflow: hidden !important;
    flex-shrink: 0;
}

.vcb__arch img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
}

/* Colonne texte */
.vcb__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vcb__name {
    font-family: 'Against', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 28px;
    color: #ffffff;
}

.vcb__description {
    font-size: 0.9rem;
    line-height: 1.75;
    color: #ffffff;
    margin: 0;
    columns: 2;
    column-gap: 36px;
}

/* ─── Barre de filtres produits ────────────────────────────────────────── */

.elementor-widget-vediteis-product-filter-bar {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    max-width: none !important;
    z-index: 100 !important;
}

.vpfb {
    background-color: #ffc632;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
}

.vpfb__inner {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 32px;
    padding: 12px 32px;
    width: 100%;
    box-sizing: border-box;
}

.vpfb__label {
    font-weight: 700;
    font-style: italic;
    white-space: nowrap;
    flex-shrink: 0;
    color: #000 !important;
}

/* Dropdown custom */
.vpfb__dropdown {
    position: relative;
    flex-shrink: 0;
}

.vpfb__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-weight: 700;
    font-family: inherit;
    font-size: inherit;
    color: #000 !important;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
    white-space: nowrap;
    line-height: inherit;
    border-radius: 0 !important;
    text-decoration: none !important;
}

.vpfb__trigger:hover,
.vpfb__trigger:focus,
.vpfb__trigger:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    color: #000 !important;
    background: transparent !important;
}

.vpfb__trigger-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #000;
    transition: transform 0.15s;
    flex-shrink: 0;
}

.vpfb__dropdown.is-open .vpfb__trigger-arrow {
    transform: rotate(180deg);
}

.vpfb__menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 160px;
    background-color: #ffc632 !important;
    border: none !important;
    outline: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    list-style: none;
    margin: 0;
    padding: 4px 0;
    z-index: 9999;
}

.vpfb__dropdown.is-open .vpfb__menu {
    display: block;
}

.vpfb__menu li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    border: none !important;
}

.vpfb__menu li::before,
.vpfb__menu li::marker {
    display: none !important;
    content: none !important;
}

.vpfb__menu button {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 8px 16px !important;
    margin: 0 !important;
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
    color: #000 !important;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 0 !important;
    text-decoration: none !important;
}

.vpfb__menu button:hover,
.vpfb__menu button:focus,
.vpfb__menu button.is-selected {
    background-color: rgba(0,0,0,0.08) !important;
    font-weight: 700;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    color: #000 !important;
}

.vpfb__reset {
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1rem;
    opacity: 0.5;
    transition: opacity 0.15s;
    margin-left: auto;
    flex-shrink: 0;
    line-height: 1;
    color: #000 !important;
    border: none !important;
    outline: none !important;
}

.vpfb__reset:hover,
.vpfb__reset:focus,
.vpfb__reset:active {
    opacity: 1;
    color: #000 !important;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* =============================================================================
   RESPONSIVE
   Breakpoints : Tablet ≤ 1024px | Mobile ≤ 767px | Petit mobile ≤ 480px
============================================================================= */

/* ─── Tablet (≤ 1024px) ────────────────────────────────────────────────────── */

@media (max-width: 1024px) {

    /* Grilles : 3 cols → 2 */
    .vcg--cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .vpg--cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .vpg--cols-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .vpg--cols-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Creator Banner – padding & gap réduits */
    .vediteis-creator-banner.vcb {
        padding: 40px 48px;
        gap: 40px;
    }

    .vcb__description {
        columns: 1;
    }

    .vcb__arch {
        width: 220px;
        height: 300px;
        border-top-left-radius: 110px;
        border-top-right-radius: 110px;
    }

    /* Creator Gallery – arche un peu plus compacte */
    .vcg-arch {
        width: 100px;
        height: 130px;
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
    }

    /* Creator Carousel – boutons légèrement plus petits */
    .vediteis-creator-carousel.vcc {
        grid-template-columns: 36px 1fr 36px !important;
    }
}

/* ─── Mobile (≤ 767px) ─────────────────────────────────────────────────────── */

@media (max-width: 767px) {

    /* ── Creator Gallery ── */
    .vcg--cols-2,
    .vcg--cols-3 {
        grid-template-columns: 1fr;
    }

    /* Supprimer la bordure droite en colonne unique */
    .vcg--cols-2 .vcg-card:nth-child(odd),
    .vcg--cols-3 .vcg-card:nth-child(3n+1) {
        border-right: none;
    }

    .vcg-card {
        gap: 16px;
        padding: 20px 16px;
    }

    .vcg-arch {
        width: 80px;
        height: 104px;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }

    .vcg-card__name {
        font-size: 1.3rem;
    }

    /* ── Product Gallery ── */
    .vpg--cols-2,
    .vpg--cols-3,
    .vpg--cols-4,
    .vpg--cols-5 {
        grid-template-columns: 1fr;
        gap: 36px 0;
    }

    .vpg-card__arch-link {
        width: 100% !important;
        justify-content: center !important;
    }

    .vpg-card__body {
        align-items: center !important;
        text-align: center !important;
    }

    .vpg-card__price-row {
        justify-content: center !important;
    }

    /* Arche : hauteur fixe (identique à l'ancienne inline style), arc via 500px */
    .vpg-arch {
        width: min(220px, 100%) !important;
        height: 265px !important;
        border-radius: 500px 500px 0 0 !important;
    }

    /* L'image reste en flux normal avec hauteur 100% du parent */
    .vpg-arch img {
        position: static !important;
        width: 100% !important;
        height: 100% !important;
    }

    /* Empêche la section Elementor de clipper la galerie quand elle est plus haute
       que prévu (desktop 3-cols → mobile 1-col = hauteur 3× plus grande) */
    .elementor-section:has(.elementor-widget-vediteis-product-gallery),
    .elementor-column:has(.elementor-widget-vediteis-product-gallery),
    .elementor-widget-wrap:has(.elementor-widget-vediteis-product-gallery),
    .e-con:has(.elementor-widget-vediteis-product-gallery),
    .e-con-inner:has(.elementor-widget-vediteis-product-gallery) {
        height: auto !important;
    }

    /* Espace de respiration après le dernier produit */
    .vediteis-product-gallery.vpg {
        padding-bottom: 40px;
    }

    /* ── Product Creator ── */
    .vpc__image {
        width: 56px;
        height: 56px;
    }

    .vpc__name {
        font-size: 1.4rem;
    }

    /* ── Creator Carousel ── */
    .vediteis-creator-carousel.vcc {
        grid-template-columns: 30px 1fr 30px !important;
        gap: 4px;
    }

    .vcc-btn {
        width: 28px;
        height: 28px;
    }

    .vcc-arch {
        width: 80px;
        height: 104px;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }

    .vcc-name {
        font-size: 0.85rem;
        margin-top: 8px;
    }

    /* ── Creator Banner ── */
    .vediteis-creator-banner.vcb {
        flex-direction: column !important;
        padding: 36px 24px;
        gap: 28px;
    }

    /* Annuler le reverse sur mobile – image toujours en premier */
    .vediteis-creator-banner.vcb.vcb--reverse {
        flex-direction: column !important;
    }

    .vcb__col-image {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .vcb__arch {
        width: 160px;
        height: 220px;
        border-top-left-radius: 80px;
        border-top-right-radius: 80px;
    }

    .vcb__body {
        align-items: flex-start;
        text-align: left;
    }

    .vcb__name {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 18px;
    }

    .vcb__description {
        columns: 1;
        font-size: 0.875rem;
    }

    /* ── Filter Bar ── */
    .vpfb__inner {
        gap: 12px;
        padding: 10px 16px;
        flex-wrap: wrap;
    }

    /* Dropdowns passent à la ligne */
    .vpfb__dropdown {
        flex: 0 0 auto;
    }

    /* Bouton reset à droite de la même ligne que les dropdowns */
    .vpfb__reset {
        margin-left: auto;
    }
}

/* ─── Petit mobile (≤ 480px) ───────────────────────────────────────────────── */

@media (max-width: 480px) {

    /* Creator Gallery – arche encore plus compacte */
    .vcg-arch {
        width: 64px;
        height: 84px;
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
    }

    .vcg-card {
        gap: 12px;
        padding: 16px 12px;
    }

    .vcg-card__name {
        font-size: 1.15rem;
    }

    /* Product Gallery – la règle 767px (min(220px,100%) × 265px) suffit pour tous les mobiles */

    /* Product Creator – empile image et texte sur très petits écrans */
    .vediteis-product-creator.vpc {
        flex-direction: column;
        gap: 12px;
    }

    /* Creator Banner – padding minimal */
    .vediteis-creator-banner.vcb {
        padding: 28px 16px;
    }

    .vcb__arch {
        width: 140px;
        height: 190px;
        border-top-left-radius: 70px;
        border-top-right-radius: 70px;
    }

    .vcb__name {
        font-size: clamp(1.5rem, 9vw, 2rem);
    }

    /* Filter Bar – masquer le label introductif sur écran très étroit */
    .vpfb__label {
        display: none;
    }

    /* Carousel – boutons encore plus petits */
    .vcc-arch {
        width: 64px;
        height: 84px;
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
    }

    .vcc-name {
        font-size: 0.78rem;
    }
}
