/* -----------------------------------------
   BLACK FRIDAY BADGE – STUDIO ICON
   Toegepast op WooCommerce .onsale class
   ----------------------------------------- */

.studio-icon-product-image-wrapper {
    position: relative !important;
}

/* Algemene badge styling */
.studio-icon-product-image-wrapper .onsale,
.product .onsale.studioicon-bf-onsale {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    z-index: 20 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 6px 12px !important;
    border-radius: 999px !important;
    border: 2px solid #ffce00 !important;

    background: #000000 !important;

    color: #ffce00 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;

    box-shadow: 0 4px 10px rgba(0,0,0,0.35) !important;
    pointer-events: none !important;
}

/* Glow effect rondom badge */
.studio-icon-product-image-wrapper .onsale::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(255, 206, 0, 0.6);
    z-index: -1;
}

/* Kleinere badge op mobiel */
@media (max-width: 480px) {
    .studio-icon-product-image-wrapper .onsale {
        padding: 4px 9px !important;
        font-size: 10px !important;
        border-width: 1.5px !important;
    }
}
