/* ==========================================================================
   ESTILOS EXCLUSIVOS: PASO 1 (What are you shopping for?)
   ========================================================================== */

.cg-step[data-step="1"] h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0c1a30;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cg-step[data-step="1"] .cg-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 25px;
}

/* Rejilla exacta de 3 columnas (se adaptará automáticamente a 2 filas al haber 6 tarjetas) */
.cg-step[data-step="1"] .cg-grid-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Tarjetas */
.cg-step[data-step="1"] .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;
}

/* Contenedor de la Imagen */
.cg-step[data-step="1"] .cg-card-image-wrapper {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 12px;
    background: #f1f5f9;
}

.cg-step[data-step="1"] .cg-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Título de la tarjeta centrado según la imagen */
.cg-step[data-step="1"] .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="1"] .cg-card.selected {
    border: 2px solid #0054a6;
    box-shadow: 0 0 0 1px #0054a6;
}

/* Checkmark circular azul */
.cg-step[data-step="1"] .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;
}

/* Contenedor inferior de navegación y aviso */
.cg-navigation-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
}

/* Alerta informativa inferior izquierda */
.cg-notice-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cg-info-icon {
    background: #0054a6;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.cg-notice-info p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}