.insumos-product-list {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.insumos-product-card {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	column-gap: 24px;
	min-height: 124px;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
	overflow: hidden;
}

.insumos-product-card:hover {
	transform: translateY(-1px);
	border-color: rgba(0, 0, 0, 0.14);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.insumos-product-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 112px;
	height: 112px;
	background: #f7f7f7;
	border-radius: 12px;
	overflow: hidden;
	flex: 0 0 auto;
	text-decoration: none !important;
}

.insumos-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	padding: 8px;
	transition: transform .18s ease;
}

.insumos-product-card:hover .insumos-product-card__image img {
	transform: scale(1.025);
}

.insumos-product-card__content {
	min-width: 0;
}

.insumos-product-card__title {
	margin: 0;
	font-size: clamp(16px, 1.35vw, 20px);
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: .01em;
}

.insumos-product-card__title a {
	color: #202124;
	text-decoration: none;
}

.insumos-product-card__title a:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.insumos-product-card__price {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.3;
	font-weight: 600;
	color: #444;
}

.insumos-product-card__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	min-width: 150px;
}

.insumos-product-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	min-width: 136px;
	padding: 12px 24px;
	border-radius: 14px;
	background: #000;
	color: #71f4ef;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: none !important;
	white-space: nowrap;
	transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.insumos-product-card__button:hover,
.insumos-product-card__button:focus {
	opacity: .92;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.insumos-product-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 999px;
	background: #8e8822;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.02em;
	text-align: center;
	transform: rotate(-4deg);
}

.insumos-product-list--empty {
	padding: 18px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
}

@media (max-width: 767px) {
	.insumos-product-card {
		grid-template-columns: auto minmax(0, 1fr);
		grid-template-areas:
			"image content"
			"image actions";
		align-items: center;
		row-gap: 10px;
		min-height: 112px;
		column-gap: 14px;
	}

	.insumos-product-card__image {
		grid-area: image;
		width: 86px;
		height: 86px;
	}

	.insumos-product-card__content {
		grid-area: content;
	}

	.insumos-product-card__actions {
		grid-area: actions;
		justify-content: flex-start;
		min-width: 0;
		gap: 10px;
	}

	.insumos-product-card__title {
		font-size: 15px;
		line-height: 1.25;
	}

	.insumos-product-card__button {
		min-width: 118px;
		min-height: 38px;
		padding: 10px 16px;
		border-radius: 12px;
		font-size: 12px;
	}

	.insumos-product-card__badge {
		width: auto;
		height: auto;
		padding: 7px 9px;
		border-radius: 999px;
		font-size: 11px;
		transform: none;
	}
}

