/* Estilos de Boutique para Calçados */
.conv-gender-selector {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 25px;
	border-bottom: 1px solid var(--conv-border);
	padding-bottom: 10px;
}

.conv-gender-btn {
	cursor: pointer;
	font-size: 0.8rem;
	font-weight: 800;
	color: var(--conv-muted);
	letter-spacing: 1.5px;
	transition: var(--conv-transition);
	position: relative;
}

.conv-gender-btn.active {
	color: var(--conv-primary);
}

.conv-gender-btn.active::after {
	content: "";
	position: absolute;
	bottom: -11px;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--conv-primary);
	border-radius: 3px 3px 0 0;
}

.conv-shoe-display {
	background: #fcfcfc;
	border: 1px solid var(--conv-border);
	border-radius: var(--conv-radius);
	padding: 25px;
	margin-top: 20px;
}

.conv-shoe-val {
	font-size: 2.2rem;
	font-weight: 900;
	color: var(--conv-secondary);
	display: block;
	line-height: 1;
}

.conv-shoe-label {
	font-size: 0.65rem;
	color: var(--conv-primary);
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 8px;
	display: block;
}

.conv-metric-footer {
	margin-top: 25px;
	padding: 15px;
	background: #fffafa;
	border-radius: 8px;
	font-style: italic;
	color: var(--conv-muted);
	font-size: 0.9rem;
	text-align: center;
	border: 1px dashed var(--conv-border);
}