﻿/* =========================================
   AJUSTES ESPECÍFICOS – PASAMANOS (PREMIUM)
========================================= */

/* --- CONTENEDORES DE PASOS --- */
#pasoMedida, #paso2 {
    position: relative; /* Necesario para que el Hint flote correctamente */
}

/* --- TARJETAS DE TUBO Y ACCESORIOS --- */
.tubo-card img {
    max-height: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Ajuste específico para que las piezas de pasamanos luzcan más */
.accesorio-card {
    padding: 1rem;
}

    .accesorio-card img {
        height: 80px;
        margin-bottom: 0.75rem;
        object-fit: contain;
    }

    .accesorio-card b {
        display: block;
        margin-top: .25rem;
        font-size: .85rem;
        line-height: 1.2;
    }

    .accesorio-card small {
        color: #334155;
        font-size: .75rem;
    }

    .accesorio-card .precio {
        font-weight: 700;
        color: #16a34a; /* Verde de la marca */
        margin-top: .25rem;
        font-size: .95rem;
    }

/* --- DISEÑO DE RESULTADO (TICKET NOCTURNO) --- */
#resultado {
    background: #1e293b; /* Azul noche profundo */
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
    max-width: 550px;
    margin: 2rem auto;
}

.resultado-header {
    text-align: center;
    color: #10b981;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* Cuerpo del ticket con efecto de separación */
.resultado-body {
    border-top: 2px dotted rgba(255,255,255,0.15);
    padding-top: 1.5rem;
}

/* Estilo de accesorios dentro del ticket */
.acc-card {
    background: rgba(255,255,255,0.04);
    margin-bottom: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- FILA DE TOTAL (DISEÑO CINTA) --- */
.resultado-total {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin-top: 1.5rem;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

    .resultado-total::before {
        content: "TOTAL ESTIMADO";
        font-size: 0.7rem;
        letter-spacing: 1px;
        opacity: 0.9;
    }

/* --- RESPONSIVE WIZARD (COMPACTO) --- */
@media (max-width: 576px) {
    .wizard-progress {
        margin-bottom: 30px !important;
    }

    .step-circle {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
    }

    .step-label {
        font-size: 10px !important;
    }

    #resultado {
        padding: 1.5rem;
        margin: 1rem;
    }
}
