/* BADGES */

.badge-producto {
    font-size: 14px;
    font-weight: bold;
    background: #efefef;
    padding: 8px 14px;
    margin: 12px 0;
    border-radius: 6px;
    display: inline-block;
}

.badge-catalogo {
    font-size: 12px;
    font-weight: bold;
    margin: 8px 0;
}

.precio-rojo {
    color: #e00;
    font-weight: bold;
}


/* FREE SHIPPING BAR */

.free-shipping-bar {
    margin: 20px 0;
    padding: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
}

.free-shipping-bar.mini {
    border: none;
    padding: 10px 0;
}

.free-shipping-bar h3 {
    margin-bottom: 8px;
}

.shipping-progress {
    margin-top: 10px;
    height: 8px;
    background: #f3f4f6;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.shipping-progress::after {
    content: "";
    display: block;
    height: 100%;
    background: #e00;
    width: 0%;
    transition: width 0.6s ease;
}