/* ============================================
   SOLVET PROMOS — Estilos frontend
   Badge en ítems del carrito + banner de ahorro
   ============================================ */

/* Asegurar posición relativa para el badge */
.mobile-cart-item-image {
    position: relative;
}

/* Badge de promo sobre la imagen del ítem */
.mobile-cart-promo-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    background: #e91e63;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    padding: 3px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
}

.mobile-cart-promo-badge.badge-regalo {
    background: #2e7d32;
}

/* Banner de ahorro en el footer del carrito */
.mobile-cart-promo-savings {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 4px;
    padding: 7px 10px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #2e7d32;
}

.mobile-cart-promo-savings svg {
    flex-shrink: 0;
    fill: #2e7d32;
}
