.card {
    border-radius: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.empty-cart {
    text-align: center;
    color: #adb5bd;
    padding: 2rem 0;
    animation: fadeIn 0.3s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.btn-outline-danger {
    border-width: 1.5px;
}

.cart-style{
    max-height: 80vh !important;
    overflow-y: auto;
    border-radius: 1rem;
}

.cart-style::-webkit-scrollbar {
    width: 8px;
}

.cart-style::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.cart-style::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

.cart-style::-webkit-scrollbar-thumb:hover {
    background: var(--third);
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-cart-confirm{
    color:var(--primary) !important;
    background: var(--secondary) !important;
}

.btn-cart-confirm:hover{
    transform: scale(1.02);

}

.offer-text{
    text-decoration: line-through;
}

.img-producto {
    width: 100%;
    height: 100%;
    object-fit: contain;
}