/**
 * Antílope Fit Room — modal styles.
 *
 * Prefijo: .avfr-  (Antílope Virtual Fitting Room)
 *
 * Filosofía de especificidad: WordPress inyecta este CSS en <head>, pero Rey
 * y Elementor pueden tener estilos posteriores (style tags inline o CSS
 * cargado más tarde). Por eso usamos !important en colores y fondos críticos
 * para el contraste del modal. Layout y tipografía se dejan sin !important
 * porque los selectores propios son suficientes.
 *
 * Regla del naranja (acento de marca #FF6000): sutil, como en la tienda.
 * Sólo aparece en: selectores activos (.avfr-pill.active, .avfr-size-pill.active)
 * y en el punto "Ideal" de la fit-bar. Los CTAs (.avfr-btn), el slider de
 * fit preference y el trigger del botón siguen en negro.
 */

/* ============================================================
 * VARIABLES DE MARCA
 * ============================================================ */
:root {
	--avfr-black:      #0a0a0a;
	--avfr-white:      #ffffff;
	--avfr-orange:     #FF6000;
	--avfr-gray-bg:    #f5f5f3;
	--avfr-gray-light: #e0e0e0;
	--avfr-gray-text:  #666666;
	--avfr-gray-mid:   #f0f0ee;
}

/* ============================================================
 * OVERLAY
 * ============================================================ */
.avfr-overlay {
	position: fixed;
	inset: 0;
	z-index: 999998;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.25s ease;
	padding: 20px;
	overflow-y: auto;
}
.avfr-overlay.show { opacity: 1; }

/* ============================================================
 * MODAL CONTAINER
 * ============================================================ */
.avfr-modal {
	background: var(--avfr-white) !important;
	border-radius: 16px;
	width: 100%;
	max-width: 1000px;
	max-height: 92vh;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	grid-template-rows: minmax(0, 1fr);
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
	transform: scale(0.96);
	transition: transform 0.25s ease;
	font-family: 'DIN Pro', 'Arial Narrow', sans-serif;
	color: var(--avfr-black) !important;
}
.avfr-modal * { box-sizing: border-box; }
.avfr-modal button { font-family: inherit; }
.avfr-overlay.show .avfr-modal { transform: scale(1); }

/* ============================================================
 * VISUAL (columna izquierda — producto)
 * ============================================================ */
.avfr-visual {
	background: var(--avfr-gray-bg);
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 0;
	overflow: hidden;
}
.avfr-visual img {
	max-width: 100%;
	max-height: 420px;
	object-fit: contain;
}
.avfr-brand {
	position: absolute;
	top: 20px;
	left: 20px;
	font-family: 'DIN Pro', 'Arial Narrow', sans-serif;
	font-weight: 900;
	font-size: 18px;
	letter-spacing: 0.08em;
	color: var(--avfr-black) !important;
}

/* ============================================================
 * PANEL (columna derecha — contenido)
 * ============================================================ */
.avfr-panel {
	padding: 30px 36px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	position: relative;
	min-height: 0;
}

/* Nav (back + close) */
.avfr-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
	min-height: 40px;
}
.avfr-back,
.avfr-close {
	background: transparent;
	border: 1.5px solid var(--avfr-black);
	border-radius: 999px;
	padding: 8px 20px;
	font-family: inherit;
	font-weight: 600;
	font-size: 12px;
	cursor: pointer;
	color: var(--avfr-black) !important;
	transition: all 0.15s;
}
.avfr-back:hover { background: var(--avfr-black); color: var(--avfr-white) !important; }
.avfr-close {
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	border-radius: 999px;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.avfr-close:hover { background: var(--avfr-gray-mid); }
.avfr-back.hidden { visibility: hidden; }

/* ============================================================
 * STEPS
 * ============================================================ */
.avfr-step {
	display: none;
	flex-direction: column;
	gap: 20px;
}
.avfr-step.active { display: flex; }

.avfr-title {
	font-family: 'DIN Pro', 'Arial Narrow', sans-serif;
	font-weight: 800;
	font-size: 26px;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--avfr-black) !important;
	margin: 0;
}
.avfr-subtitle {
	font-size: 13px;
	color: var(--avfr-gray-text) !important;
	margin: -12px 0 0 0;
	line-height: 1.4;
}

