/* Desactivar scroll del fondo */
body.modal-open {
    overflow: hidden;
}

/* Estilos para la ventana emergente personalizada */
.custom-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    /* Fondo semitransparente */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
    /* Animación de apertura */
}

.custom-window-content {
    position: relative;
    background-color: white;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    border-radius: 10px;
    overflow: auto;
    max-height: 90vh;
    /* Altura dinámica */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-in-out;
    /* Animación de apertura */
    font-family: 'Arial', sans-serif;
    /* Fuente moderna */
    border: 2px solid #ff6501;
    border-radius: 28px;
}

/* Mejora del estilo de los títulos */
.custom-window-content h3 {
    font-size: 22px;
    font-weight: bold;
    color: #f36f45;
    /* Naranja llamativo para el título */
    margin-bottom: 10px;
}

/* Texto descriptivo */
.custom-window-content p {
    font-size: 14px;
    color: #7d7d7d;
    /* Gris suave */
    margin-bottom: 10px;
}

/* Lista de características */
.custom-window-content ul {
    list-style: none;
    padding: 0;
}

.custom-window-content ul li {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: red;
}

/* Botón de Comprar */
.custom-window-content .btn-comprar {
    background: linear-gradient(90deg, #ff6501 0%, #ffb47a 100%);
    display: block;
    width: 100%;
    /* background-color: #00aaff; */
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    text-align: center;
    border-radius: 10px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-window-content .btn-comprar:hover {
    /* background-color: #0077cc; */
    background: linear-gradient(90deg, #ab25da 0%, #ff6501 100%);
}

/* Animaciones minimalistas */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}