.productos-tablas-por-categoria {
	display: grid;
	gap: 32px;
}

.productos-categoria-tabla h2 {
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 1.25;
}

.productos-tabla-scroll {
	width: 100%;
	overflow-x: auto;
	border: 1px solid #d8dee4;
	border-radius: 8px;
}

.productos-tabla {
	width: 100%;
	min-width: 1080px;
	border-collapse: collapse;
	background: #ffffff;
	font-size: 14px;
}

.productos-tabla th,
.productos-tabla td {
	padding: 12px 14px;
	border-bottom: 1px solid #e6e8eb;
	text-align: left;
	vertical-align: top;
}

.productos-tabla th {
	background: #1f2937;
	color: #ffffff;
	font-weight: 700;
}

.productos-tabla tr:nth-child(even) td {
	background: #f7f9fb;
}

.productos-tabla tr:hover td {
	background: #eef6ff;
}

.productos-tabla tr.is-distinto-precio td {
	background: #fff7d6;
}

.productos-tabla tr.is-distinto-precio:hover td {
	background: #ffefad;
}

.productos-tabla a {
	color: #0b63ce;
	text-decoration: underline;
	word-break: break-all;
}

.productos-tabla a:visited {
	color: #8a2be2;
}

.producto-id {
	width: 80px;
	white-space: nowrap;
	font-weight: 700;
	color: #374151;
}

.producto-precio-base {
	white-space: nowrap;
	font-weight: 700;
}

.producto-distinto-precio {
	width: 150px;
	white-space: nowrap;
}

.producto-distinto-precio-control {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 24px;
	color: #374151;
	font-weight: 700;
	cursor: pointer;
}

.producto-distinto-precio-control input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: #f4bf00;
}

@media (max-width: 768px) {
	.productos-categoria-tabla h2 {
		font-size: 20px;
	}

	.productos-tabla {
		min-width: 980px;
		font-size: 13px;
	}

	.productos-tabla th,
	.productos-tabla td {
		padding: 10px 12px;
	}
}