/* Label de campos con estructura (ej. "Género" sobre las pills) */
.avfr-field-label {
	font-weight: 700;
	font-size: 12px;
	margin-bottom: 6px;
	color: var(--avfr-gray-text) !important;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* ============================================================
 * PILLS (género y otros selectores por botones)
 * Naranja en .active — es el "selector activo" más visible del modal.
 * ============================================================ */
.avfr-pills {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.avfr-pill {
	padding: 10px 22px;
	border: 1.5px solid var(--avfr-black);
	background: transparent;
	color: var(--avfr-black) !important;
	border-radius: 999px;
	font-family: inherit;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.15s;
	flex: 1;
	min-width: 80px;
}
.avfr-pill:hover { background: var(--avfr-gray-mid); }
.avfr-pill.active {
	background: var(--avfr-orange) !important;
	border-color: var(--avfr-orange);
	color: var(--avfr-white) !important;
}

/* ============================================================
 * FIELDS (label + input + unit/toggle)
 * ============================================================ */
.avfr-field {
	display: grid;
	grid-template-columns: 90px 1fr auto;
	align-items: center;
	gap: 12px;
}
.avfr-field > label {
	font-weight: 600;
	font-size: 13px;
	color: var(--avfr-black) !important;
}
.avfr-input {
	padding: 12px 16px;
	border: 1.5px solid var(--avfr-gray-light);
	border-radius: 999px;
	font-family: inherit;
	font-size: 14px;
	text-align: center;
	font-weight: 600;
	background: #fafafa !important;
	outline: none;
	color: var(--avfr-black) !important;
	transition: border-color 0.15s, background 0.15s;
	width: 100%;
	-moz-appearance: textfield;
}
.avfr-input:focus {
	border-color: var(--avfr-black);
	background: var(--avfr-white) !important;
}
.avfr-input::-webkit-outer-spin-button,
.avfr-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.avfr-unit {
	font-size: 12px;
	color: #888 !important;
	font-weight: 600;
}

/* Expert mode: grid más compacto (sin label, sólo input + unit) */
.avfr-field-compact { grid-template-columns: 1fr 50px; }

/* Campo de email: full width, sin grid */
.avfr-field-email { display: block; }
.avfr-input-email {
	width: 100%;
	text-align: left;
	padding: 14px 22px;
	font-size: 15px;
}

/* ============================================================
 * UNIT TOGGLE (kg/lbs) — texto plano "kg | lbs", sin caja.
 * Activo en naranja, inactivo en gris medio.
 * ============================================================ */
.avfr-unit-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0;
	background: transparent;
	border: none;
	padding: 0;
}
.avfr-unit-btn {
	padding: 4px 8px;
	border: none;
	background: transparent !important;
	font-family: inherit;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	color: #999 !important;
	transition: color 0.15s;
	letter-spacing: 0.02em;
	line-height: 1;
	text-transform: lowercase;
}
/* Separador "|" entre kg y lbs */
.avfr-unit-btn + .avfr-unit-btn {
	border-left: 1px solid #ccc;
	padding-left: 10px;
	margin-left: 2px;
}
.avfr-unit-btn:hover:not(.active) { color: var(--avfr-black) !important; }
.avfr-unit-btn.active { color: var(--avfr-orange) !important; }

/* ============================================================
 * VALIDATE-CHEST STEP — lista de 3 opciones apiladas
 * (Sí es correcto / Más delgado / Más músculo)
 * ============================================================ */
.avfr-stack {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.avfr-option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	border: 2px solid var(--avfr-gray-light);
	background: var(--avfr-white) !important;
	border-radius: 16px;
	cursor: pointer;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	color: var(--avfr-black) !important;
	text-align: left;
	width: 100%;
	transition: all 0.15s;
	line-height: 1.3;
}
.avfr-option:hover { border-color: var(--avfr-black); }
.avfr-option.active {
	border-color: var(--avfr-orange);
	background: #fff5f0 !important;
}
.avfr-option-check {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--avfr-orange);
	color: var(--avfr-white) !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 13px;
	flex-shrink: 0;
}
.avfr-option-meta {
	margin-left: auto;
	color: var(--avfr-gray-text) !important;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
}

