/* Contenedor flexible de las etiquetas */
.acpd-product-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

/* Base común de todas las etiquetas */
.acpd-custom-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.25s ease;
}

/* ==========================================
   FORMAS DINÁMICAS (Prefix class de Elementor)
   ========================================== */

/* Cuadrado */
.acpd-shape-square .acpd-custom-badge {
    border-radius: 0px;
    padding: 5px 10px;
}

/* Redondeado / Píldora */
.acpd-shape-rounded .acpd-custom-badge {
    border-radius: 12px;
    padding: 5px 10px;
}

/* Circular Fijo */
.acpd-shape-circle .acpd-custom-badge {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 0;
}

/* ==========================================
   COLORES DE CONTINGENCIA (Fallbacks)
   ========================================== */
.acpd-custom-badge--sale { background-color: #e53935; color: #ffffff; }
.acpd-custom-badge--new  { background-color: #00bcd4; color: #ffffff; }
.acpd-custom-badge--hot  { background-color: #ffb300; color: #ffffff; }
.acpd-custom-badge--out-of-stock { background-color: #767676; color: #ffffff; }