﻿/* =========================================
   AJUSTES ESPECÍFICOS – DUCHA Y TOALLERA (PREMIUM)
========================================= */

#pasoMedida, #paso2 {
    position: relative; /* Para el Hint */
}

/* --- TARJETAS DE PRODUCTO --- */
.tubo-card img {
    max-height: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* --- VISUAL DE BARRA --- */
.tubo-visual-wrapper {
    width: 100%;
    height: 22px;
    background: rgba(0,0,0,.05);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.tubo-visual {
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8); /* Azul agua para ducha */
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* --- ACCESORIOS --- */
.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;
        margin-top: .25rem;
        font-size: .95rem;
    }

/* --- DISEÑO DE RESULTADO (TICKET NOCTURNO) --- */
#resultado {
    background: #1e293b;
    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: #3b82f6;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.resultado-body {
    border-top: 2px dotted rgba(255,255,255,0.15);
    padding-top: 1.5rem;
}

.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 --- */
.resultado-total {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 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(59, 130, 246, 0.2);
}

    .resultado-total::before {
        content: "TOTAL ESTIMADO";
        font-size: 0.7rem;
        letter-spacing: 1px;
        opacity: 0.9;
    }

/* --- RESPONSIVE --- */
@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;
    }
}