/* ============================================================
 * BODY SHAPES (selector de forma del cuerpo)
 * Negro en .active — por consistencia con el CTA principal del step.
 * ============================================================ */
.avfr-shape-grid-title {
	font-weight: 700;
	font-size: 12px;
	margin-bottom: 8px;
	color: var(--avfr-gray-text) !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.avfr-shape-grid-hint {
	font-weight: 500;
	letter-spacing: 0.04em;
	opacity: 0.65;
}
.avfr-shape-group { display: block; }
.avfr-shapes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}
.avfr-shape {
	/* Border 2px constante para evitar layout shift al pasar a .active (mismo grosor). */
	border: 2px solid var(--avfr-gray-light);
	background: var(--avfr-white) !important;
	border-radius: 16px;
	padding: 16px 10px 14px;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	font-family: inherit;
	color: var(--avfr-black) !important;
}
.avfr-shape:hover {
	border-color: var(--avfr-black);
	transform: translateY(-1px);
}
.avfr-shape.active {
	border-color: #FF6000 !important;
	background: #fff5f0 !important;
	color: var(--avfr-black) !important;
	box-shadow: 0 0 0 1px #FF6000;
}
.avfr-shape.active .avfr-shape-label { color: var(--avfr-black) !important; }
.avfr-shape svg {
	width: 44px;
	height: 58px;
	display: block;
}
.avfr-shape-img {
	width: auto;
	height: 140px;
	max-width: 100%;
	display: block;
	object-fit: contain;
	pointer-events: none;
	user-select: none;
}
.avfr-shape-label {
	font-weight: 600;
	font-size: 12px;
	color: inherit !important;
}

/* Indicador de zona (Zona 2 de 4: Cintura) — oculto en desktop, visible en mobile */
.avfr-zone-progress {
	display: none;
	font-size: 11px;
	font-weight: 800;
	color: var(--avfr-black) !important;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 10px 16px;
	background: var(--avfr-gray-bg) !important;
	border-radius: 999px;
	text-align: center;
}

/* ============================================================
 * TOGGLE SWITCH (expert mode — "Ya conozco mis medidas")
 * ============================================================ */
.avfr-toggle-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 0;
	border-top: 1px solid var(--avfr-gray-light);
	font-size: 13px;
	cursor: pointer;
	color: var(--avfr-black) !important;
}
.avfr-toggle-row input { display: none; }
.avfr-switch {
	width: 38px;
	height: 22px;
	border-radius: 999px;
	background: var(--avfr-gray-light);
	position: relative;
	transition: background 0.2s;
	flex-shrink: 0;
}
.avfr-switch::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--avfr-white);
	transition: transform 0.2s;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.avfr-toggle-row input:checked + .avfr-switch { background: var(--avfr-black); }
.avfr-toggle-row input:checked + .avfr-switch::after { transform: translateX(16px); }

