
  
/* ================================
   ELIMINAR PRECIO 0,00 (ODOO)
   ================================ */

/* Oculta el valor numérico real */
.o_wsale_product_page .procesado-odoo-gratis {
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

/* Texto GRATIS */
.o_wsale_product_page .procesado-odoo-gratis::before {
    content: "GRATIS";
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #00ff88;
    text-shadow: 0 0 14px rgba(0,255,136,.7);
    line-height: 1;
}

/* (Opcional) Botón animado CTA */
.o_wsale_product_page .procesado-odoo-gratis::after {
    content: "OBTENER AHORA";
    padding: 16px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00ff88, #00cfff);
    color: #0b0b0b;
    font-size: 0.85rem;
    font-weight: 800;
    animation: pulseGratis 1.8s infinite;
    white-space: nowrap;
}



/* Animación */
@keyframes pulseGratis {
    0% { box-shadow: 0 0 0 0 rgba(0,255,136,.6); }
    70% { box-shadow: 0 0 0 18px rgba(0,255,136,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,255,136,0); }
}






.o_wsale_products_page .procesado-odoo-gratis::after, .homepage .procesado-odoo-gratis::after{
    margin-left: 20px;
    
    content: "OBTENER AHORA";
    padding: 8px 21px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00ff88, #00cfff);
    color: #0b0b0b;
    font-size: 0.70rem;
    font-weight: 800;
    animation: pulseGratis 1.8s infinite;
    white-space: nowrap;
}



/* Animación */
@keyframes pulseGratis {
    0% { box-shadow: 0 0 0 0 rgba(0,255,136,.6); }
    70% { box-shadow: 0 0 0 18px rgba(0,255,136,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,255,136,0); }
}