/* ═══════════════════════════════════════════════
   Oferta Popup para WooCommerce – CSS v1.2.0
   ═══════════════════════════════════════════════ */

/* ─── Overlay ────────────────────────────────── */
.oferta-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    padding: 16px;
    box-sizing: border-box;
}
.oferta-overlay.activo {
    opacity: 1;
    visibility: visible;
}

/* ─── Modal ──────────────────────────────────── */
.oferta-modal {
    background: #fff;
    padding: 32px 28px;
    border-radius: 12px;
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(40px);
    transition: transform 0.3s ease;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
}
.oferta-overlay.activo .oferta-modal {
    transform: translateY(0);
}

/* ─── Título ─────────────────────────────────── */
.oferta-modal h3 {
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    padding-right: 24px;
}

/* ─── Botón cerrar ───────────────────────────── */
.cerrar-oferta {
    position: absolute;
    right: 16px; top: 12px;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    color: #666;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 4px 8px;
    border-radius: 4px;
}
.cerrar-oferta:hover,
.cerrar-oferta:focus {
    color: #111;
    transform: scale(1.15);
    outline: 2px solid currentColor;
}

/* ─── Labels ─────────────────────────────────── */
.oferta-modal label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

/* ─── Inputs ─────────────────────────────────── */
.oferta-modal input[type="text"],
.oferta-modal input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}
.oferta-modal input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* ─── Mensajes ───────────────────────────────── */
.oferta-mensaje {
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-top: 8px;
}
.oferta-exito {
    background: #eaf7ee;
    border: 1px solid #68c47e;
    color: #2d6a3f;
}
.oferta-error {
    background: #fff0f0;
    border: 1px solid #e07070;
    color: #9b2020;
}

/* ─── Botón enviar ───────────────────────────── */
#btn-enviar-oferta {
    width: 100%;
    margin-top: 4px;
}
#btn-enviar-oferta:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 480px) {
    .oferta-modal {
        padding: 24px 18px;
    }
}