.avfr-expert-fields {
	display: none;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.avfr-expert-fields.show { display: grid; }

/* ============================================================
 * FIT PREFERENCE SLIDER
 * Slider siempre en negro — no aplica el acento según la regla de marca.
 * ============================================================ */
.avfr-fitpref { padding: 8px 4px 4px; }
.avfr-fitpref-track-wrap {
	position: relative;
	height: 56px;
	padding: 0 6px;
}
.avfr-fitpref-tooltip {
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	background: var(--avfr-black);
	color: var(--avfr-white) !important;
	padding: 4px 10px;
	border-radius: 5px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.05em;
	white-space: nowrap;
	transition: left 0.2s;
}
.avfr-fitpref-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 4px solid transparent;
	border-top-color: var(--avfr-black);
}
.avfr-fitpref-track {
	position: absolute;
	top: 32px;
	left: 6px;
	right: 6px;
	height: 3px;
	background: #e5e5e5;
	border-radius: 2px;
}
.avfr-fitpref-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: var(--avfr-black);
	border-radius: 2px;
	transition: width 0.2s;
}
.avfr-fitpref-tick {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 2px;
	height: 8px;
	background: #cbd5e1;
	transition: background 0.2s;
}
.avfr-fitpref-tick.active { background: var(--avfr-black); }
.avfr-fitpref-input {
	position: absolute;
	top: 24px;
	left: 0;
	right: 0;
	width: 100%;
	height: 20px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
}
.avfr-fitpref-input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--avfr-white);
	border: 2.5px solid var(--avfr-black);
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.avfr-fitpref-input::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--avfr-white);
	border: 2.5px solid var(--avfr-black);
	cursor: pointer;
}
.avfr-fitpref-ends {
	display: flex;
	justify-content: space-between;
	font-size: 9px;
	color: #aaa !important;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-top: -2px;
	padding: 0 6px;
}
.avfr-fitpref-ends span { color: #aaa !important; }

/* ============================================================
 * FOOTER & BUTTONS
 * CTA principal siempre negro — el naranja NO va en los CTAs según marca.
 * ============================================================ */
.avfr-footer {
	margin-top: auto;
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}
.avfr-footer-result {
	border-top: 1px solid var(--avfr-gray-light);
	padding-top: 16px;
	margin-top: 8px;
}
.avfr-btn {
	/* CTA principal: naranja de marca, siempre visible (incluso disabled). */
	background: var(--avfr-orange) !important;
	color: var(--avfr-white) !important;
	border: none;
	border-radius: 999px;
	padding: 14px 32px;
	font-family: inherit;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.avfr-btn:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(255, 96, 0, 0.35);
}
.avfr-btn:disabled {
	/* Nunca se oculta ni se vuelve blanco/transparente — sólo se atenúa con opacity. */
	opacity: 0.4;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}
.avfr-btn.ghost {
	background: transparent !important;
	color: var(--avfr-black) !important;
	border: 1.5px solid var(--avfr-black);
}
.avfr-btn.ghost:hover:not(:disabled) {
	background: var(--avfr-black) !important;
	color: var(--avfr-white) !important;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* ============================================================
 * RESULT STEP
 * ============================================================ */
.avfr-size-display {
	text-align: center;
	padding: 8px 0 12px;
}
.avfr-size-label {
	font-size: 13px;
	color: var(--avfr-gray-text) !important;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.avfr-size-value {
	font-family: 'DIN Pro', 'Arial Narrow', sans-serif;
	font-size: 64px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--avfr-black) !important;
}
.avfr-size-summary {
	font-size: 12px;
	color: var(--avfr-gray-text) !important;
	margin-top: 10px;
	line-height: 1.5;
}
/* Indicador sutil de fuente: modelo (con ✓) vs estimación genérica. */
.avfr-size-source {
	margin-top: 8px;
	font-size: 11px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 600;
}
.avfr-size-source-model   { color: #FF6000 !important; }
.avfr-size-source-generic { color: #888 !important; opacity: 0.7; }
.avfr-size-source:empty   { display: none; }

/* Pills de talla (SxM/L/XL...). Naranja en .active — es el resultado final. */
.avfr-sizes-row {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
	margin: 12px 0 20px;
}
.avfr-size-pill {
	padding: 10px 18px;
	border: 1.5px solid var(--avfr-black);
	background: transparent !important;
	color: var(--avfr-black) !important;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	font-family: inherit;
	min-width: 46px;
	transition: all 0.15s;
}
.avfr-size-pill.active {
	background: var(--avfr-orange) !important;
	border-color: var(--avfr-orange);
	color: var(--avfr-white) !important;
}
.avfr-size-pill:hover:not(.active):not(.infeasible) {
	background: var(--avfr-gray-mid) !important;
}
.avfr-size-pill.infeasible {
	border-color: #fca5a5;
	color: #991b1b !important;
	background: #fef2f2 !important;
}

.avfr-feedback {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 10px 14px;
	margin-bottom: 16px;
}
.avfr-zone-label {
	font-weight: 700;
	font-size: 12px;
	display: flex;
	align-items: center;
	color: var(--avfr-black) !important;
}
.avfr-fit-bar-wrap {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.avfr-fit-bar-ends {
	display: flex;
	justify-content: space-between;
	font-size: 9px;
	color: #aaa !important;
	font-weight: 600;
}
.avfr-fit-bar-track {
	height: 3px;
	background: #e5e5e5;
	border-radius: 2px;
	position: relative;
}
.avfr-fit-bar-dot {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--avfr-white);
	border: 2.5px solid; /* color se asigna inline desde JS según estado */
	transition: left 0.3s;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.avfr-fit-bar-label {
	text-align: center;
	font-size: 10px;
	font-weight: 700;
	margin-top: 2px;
}

/* ============================================================
 * TAILORED WARNING (recomendación de servicio custom — paleta amber)
 * ============================================================ */
.avfr-tailored {
	padding: 12px 14px;
	border-radius: 10px;
	background: #fef3c7 !important;
	border: 1.5px solid #fbbf24;
	display: flex;
	gap: 10px;
	margin-bottom: 16px;
}
.avfr-tailored-icon {
	width: 28px;
	height: 28px;
	min-width: 28px;
	border-radius: 50%;
	background: #d97706;
	color: var(--avfr-white) !important;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}
.avfr-tailored-body { flex: 1; }
.avfr-tailored-title {
	font-weight: 800;
	font-size: 11px;
	color: #92400e !important;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 2px;
}
.avfr-tailored-msg {
	font-size: 11px;
	line-height: 1.4;
	color: #78350f !important;
}

/* ============================================================
 * TRIGGER BUTTON (botón "Guía de tallas" cuando lo renderizamos nosotros)
 * Igual que el resto de CTAs de la tienda: border negro, hover negro sólido.
 * ============================================================ */
.avfr-trigger {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	padding: 10px 18px;
	border: 1.5px solid currentColor;
	background: transparent;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	color: inherit;
	transition: all 0.2s ease;
	font-family: inherit;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.avfr-trigger:hover {
	background: var(--avfr-black);
	color: var(--avfr-white);
	border-color: var(--avfr-black);
}
.avfr-trigger svg { width: 16px; height: 16px; }

/* ============================================================
 * RESPONSIVE — stack modal en <=900px (tablet)
 * ============================================================ */
@media (max-width: 900px) {
	.avfr-modal {
		grid-template-columns: 1fr;
		grid-template-rows: auto minmax(0, 1fr);
		max-height: 96vh;
	}
	.avfr-visual {
		max-height: 200px;
		padding: 16px;
	}
	.avfr-visual img { max-height: 160px; }
	.avfr-brand { font-size: 14px; }
	.avfr-panel { padding: 20px 22px; }
	.avfr-title { font-size: 22px; }
	.avfr-size-value { font-size: 48px; }
}

/* ============================================================
 * RESPONSIVE — body shapes zona por zona en <=767px (mobile)
 * ============================================================ */
@media (max-width: 767px) {
	.avfr-overlay { padding: 0; }
	.avfr-modal {
		border-radius: 12px 12px 0 0;
		max-height: 100vh;
		height: 100%;
	}
	.avfr-panel { padding: 18px 20px; }
	.avfr-nav { margin-bottom: 16px; }

	/* Zone-by-zone: sólo mostrar la zona actual */
	.avfr-zone-progress { display: block; }
	.avfr-step[data-step="2"] > .avfr-subtitle { display: none; }
	.avfr-step[data-step="2"] .avfr-shape-group { display: none; }
	.avfr-step[data-step="2"][data-current-zone="chest"] .avfr-shape-group[data-zone="chest"],
	.avfr-step[data-step="2"][data-current-zone="waist"] .avfr-shape-group[data-zone="waist"] {
		display: block;
	}

	/* Botones más grandes / touch-friendly */
	.avfr-btn { padding: 14px 26px; font-size: 12px; }
	.avfr-shape { padding: 14px 6px 12px; }
	.avfr-shape svg { width: 48px; height: 64px; }
	.avfr-shape-img { height: 120px; }

	/* Pills de talla: hitbox mayor */
	.avfr-size-pill { padding: 12px 18px; min-width: 54px; }
}
