/* ─── FP Badge Manager — Frontend ─────────────────── */

/* ── Méthode 1 : via filter get_image() (wrap inline) ── */
.fp-badge-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.fp-badge-wrapper img {
    display: block;
    width: 100%;
}

/* ── Méthode 2 : via action (overlay absolu) ─────────── */
/* Archive : le parent naturel de l'image dans WC/Shoptimizer */
ul.products li.product,
ul.products li.product .woocommerce-loop-product__link,
ul.products li.product .attachment-woocommerce_thumbnail,
.products .product {
    position: relative !important;
}

.fp-badge-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 20;
}

/* ── Single product — galerie Shoptimizer ────────────── */
/* Structure : .flex-viewport (overflow:hidden, position:relative)
   C'est lui le container visible de la galerie — on y injecte l'overlay */
.flex-viewport {
    position: relative !important;
}

.fp-badge-overlay--single {
    position: absolute;
    top: 0;
    left: 0;
    /* Même largeur que l'image visible, pas le slider entier */
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
    overflow: hidden;
}

/* ── Badge de base ───────────────────────────────────── */
.fp-badge {
    position: absolute;
    z-index: 21;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    display: inline-block;
    font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    /* Anti-aliasing pour rendu net */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Positions ───────────────────────────────────────── */
.fp-badge--top-left      { top: 8px;    left: 8px; }
.fp-badge--top-right     { top: 8px;    right: 8px; }
.fp-badge--bottom-left   { bottom: 8px; left: 8px; }
.fp-badge--bottom-right  { bottom: 8px; right: 8px; }
.fp-badge--top-center    { top: 8px;    left: 50%; transform: translateX(-50%); }
.fp-badge--bottom-center { bottom: 8px; left: 50%; transform: translateX(-50%); }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 480px) {
    .fp-badge {
        font-size: 9px !important;
        padding: 2px 5px !important;
    }
}
