/* Tecactiva - Bivi | Size Chart Mobile */

/* En pantallas angostas, la tabla de tallas pasa de columnas (que
   obligaban a deslizar horizontalmente) a una tarjeta por talla, con
   cada medida en su propia fila y su etiqueta al lado. */
@media (max-width: 480px) {
	table#size-chart,
	table#size-chart thead,
	table#size-chart tbody,
	table#size-chart tr,
	table#size-chart th,
	table#size-chart td {
		display: block;
		width: 100% !important;
	}

	table#size-chart tr:first-child {
		display: none;
	}

	table#size-chart tr {
		margin-bottom: 12px;
		border: 1px solid #e0e0e0;
		border-radius: 6px;
		overflow: hidden;
	}

	table#size-chart td {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 8px 12px;
		border-bottom: 1px solid #f0f0f0;
		text-align: right;
	}

	table#size-chart td:last-child {
		border-bottom: none;
	}

	table#size-chart td::before {
		content: attr(data-label);
		font-weight: 700;
		text-align: left;
	}

	/* La talla queda como "encabezado" visual de cada tarjeta. */
	table#size-chart td:first-child {
		background: #000;
		color: #fff;
		font-weight: 700;
	}

	table#size-chart td:first-child::before {
		color: #fff;
	}
}