@media (max-width: 420px) {
	.insumos-product-card {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.insumos-product-card__image {
		width: 74px;
		height: 74px;
	}

	.insumos-product-card__actions {
		flex-wrap: wrap;
	}
}

/* Tabla técnica para transistores */
.insumos-transistor-table-widget {
	width: 100%;
	margin: 0 auto;
}

.insumos-transistor-result-count {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.4;
	font-weight: 500;
	color: #30343b;
}

.insumos-transistor-tools {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin: 0 0 10px;
}

.insumos-transistor-reset-filters {
	appearance: none;
	border: 0;
	background: transparent;
	padding: 4px 0;
	font-size: 13px;
	line-height: 1.2;
	font-weight: 500;
	color: #666;
	cursor: pointer;
}

.insumos-transistor-reset-filters:hover,
.insumos-transistor-reset-filters:focus {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.insumos-transistor-filter-count {
	font-size: 12px;
	line-height: 1.2;
	color: #666;
}

.insumos-transistor-table-shell {
	width: 100%;
	overflow-x: auto;
	background: #fff;
	-webkit-overflow-scrolling: touch;
}

.insumos-transistor-table {
	width: 100%;
	min-width: 900px;
	border-collapse: collapse;
	border-spacing: 0;
	background: #fff;
}

.insumos-transistor-table th,
.insumos-transistor-table td {
	border: 1px solid #d9d9d9;
	padding: 7px 10px;
	vertical-align: middle;
	text-align: left;
}

.insumos-transistor-table thead th {
	background: #fffda3;
	color: #111;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
}

.insumos-transistor-table tbody td {
	font-size: 13px;
	line-height: 1.25;
	font-weight: 400;
	color: #1f2933;
}

.insumos-transistor-table tbody tr {
	background: #fff;
	transition: background-color .14s ease;
}

.insumos-transistor-table tbody tr:nth-child(even) {
	background: #f4f4f4;
}

.insumos-transistor-table tbody tr:hover {
	background: #fff36c;
}

.insumos-transistor-col-model,
.insumos-transistor-cell-model {
	min-width: 170px;
}

.insumos-transistor-col-thumb,
.insumos-transistor-cell-thumb {
	width: 74px;
	min-width: 74px;
	text-align: center;
}

.insumos-transistor-cell-thumb img {
	width: 52px;
	height: 52px;
	object-fit: contain;
	display: inline-block;
	vertical-align: middle;
}

.insumos-transistor-col-number,
.insumos-transistor-number {
	text-align: right;
	white-space: nowrap;
}

.insumos-transistor-col-action,
.insumos-transistor-cell-action {
	width: 120px;
	min-width: 120px;
	text-align: center;
}

.insumos-transistor-model-link {
	color: #2378a9;
	font-weight: 600;
	text-decoration: none;
}

.insumos-transistor-model-link:hover,
.insumos-transistor-model-link:focus {
	color: #005c8f;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.insumos-transistor-filter {
	width: 100%;
	min-height: 32px;
	padding: 6px 8px;
	border: 1px solid #e5e5e5;
	border-radius: 0;
	background: #fff;
	color: #444;
	font-size: 12px;
	line-height: 1.2;
	box-shadow: none;
	outline: none;
}

.insumos-transistor-filter:focus {
	border-color: #2378a9;
	box-shadow: 0 0 0 1px rgba(35, 120, 169, .12);
}

.insumos-transistor-number-filters {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4px;
}

.insumos-transistor-action-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 12px;
	background: #000;
	color: #71f4ef;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background-color .16s ease, color .16s ease, transform .16s ease;
}

.insumos-transistor-action-button:hover,
.insumos-transistor-action-button:focus {
	background: #111;
	color: #fff;
	transform: translateY(-1px);
}

.insumos-transistor-empty {
	padding: 14px 16px;
	border: 1px solid rgba(0, 0, 0, .08);
	background: #fff;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.4;
}

.insumos-transistor-empty--filtered {
	margin-top: 10px;
}

.insumos-transistor-pagination {
	margin: 16px 0 0;
}

.insumos-transistor-pagination ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.insumos-transistor-pagination li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.insumos-transistor-pagination a,
.insumos-transistor-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	min-height: 34px;
	padding: 7px 10px;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 8px;
	background: #fff;
	color: #2378a9;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none !important;
}

.insumos-transistor-pagination .current {
	background: #2378a9;
	color: #fff;
	border-color: #2378a9;
}

.insumos-transistor-sticky-model-yes .insumos-transistor-col-model,
.insumos-transistor-sticky-model-yes .insumos-transistor-cell-model {
	position: sticky;
	left: 0;
	z-index: 2;
	background: inherit;
}

.insumos-transistor-sticky-model-yes .insumos-transistor-table thead .insumos-transistor-col-model {
	z-index: 4;
}

@media (max-width: 767px) {
	.insumos-transistor-result-count {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.insumos-transistor-tools {
		justify-content: space-between;
		align-items: center;
		margin-bottom: 8px;
	}

	.insumos-transistor-table {
		min-width: 760px;
	}

	.insumos-transistor-table th,
	.insumos-transistor-table td {
		padding: 6px 7px;
	}

	.insumos-transistor-table thead th {
		font-size: 11px;
	}

	.insumos-transistor-table tbody td {
		font-size: 12px;
	}

	.insumos-transistor-filter {
		min-height: 30px;
		font-size: 11px;
		padding: 5px 6px;
	}

	.insumos-transistor-col-model,
	.insumos-transistor-cell-model {
		min-width: 140px;
	}
}

/* Selección múltiple y agregado masivo al carrito */
.insumos-transistor-cartbar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px 12px;
	margin: 0 0 12px;
	padding: 10px 12px;
	background: #f8fafc;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 12px;
}

.insumos-transistor-bulk-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border: 0;
	border-radius: 12px;
	background: #000;
	color: #71f4ef;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-decoration: none !important;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .16s ease, color .16s ease, transform .16s ease, opacity .16s ease;
}

