/* =========================================================
   TIENDA JOCHY - CINTA DIAGONAL DE DESCUENTO
   ========================================================= */

.product-media,
.product-media--image,
.product-detail-image{
    position:relative;
    overflow:hidden;
}

/* Oculta cualquier badge antiguo de oferta */
.product-card .badge,
.product-detail-image .badge{
    display:none !important;
}

.sale-ribbon{
    position:absolute;
    top:19px;
    left:-47px;
    z-index:10;
    width:190px;
    min-height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    padding:0 18px;
    background:linear-gradient(180deg,#ff4048 0%,#e31b24 100%);
    color:#fff;
    transform:rotate(-45deg);
    transform-origin:center;
    box-shadow:0 10px 24px rgba(173,16,24,.28);
    border-top:1px solid rgba(255,255,255,.26);
    border-bottom:1px solid rgba(112,0,5,.10);
    pointer-events:none;
}

.sale-ribbon strong{
    font-size:13px;
    line-height:1;
    font-weight:950;
    letter-spacing:.01em;
}

.sale-ribbon small{
    font-size:11px;
    line-height:1;
    font-weight:900;
    letter-spacing:.025em;
}

.sale-ribbon--detail{
    top:24px;
    left:-48px;
    width:210px;
    min-height:48px;
}

.sale-ribbon--detail strong{
    font-size:14px;
}

.sale-ribbon--detail small{
    font-size:12px;
}

.product-price del,
.product-price--detail del{
    color:#8d858a;
    font-size:.82em;
    margin-left:8px;
}

@media(max-width:680px){
    .sale-ribbon{
        top:14px;
        left:-55px;
        width:175px;
        min-height:37px;
        gap:4px;
    }

    .sale-ribbon strong{
        font-size:11px;
    }

    .sale-ribbon small{
        font-size:9px;
    }

    .sale-ribbon--detail{
        top:17px;
        left:-58px;
        width:195px;
        min-height:41px;
    }

    .sale-ribbon--detail strong{
        font-size:12px;
    }

    .sale-ribbon--detail small{
        font-size:10px;
    }
}
