/* Estilos de modales */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    padding: 0;
    border-radius: 12px;
    max-width: 1000px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    z-index: 10;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.checkout-modal-content {
    max-width: 1200px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-container {
    padding: 30px;
}

.checkout-sections {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.success-modal-content {
    max-width: 500px;
    text-align: center;
    padding: 50px 30px;
}

.success-animation {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 20px;
}

@media (max-width: 968px) {
    .checkout-sections {
        grid-template-columns: 1fr;
    }
}
