/* Modal de confirmación */
.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.confirm-modal.show {
    opacity: 1;
    visibility: visible;
}

.confirm-modal__content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.confirm-modal.show .confirm-modal__content {
    transform: scale(1);
}

.confirm-modal__header {
    text-align: center;
    margin-bottom: 20px;
}

.confirm-modal__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.confirm-modal__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.confirm-modal__message {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 25px;
}

.confirm-modal__product {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.confirm-modal__product-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 15px;
}

.confirm-modal__product-info {
    flex: 1;
}

.confirm-modal__product-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.confirm-modal__product-details {
    font-size: 0.9rem;
    color: #666;
}

.confirm-modal__actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.confirm-modal__btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.confirm-modal__btn--cancel {
    background: #e9ecef;
    color: #495057;
}

.confirm-modal__btn--cancel:hover {
    background: #dee2e6;
}

.confirm-modal__btn--confirm {
    background: #dc3545;
    color: white;
}

.confirm-modal__btn--confirm:hover {
    background: #c82333;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 480px) {
    .confirm-modal__content {
        padding: 20px;
        margin: 20px;
    }
    
    .confirm-modal__actions {
        flex-direction: column;
    }
    
    .confirm-modal__btn {
        width: 100%;
    }
}



