/*
 * Botón "Agregar al carrito" sobre la tarjeta de listado. Archivo
 * nuevo y aislado — nunca se modifica assets/css/style.css.
 */

.mrs-quick-add {
    position: absolute;
    bottom: 8px;
    left: 8px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(10, 14, 23, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    transition: background 0.15s ease, transform 0.15s ease;
}

.mrs-quick-add:hover,
.mrs-quick-add:focus {
    background: #f50057;
    border-color: #f50057;
    color: #fff;
    transform: scale(1.08);
}

.mrs-quick-add svg {
    width: 16px;
    height: 16px;
}
