/* ==========================================================================
   ESTILOS EXCLUSIVOS: PASO 2 (What door style do you like?)
   ========================================================================== */

.cg-step[data-step="2"] h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0c1a30;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cg-step[data-step="2"] .cg-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 25px;
}

/* Rejilla de 4 columnas para que se acomoden de forma equilibrada */
.cg-grid-options-step2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Tarjetas */
.cg-step[data-step="2"] .cg-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* Manejo de imágenes internas */
.cg-step[data-step="2"] .cg-card-image-wrapper {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 12px;
    background: #f1f5f9;
}

.cg-step[data-step="2"] .cg-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cg-step[data-step="2"] .cg-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    display: block;
    text-align: center;
    padding: 4px 0;
}

/* Estado Seleccionado */
.cg-step[data-step="2"] .cg-card.selected {
    border: 2px solid #0054a6;
    box-shadow: 0 0 0 1px #0054a6;
}

.cg-step[data-step="2"] .cg-check-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: #0054a6;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Tarjeta especial: Not Sure */
.cg-card-not-sure {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 204px; /* Alineación exacta con la altura de las tarjetas con imagen */
    border-style: dashed !important; /* Estilo de borde discontinuo igual a la imagen */
    background: #f8fafc !important;
}

.cg-not-sure-content {
    text-align: center;
}

.cg-headset-icon {
    margin-bottom: 8px;
    color: #64748b;
}

.cg-not-sure-sub {
    font-size: 12px;
    color: #64748b;
    margin: 2px 0 0 0;
}

/* Botonera inferior alineada a los extremos */
.cg-navigation-step2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
}