/* Intec - Solicitud de presupuesto (Fase A) */

/*
 * ANTI-PARPADEO: ocultamos los botones de compra reales desde el primer render.
 * IMPORTANTE: excluimos (:not(.intec-btn-presupuesto)) nuestro propio botón,
 * para no ocultarlo por error.
 */
.intec-consulta-activa .cart-detailed-actions .text-xs-center > a.btn:not(.intec-btn-presupuesto),
.intec-consulta-activa .cart-buttons > a.btn-primary:not(.intec-btn-presupuesto) {
    display: none !important;
}

.intec-aviso-consulta {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 12px;
    color: #5d4037;
    padding: 12px 16px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.intec-aviso-mini {
    font-size: 0.8rem;
    padding: 8px 10px;
    margin-bottom: 8px;
}

.intec-btn-presupuesto {
    border-radius: 12px !important;
    display: block !important; /* nos aseguramos de que SIEMPRE se vea */
}

/* ===== Página de solicitud de presupuesto (Fase B) ===== */
.intec-solicitud .intec-bloque-titulo {
    color: #231f74;
    border-bottom: 1px solid #231f74;
    padding-bottom: .4rem;
    margin-bottom: 1rem;
}
.intec-lista-productos {
    list-style: none;
    padding: 0;
    margin: 0;
}
.intec-lista-productos .intec-prod {
    padding: .5rem .75rem;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: .5rem;
    display: flex;
    gap: .5rem;
}
.intec-prod-cant {
    font-weight: 700;
    color: #231f74;
    flex-shrink: 0;
}
.intec-form .form-group {
    margin-bottom: 1rem;
}
.intec-form label {
    font-weight: 600;
    margin-bottom: .3rem;
    display: block;
}
.intec-btn-enviar {
    border-radius: 12px !important;
    margin-top: .5rem;
}

/* ===== Página de confirmación (Fase C) ===== */
.intec-confirmacion {
    max-width: 560px;
    margin: 40px auto;
    padding: 30px 20px;
}
.intec-check {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: #2e7d32;
    color: #fff;
    font-size: 44px;
    margin: 0 auto 20px;
}
.intec-conf-titulo {
    color: #231f74;
    margin-bottom: 16px;
}
.intec-conf-texto {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
}
.intec-btn-volver {
    border-radius: 12px !important;
    margin-top: 16px;
}
.intec-errores {
    border-radius: 12px;
}
