/* ================================================================
   Agotado Badge – Electro  v1.2
================================================================ */

/* Contenedor que envuelve la imagen */
.agb-image-wrapper {
    position: relative;
    display: block;
    line-height: 0;
}

/* ── Badge sobre la imagen ── */
.agb-badge {
    position: absolute;
    z-index: 20;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
    font-family: inherit;
}

/*
 * Esquina superior DERECHA — sin colisión con el badge de
 * descuento de Electro que vive en la esquina superior izquierda.
 */
.agb-badge--agotado {
    top: 10px;
    right: 10px;
    bottom: auto;
    left: auto;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 11px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    /* Sin border-radius para estilo cuadrado como la referencia */
    border-radius: 0;
}

/* ── Texto sutil bajo el precio / área del carrito ── */
.agb-subtle-text {
    display: block;
    font-size: 11px;
    color: #999;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 4px;
    line-height: 1.4;
}

/* Ocultar el botón de carrito / flecha en productos sin stock
   para que el texto sutil tome ese espacio limpiamente */
.agb-out-of-stock .add_to_cart_button,
.agb-out-of-stock .ajax_add_to_cart {
    display: none !important;
}

/* Responsive */
@media (max-width: 480px) {
    .agb-badge--agotado {
        font-size: 10px;
        padding: 4px 8px;
        top: 6px;
        right: 6px;
    }
}
