/* ==========================================================================
   ESTILOS EXCLUSIVOS: PASO 4 REVISADO (15 Colores del Filtro de Tienda)
   ========================================================================== */

.cg-step[data-step="4"] h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0c1a30;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cg-step[data-step="4"] .cg-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 25px;
}

/* Rejilla cuadriculada compacta de 4 columnas */
.cg-grid-options-step4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

/* Tarjeta de opción */
.cg-step[data-step="4"] .cg-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* Contenedor optimizado para muestras de acabado de color */
.cg-step[data-step="4"] .cg-card-image-wrapper {
    width: 100%;
    height: 95px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 8px;
    background: #f1f5f9;
}

.cg-step[data-step="4"] .cg-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cg-step[data-step="4"] .cg-card-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    display: block;
    text-align: center;
    padding: 2px 0;
}

/* Estado de Selección */
.cg-step[data-step="4"] .cg-card.selected {
    border: 2px solid #0054a6;
    box-shadow: 0 0 0 1px #0054a6;
}

.cg-step[data-step="4"] .cg-check-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #0054a6;
    color: #ffffff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Tarjeta Comodín: Not Sure */
.cg-card-not-sure-step4 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 121px; /* Cuadra perfecto con la altura de las tarjetas de color */
    border-style: dashed !important;
    background: #f8fafc !important;
}

.cg-not-sure-step4-content {
    text-align: center;
}

.cg-not-sure-step4-sub {
    font-size: 11px;
    color: #64748b;
    margin: 2px 0 0 0;
}

/* Botonera de navegación */
.cg-navigation-step4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 15px;
}