.insumos-transistor-bulk-button:hover,
.insumos-transistor-bulk-button:focus {
	background: #111;
	color: #fff;
	transform: translateY(-1px);
}

.insumos-transistor-bulk-button:disabled,
.insumos-transistor-bulk-button.is-loading {
	cursor: not-allowed;
	opacity: .45;
	transform: none;
}

.insumos-transistor-selected-count,
.insumos-transistor-cart-status,
.insumos-transistor-view-cart {
	font-size: 12px;
	line-height: 1.25;
	font-weight: 600;
}

.insumos-transistor-selected-count {
	color: #4b5563;
}

.insumos-transistor-cart-status {
	color: #166534;
}

.insumos-transistor-cart-status.is-error {
	color: #b91c1c;
}

.insumos-transistor-view-cart {
	color: #2378a9;
	text-decoration: none !important;
}

.insumos-transistor-view-cart:hover,
.insumos-transistor-view-cart:focus {
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

.insumos-transistor-col-select,
.insumos-transistor-cell-select {
	width: 44px;
	min-width: 44px;
	text-align: center !important;
}

.insumos-transistor-col-qty,
.insumos-transistor-cell-qty {
	width: 122px;
	min-width: 122px;
	text-align: center !important;
}

.insumos-transistor-select-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin: 0;
	font: inherit;
	cursor: pointer;
}

.insumos-transistor-cart-checkbox,
.insumos-transistor-select-all input[type="checkbox"] {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: #2378a9;
	cursor: pointer;
}

.insumos-transistor-cart-checkbox:disabled {
	cursor: not-allowed;
	opacity: .35;
}

.insumos-transistor-qty-control {
	display: inline-grid;
	grid-template-columns: 30px 46px 30px;
	align-items: center;
	justify-content: center;
	gap: 4px;
	white-space: nowrap;
}

.insumos-transistor-qty-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 1px solid #d8dee5;
	border-radius: 6px;
	background: #f8fafc;
	color: #1f2933;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	box-shadow: none;
	transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.insumos-transistor-qty-button:hover,
.insumos-transistor-qty-button:focus {
	border-color: #2378a9;
	background: #2378a9;
	color: #fff;
	outline: none;
}

.insumos-transistor-qty-button:active {
	transform: translateY(1px);
}

.insumos-transistor-qty-button:disabled {
	cursor: not-allowed;
	opacity: .45;
	transform: none;
}

.insumos-transistor-cart-qty {
	width: 46px;
	min-height: 30px;
	padding: 4px 5px;
	border: 1px solid #d8dee5;
	border-radius: 6px;
	background: #fff;
	color: #1f2933;
	font-size: 12px;
	line-height: 1;
	text-align: center;
	box-shadow: none;
}

.insumos-transistor-cart-qty::-webkit-outer-spin-button,
.insumos-transistor-cart-qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.insumos-transistor-cart-qty[type="number"] {
	-moz-appearance: textfield;
}

.insumos-transistor-cart-qty:focus {
	border-color: #2378a9;
	outline: none;
	box-shadow: 0 0 0 1px rgba(35, 120, 169, .12);
}

.insumos-transistor-cart-qty:disabled {
	background: #f1f5f9;
	opacity: .5;
}

@media (max-width: 767px) {
	.insumos-transistor-cartbar {
		justify-content: stretch;
		align-items: stretch;
		gap: 8px;
		padding: 9px;
	}

	.insumos-transistor-bulk-button {
		width: 100%;
		min-height: 38px;
	}

	.insumos-transistor-selected-count,
	.insumos-transistor-cart-status,
	.insumos-transistor-view-cart {
		font-size: 11px;
	}

	.insumos-transistor-col-select,
	.insumos-transistor-cell-select {
		width: 38px;
		min-width: 38px;
	}

	.insumos-transistor-col-qty,
	.insumos-transistor-cell-qty {
		width: 112px;
		min-width: 112px;
	}

	.insumos-transistor-qty-control {
		grid-template-columns: 28px 42px 28px;
		gap: 3px;
	}

	.insumos-transistor-qty-button {
		width: 28px;
		height: 28px;
		font-size: 14px;
	}

	.insumos-transistor-cart-qty {
		width: 42px;
		min-height: 28px;
		font-size: 11px;
	}
}
