/*
 * VitaComoda Cards — Pagina Valutazione
 *
 * Palette coerente con la home comics:
 *  - rosso Poké Ball #ee1515
 *  - nero strutturale #222224
 *  - viola accento (vetrina venditori) #a855f7
 *  - sfondi card #ffffff su grey leggero
 */

.vcc-search-wrap {
	max-width: 980px;
	margin: 0 auto;
	padding: 32px 16px 64px;
	font-family: 'Helvetica Neue', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	color: #111827;
}

.vcc-search-header {
	text-align: center;
	margin-bottom: 28px;
}

.vcc-search-title {
	font-size: 2.4rem;
	font-weight: 900;
	margin: 0 0 8px;
	letter-spacing: -1px;
	background: linear-gradient(90deg, #ee1515 0%, #a855f7 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.vcc-search-lead {
	color: #4b5563;
	margin: 0;
	font-size: 1rem;
}

/* ---------- search bar ---------- */
.vcc-search-bar {
	position: relative;
	display: flex;
	align-items: center;
	background: #ffffff;
	border: 3px solid #222224;
	border-radius: 999px;
	box-shadow: 0 10px 30px rgba(34, 34, 36, 0.15);
	padding: 8px 16px 8px 14px;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.vcc-search-bar:focus-within {
	border-color: #a855f7;
	box-shadow: 0 10px 30px rgba(168, 85, 247, .25);
}

.vcc-search-icon {
	width: 22px;
	height: 22px;
	color: #6b7280;
	flex: 0 0 22px;
}

.vcc-search-input {
	flex: 1;
	border: 0;
	outline: none;
	font-size: 1.05rem;
	padding: 12px 12px;
	background: transparent;
	color: inherit;
	min-width: 0;
}

.vcc-search-input::placeholder {
	color: #9ca3af;
}

.vcc-search-clear {
	border: 0;
	background: #f3f4f6;
	color: #374151;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-size: 1.2rem;
	cursor: pointer;
	line-height: 1;
}

.vcc-search-clear:hover {
	background: #e5e7eb;
}

/* ---------- risultati ---------- */
.vcc-search-results {
	list-style: none;
	margin: 14px 0 0;
	padding: 0;
	background: #ffffff;
	border: 2px solid #f1f5f9;
	border-radius: 22px;
	overflow-x: hidden;
	overflow-y: auto;
	max-height: min( 70vh, 520px );
	box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.vcc-result {
	display: grid;
	grid-template-columns: 56px 1fr auto;
	align-items: center;
	gap: 14px;
	padding: 12px 16px;
	cursor: pointer;
	border-bottom: 1px solid #f1f5f9;
	transition: background-color .15s ease;
}

.vcc-result:last-child {
	border-bottom: 0;
}

.vcc-result:hover,
.vcc-result:focus {
	background: #faf5ff;
	outline: none;
}

.vcc-result-thumb {
	width: 56px;
	height: 56px;
	border-radius: 8px;
	background: #f9fafb;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vcc-result-thumb img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}

.vcc-thumb-placeholder {
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ee1515 0 50%, #ffffff 50% 100%);
	border: 2px solid #222224;
}

.vcc-result-name {
	font-weight: 700;
	color: #111827;
	font-size: 1.05rem;
}

.vcc-badge {
	display: inline-block;
	vertical-align: middle;
	margin-left: 6px;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.4;
	white-space: nowrap;
}
.vcc-badge--banned {
	background: #111827;
	color: #fbbf24;
	border: 1px solid #f59e0b;
}
.vcc-detail-name .vcc-badge {
	margin-left: 8px;
}

.vcc-result-meta {
	color: #6b7280;
	font-size: .85rem;
	margin-top: 2px;
}

.vcc-result-prices {
	font-weight: 700;
	color: #111827;
	font-size: .95rem;
	white-space: nowrap;
}

/* ---------- status ---------- */
.vcc-search-status {
	margin-top: 12px;
	color: #6b7280;
	font-size: .9rem;
	text-align: center;
	min-height: 1.2em;
}

.vcc-search-status.is-error {
	color: #b91c1c;
}

/* ---------- card detail ---------- */
.vcc-card-detail {
	margin-top: 32px;
	background: #ffffff;
	border: 2px solid #f1f5f9;
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.vcc-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 280px) 1fr;
	gap: 28px;
}

.vcc-detail-media {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.vcc-detail-image {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.vcc-detail-body {
	min-width: 0;
}

.vcc-detail-name {
	font-size: 1.8rem;
	font-weight: 900;
	margin: 0 0 16px;
	color: #111827;
	letter-spacing: -.5px;
}

.vcc-detail-prices {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 20px;
}

.vcc-price {
	border-radius: 14px;
	padding: 14px 16px;
	color: #ffffff;
}

.vcc-price-label {
	display: block;
	font-size: .8rem;
	opacity: .9;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 4px;
}

.vcc-price strong {
	font-size: 1.6rem;
	font-weight: 900;
}

.vcc-price-it {
	background: linear-gradient(135deg, #ee1515, #8b0000);
}

.vcc-price-us {
	background: linear-gradient(135deg, #222224, #1e293b);
}

.vcc-detail-info {
	margin: 0 0 20px;
	display: grid;
	gap: 6px;
}

.vcc-detail-row {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px dashed #e5e7eb;
}

.vcc-detail-row dt {
	color: #6b7280;
	font-weight: 600;
	font-size: .9rem;
	margin: 0;
}

.vcc-detail-row dd {
	margin: 0;
	color: #111827;
	font-weight: 600;
}

.vcc-detail-variants {
	margin-top: 12px;
	overflow-x: auto;
}

.vcc-detail-variants h4 {
	font-size: 1rem;
	margin: 0 0 8px;
	color: #374151;
}

.vcc-detail-variants table {
	width: 100%;
	border-collapse: collapse;
	font-size: .9rem;
}

.vcc-detail-variants th,
.vcc-detail-variants td {
	padding: 8px 10px;
	text-align: left;
	border-bottom: 1px solid #f1f5f9;
}

.vcc-detail-variants th {
	background: #faf5ff;
	color: #581c87;
	font-weight: 700;
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .5px;
}

.vcc-detail-variants th.vcc-th-filter {
	vertical-align: top;
	min-width: 120px;
}

.vcc-detail-variants .vcc-th-label {
	display: block;
	margin-bottom: 6px;
	line-height: 1.2;
}

.vcc-detail-variants .vcc-variant-filter {
	display: block;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	margin: 0;
	padding: 8px 28px 8px 10px;
	border: 1px solid #d8b4fe;
	border-radius: 8px;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23581c87' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E") no-repeat right 10px center;
	color: #111827;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: none;
	letter-spacing: 0;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.vcc-detail-variants .vcc-variant-filter:focus {
	outline: 2px solid #a855f7;
	outline-offset: 1px;
	border-color: #a855f7;
}

.vcc-variants-empty {
	margin: 10px 0 0;
	padding: 12px 14px;
	border-radius: 10px;
	background: #fef3c7;
	color: #92400e;
	font-size: .9rem;
	font-weight: 600;
	text-align: center;
}

.vcc-detail-variants .vcc-num {
	text-align: right;
	font-weight: 700;
}

.vcc-detail-loading,
.vcc-detail-error {
	text-align: center;
	color: #6b7280;
	margin: 0;
	padding: 20px;
}

.vcc-detail-error {
	color: #b91c1c;
}

/* ---------- import button per riga variante (WCFM) ---------- */
.vcc-detail-variants th.vcc-action,
.vcc-detail-variants td.vcc-action {
	text-align: right;
	width: 140px;
}

.vcc-row-import {
	border: 0;
	border-radius: 999px;
	padding: 6px 12px;
	font-weight: 800;
	font-size: .78rem;
	letter-spacing: .3px;
	cursor: pointer;
	color: #fff;
	background: linear-gradient(90deg, #ee1515 0%, #a855f7 100%);
	white-space: nowrap;
	box-shadow: 0 4px 12px rgba(168, 85, 247, .25);
	transition: transform .15s ease, box-shadow .15s ease;
}

.vcc-row-import:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(168, 85, 247, .35);
}

.vcc-row-import:disabled {
	opacity: .55;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* ---------- modal import ---------- */
body.vcc-modal-open {
	overflow: hidden;
}

.vcc-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.vcc-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 24, 39, .65);
	backdrop-filter: blur(2px);
}

.vcc-modal-dialog {
	position: relative;
	background: #ffffff;
	border-radius: 20px;
	border: 3px solid #222224;
	box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
	max-width: 520px;
	width: 100%;
	padding: 28px 26px 22px;
	font-family: inherit;
	color: #111827;
}

.vcc-modal-x {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 0;
	background: #f3f4f6;
	color: #374151;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
}

.vcc-modal-x:hover {
	background: #e5e7eb;
}

.vcc-modal-title {
	margin: 0 0 8px;
	font-size: 1.2rem;
	font-weight: 900;
	color: #581c87;
}

.vcc-modal-intro {
	margin: 0 0 16px;
	font-size: .92rem;
	color: #4b5563;
	line-height: 1.45;
}

.vcc-modal-meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 0 0 16px;
	padding: 12px 14px;
	border-radius: 12px;
	background: #faf5ff;
	border: 1px solid #e9d5ff;
}

.vcc-modal-meta div {
	margin: 0;
}

.vcc-modal-meta dt {
	font-size: .72rem;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #6b7280;
	font-weight: 700;
	margin: 0 0 2px;
}

.vcc-modal-meta dd {
	margin: 0;
	color: #111827;
	font-weight: 700;
	font-size: .95rem;
}

.vcc-modal-field {
	margin-bottom: 16px;
}

.vcc-modal-label {
	display: block;
	font-size: .82rem;
	font-weight: 700;
	color: #374151;
	margin-bottom: 6px;
}

.vcc-modal-select {
	width: 100%;
	border: 2px solid #222224;
	border-radius: 10px;
	padding: 10px 12px;
	font-size: .95rem;
	background: #fff;
	color: inherit;
}

.vcc-modal-select:focus {
	outline: none;
	border-color: #a855f7;
	box-shadow: 0 0 0 4px rgba(168, 85, 247, .15);
}

.vcc-modal-hint {
	display: block;
	color: #6b7280;
	margin-top: 6px;
	font-size: .82rem;
	line-height: 1.4;
}

/* Prezzo di vendita */
.vcc-modal-field-price {
	margin-bottom: 18px;
}

.vcc-modal-price-wrap {
	display: flex;
	align-items: stretch;
	border: 2px solid #222224;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}

.vcc-modal-price-currency {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	padding: 0 12px;
	font-weight: 900;
	font-size: 1.05rem;
	color: #ee1515;
	background: linear-gradient(180deg, #fff5f5 0%, #ffffff 100%);
	border-right: 2px solid #222224;
}

.vcc-modal-price-input {
	flex: 1;
	border: 0;
	padding: 14px 12px;
	font-size: 1.1rem;
	font-weight: 800;
	color: #111827;
	min-height: 48px;
	background: transparent;
}

.vcc-modal-price-input:focus {
	outline: none;
	box-shadow: inset 0 0 0 2px rgba(168, 85, 247, .25);
}

.vcc-modal-price-input::placeholder {
	color: #9ca3af;
	font-weight: 600;
}

/* Foto prodotto */
.vcc-modal-photo {
	margin-bottom: 18px;
	padding: 14px;
	border-radius: 14px;
	background: #faf5ff;
	border: 1px solid #e9d5ff;
}

.vcc-modal-photo-title {
	margin: 0 0 12px;
	font-size: .95rem;
	font-weight: 900;
	color: #581c87;
}

.vcc-modal-photo-catalog {
	display: grid;
	gap: 12px;
	transition: opacity .2s ease;
}

.vcc-modal-photo-catalog.is-dimmed {
	opacity: .45;
}

.vcc-modal-photo-preview {
	width: 100%;
	max-height: 180px;
	object-fit: contain;
	border-radius: 12px;
	border: 2px solid #e5e7eb;
	background: #fff;
}

.vcc-modal-photo-placeholder {
	padding: 28px 16px;
	text-align: center;
	border-radius: 12px;
	border: 2px dashed #d8b4fe;
	color: #6b7280;
	background: #fff;
}

.vcc-modal-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	user-select: none;
	min-height: 44px;
}

.vcc-modal-toggle input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.vcc-modal-toggle-ui {
	width: 48px;
	height: 28px;
	border-radius: 999px;
	background: #d1d5db;
	position: relative;
	flex-shrink: 0;
	transition: background .2s ease;
}

.vcc-modal-toggle-ui::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
	transition: transform .2s ease;
}

.vcc-modal-toggle input:checked + .vcc-modal-toggle-ui {
	background: linear-gradient(90deg, #ee1515 0%, #a855f7 100%);
}

.vcc-modal-toggle input:checked + .vcc-modal-toggle-ui::after {
	transform: translateX(20px);
}

.vcc-modal-toggle-label {
	font-size: .92rem;
	font-weight: 800;
	color: #374151;
}

.vcc-modal-photo-upload {
	display: grid;
	gap: 10px;
}

.vcc-modal-upload-mobile,
.vcc-modal-upload-desktop {
	display: none;
}

@media (max-width: 1024px) {
	.vcc-modal-upload-mobile { display: block; }
}

@media (min-width: 1025px) {
	.vcc-modal-upload-desktop { display: block; }
}

.vcc-modal-upload-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 2px solid #581c87;
	background: #fff;
	color: #581c87;
	font-weight: 800;
	font-size: .95rem;
	cursor: pointer;
	text-align: center;
	transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}

.vcc-modal-upload-btn:hover {
	background: #f3e8ff;
	box-shadow: 0 6px 16px rgba(168, 85, 247, .18);
}

.vcc-modal-upload-btn input {
	position: absolute;
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	z-index: -1;
}

.vcc-modal-upload-preview img {
	width: 100%;
	max-height: 160px;
	object-fit: contain;
	border-radius: 12px;
	border: 2px solid #e5e7eb;
	background: #fff;
}

.vcc-modal-feedback {
	margin-bottom: 14px;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: .9rem;
}

.vcc-modal-feedback.is-success {
	background: #ecfdf5;
	color: #065f46;
}

.vcc-modal-feedback.is-error {
	background: #fef2f2;
	color: #991b1b;
}

.vcc-modal-link {
	color: inherit;
	font-weight: 800;
	margin-left: 6px;
	text-decoration: underline;
}

.vcc-modal-actions {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.vcc-modal-cancel,
.vcc-modal-confirm {
	border: 0;
	border-radius: 999px;
	padding: 11px 20px;
	font-weight: 800;
	font-size: .9rem;
	cursor: pointer;
}

.vcc-modal-cancel {
	background: #f3f4f6;
	color: #111827;
}

.vcc-modal-cancel:hover {
	background: #e5e7eb;
}

.vcc-modal-confirm {
	color: #fff;
	background: linear-gradient(90deg, #ee1515 0%, #a855f7 100%);
	box-shadow: 0 8px 18px rgba(168, 85, 247, .28);
}

.vcc-modal-confirm:disabled {
	opacity: .6;
	cursor: not-allowed;
	box-shadow: none;
}

.vcc-result.is-active,
.vcc-result.is-active:hover,
.vcc-result.is-active:focus {
	background: #f3e8ff;
	outline: 2px solid #a855f7;
	outline-offset: -2px;
}

/* ---------- responsive ---------- */
@media ( max-width: 720px ) {
	.vcc-search-title {
		font-size: 1.8rem;
	}
	.vcc-detail-grid {
		grid-template-columns: 1fr;
	}
	.vcc-detail-prices {
		grid-template-columns: 1fr;
	}
	.vcc-result {
		grid-template-columns: 48px 1fr;
		gap: 10px;
	}
	.vcc-result-prices {
		grid-column: 1 / -1;
		font-size: .9rem;
	}
	.vcc-modal-meta {
		grid-template-columns: 1fr;
	}
	.vcc-modal-dialog {
		max-height: 92vh;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		padding: 24px 18px 18px;
	}
	.vcc-modal-actions {
		flex-direction: column-reverse;
	}
	.vcc-modal-cancel,
	.vcc-modal-confirm {
		width: 100%;
	}
	.vcc-detail-variants th.vcc-action,
	.vcc-detail-variants td.vcc-action {
		width: auto;
	}
}

/* ---------- mobile full-bleed (dettaglio carta a tutto schermo) ---------- */
@media ( max-width: 768px ) {
	.vcc-search-wrap {
		max-width: none;
		width: 100%;
		padding: 20px 12px 48px;
		box-sizing: border-box;
	}

	.vcc-search-bar {
		border-radius: 18px;
	}

	.vcc-search-results {
		border-radius: 16px;
		margin-top: 12px;
	}

	.vcc-card-detail {
		margin-top: 20px;
		width: 100vw;
		max-width: 100vw;
		margin-left: calc( 50% - 50vw );
		margin-right: calc( 50% - 50vw );
		border-radius: 0;
		border-left: 0;
		border-right: 0;
		padding: 20px 16px 28px;
		box-sizing: border-box;
		box-shadow: 0 8px 24px rgba( 0, 0, 0, .1 );
	}

	.vcc-detail-grid {
		gap: 20px;
	}

	.vcc-detail-media {
		width: 100%;
	}

	.vcc-detail-image {
		width: min( 100%, 320px );
		display: block;
		margin: 0 auto;
	}

	.vcc-detail-name {
		font-size: 1.45rem;
		text-align: center;
	}

	.vcc-detail-prices {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.vcc-price strong {
		font-size: 1.35rem;
	}

	.vcc-detail-row {
		grid-template-columns: 110px 1fr;
		gap: 8px;
	}

	.vcc-detail-variants {
		margin-left: 0;
		margin-right: 0;
		overflow-x: visible;
	}

	.vcc-detail-variants h4 {
		font-size: .88rem;
		margin-bottom: 6px;
	}

	.vcc-detail-variants table {
		table-layout: fixed;
		width: 100%;
		font-size: .7rem;
		min-width: 0;
	}

	.vcc-detail-variants th,
	.vcc-detail-variants td {
		padding: 5px 3px;
		white-space: normal;
		word-break: break-word;
		line-height: 1.2;
		vertical-align: top;
	}

	.vcc-detail-variants th {
		font-size: .58rem;
		letter-spacing: 0;
	}

	.vcc-detail-variants th.vcc-th-filter {
		min-width: 0;
		width: 24%;
	}

	.vcc-detail-variants .vcc-th-label {
		font-size: .52rem;
		margin-bottom: 3px;
		line-height: 1.1;
	}

	.vcc-detail-variants .vcc-variant-filter {
		padding: 5px 16px 5px 5px;
		font-size: 11px;
		border-radius: 6px;
		background-position: right 5px center;
		background-size: 8px 5px;
	}

	.vcc-detail-variants th.vcc-num,
	.vcc-detail-variants td.vcc-num {
		width: 13%;
		font-size: calc( .72rem * 0.85 );
		padding-left: 2px;
		padding-right: 2px;
	}

	.vcc-detail-variants th.vcc-action,
	.vcc-detail-variants td.vcc-action {
		width: 21%;
		padding-left: 2px;
		padding-right: 2px;
	}

	.vcc-detail-variants .vcc-row-import {
		padding: 5px 5px;
		font-size: .56rem;
		letter-spacing: 0;
		line-height: 1.15;
		white-space: normal;
		min-height: 34px;
		border-radius: 8px;
	}

	.vcc-card-detail {
		padding: 14px 10px 20px;
	}

	.vcc-detail-name {
		font-size: 1.15rem;
		margin-bottom: 10px;
	}

	.vcc-detail-prices {
		gap: 6px;
		margin-bottom: 12px;
	}

	.vcc-price {
		padding: 8px 10px;
		border-radius: 10px;
	}

	.vcc-price-label {
		font-size: .62rem;
		margin-bottom: 2px;
	}

	.vcc-price strong {
		font-size: 1rem;
	}

	.vcc-detail-row {
		padding: 5px 0;
	}

	.vcc-detail-row dt {
		font-size: .72rem;
	}

	.vcc-detail-row dd {
		font-size: .8rem;
	}

	.vcc-detail-image {
		width: min( 100%, 220px );
	}

}

@media ( max-width: 420px ) {
	.vcc-search-wrap {
		padding-left: 8px;
		padding-right: 8px;
	}

	.vcc-card-detail {
		padding: 12px 8px 18px;
	}

	.vcc-detail-prices {
		grid-template-columns: 1fr;
	}

	.vcc-detail-row {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.vcc-detail-row dt {
		font-size: .68rem;
	}

	.vcc-detail-variants table {
		font-size: .64rem;
	}

	.vcc-detail-variants .vcc-th-label {
		font-size: .48rem;
	}

	.vcc-detail-variants .vcc-variant-filter {
		font-size: 10px;
		padding: 4px 14px 4px 4px;
	}

	.vcc-detail-variants .vcc-row-import {
		font-size: .52rem;
		min-height: 32px;
		padding: 4px 3px;
	}

	.vcc-result {
		grid-template-columns: 44px 1fr;
		padding: 10px 12px;
	}
}
