.sh2c {
	--sh2c-green: #5AAB30;
	--sh2c-text: #000;
	--sh2c-muted: #606060;
	--sh2c-border: #DDD;
	--sh2c-soft: rgba(90, 171, 48, 0.05);
	color: var(--sh2c-text);
	font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.sh2c * { box-sizing: border-box; }
.sh2c-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
	gap: 18px;
	align-items: start;
	container-type: inline-size;
	container-name: sh2c-layout;
}
.sh2c-panel,
.sh2c-sidebar {
	background: #fff;
}
.sh2c-progress-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}
.sh2c-stepnum {
	min-width: 86px;
	font-size: 12px;
	font-weight: 700;
	color: var(--sh2c-muted);
	text-transform: uppercase;
}
.sh2c-progress-track {
	width: 100%;
	height: 4px;
	overflow: hidden;
	border-radius: 999px;
	background: #eee;
}
.sh2c-progress-bar {
	position: relative;
	width: 16.666%;
	height: 100%;
	border-radius: inherit;
	background: var(--sh2c-green);
	overflow: hidden;
	transition: width 0.2s ease;
}
.sh2c-progress-bar::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(157, 228, 68, 0.85) 45%, transparent 80%);
	transform: translateX(-120%);
	animation: sh2c-progress-wave 1.8s ease-in-out infinite;
}
@keyframes sh2c-progress-wave {
	0% {
		transform: translateX(-120%);
	}
	70%,
	100% {
		transform: translateX(120%);
	}
}
@media (prefers-reduced-motion: reduce) {
	.sh2c-progress-bar::after {
		animation: none;
		opacity: 0;
	}
}
.sh2c-title {
	margin: 0 0 8px;
	font-size: clamp(24px, 3vw, 26px) !important;
	line-height: 1.1;
	font-weight: 400;
	color: #262626;
}
.sh2c-title strong {
	font-weight: 900;
}
.sh2c-subtitle {
	margin: 0 0 24px;
	color: var(--sh2c-muted);
	font-size: 16px !important;
	line-height: 1.45;
}
.sh2c-options {
	display: flex;
	flex-direction: column;
	gap: 15px;
	container-type: inline-size;
}
.sh2c-card {
	appearance: none;
	-webkit-appearance: none;
	width: 100%;
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	align-items: center;
	column-gap: 14px;
	min-height: 92px;
	padding: 18px;
	border: 1px solid var(--sh2c-border);
	border-radius: 8px;
	background: #fff;
	color: var(--sh2c-text);
	text-align: left;
	font: inherit;
	cursor: pointer;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, outline-color 0.2s ease;
}
.sh2c-card:hover {
	border-color: var(--sh2c-border);
	background: var(--sh2c-soft);
}
.sh2c-card:focus,
.sh2c-card:focus-visible {
	border-color: var(--sh2c-border);
	outline: none;
}
.sh2c-card.is-selected {
	outline: 2px solid var(--sh2c-green);
	box-shadow: 0 0 7px rgba(90, 171, 48, 0.5);
}
.sh2c-radio,
.sh2c-check {
	flex: 0 0 auto;
	align-self: center;
	width: 18px;
	height: 18px;
	border: 2px solid var(--sh2c-border);
	background: #fff;
}
.sh2c-card > .sh2c-radio,
.sh2c-card > .sh2c-check {
	grid-column: 1;
	justify-self: center;
	margin: 0;
}
.sh2c-radio {
	border-radius: 999px;
}
.sh2c-check {
	border-radius: 3px;
}
.sh2c-card.is-selected .sh2c-radio {
	border-color: var(--sh2c-green);
	box-shadow: inset 0 0 0 4px #fff;
	background: var(--sh2c-green);
}
.sh2c-card.is-selected .sh2c-check {
	border-color: var(--sh2c-green);
	background: var(--sh2c-green);
	position: relative;
}
.sh2c-card.is-selected .sh2c-check::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1px;
	width: 6px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.sh2c-card-main {
	min-width: 0;
	grid-column: 2;
	width: 100%;
}
.sh2c-card:has(.sh2c-product-image),
.sh2c-card:has(.sh2c-color-dot) {
	grid-template-columns: 18px auto minmax(0, 1fr);
}
.sh2c-card > .sh2c-product-image,
.sh2c-card > .sh2c-color-dot {
	grid-column: 2;
	justify-self: center;
}
.sh2c-card:has(.sh2c-product-image) > .sh2c-card-main,
.sh2c-card:has(.sh2c-color-dot) > .sh2c-card-main {
	grid-column: 3;
}
.sh2c-card:has(.sh2c-color-dot) .sh2c-card-topline {
	align-items: center;
}
.sh2c-card:has(.sh2c-product-image) .sh2c-card-main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	column-gap: 18px;
	align-items: start;
}
.sh2c-card:has(.sh2c-product-image) .sh2c-card-topline {
	display: contents;
}
.sh2c-card:has(.sh2c-product-image) .sh2c-card-title {
	grid-column: 1;
	grid-row: 1;
}
.sh2c-card:has(.sh2c-product-image) .sh2c-price {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: center;
}
.sh2c-card:has(.sh2c-product-image) .sh2c-card-desc {
	grid-column: 1;
	grid-row: 2;
}
.sh2c-card-topline {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
}
.sh2c-card-title {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	flex-wrap: wrap;
}
.sh2c-card-name {
	display: block;
	font-size: 18px;
	line-height: 1.25;
	font-weight: 800;
	color: #000;
}
.sh2c-card-desc {
	display: block;
	margin-top: 5px;
	color: var(--sh2c-muted);
	font-size: 15px;
	line-height: 1.45;
}
.sh2c-price {
	flex: 0 0 auto;
	text-align: right;
	white-space: nowrap;
	color: #000;
}
.sh2c-price strong {
	display: block;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 800;
}
.sh2c-price span {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: #000;
}
.sh2c-badge {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 5px 14px;
	border-radius: 999px;
	background: #5AAB30;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}
.sh2c-flex-icon {
	display: block;
	width: 55px;
	height: 23px;
	object-fit: contain;
	flex: 0 0 auto;
}
.sh2c-bullets {
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}
.sh2c-bullets li {
	position: relative;
	margin-top: 7px;
	padding-left: 18px;
	color: var(--sh2c-muted);
	font-size: 14px;
	line-height: 1.45;
}
.sh2c-bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 5px;
	border-left: 2px solid var(--sh2c-green);
	border-bottom: 2px solid var(--sh2c-green);
	transform: rotate(-45deg);
}
.sh2c-fit {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px dashed #DDD;
	color: var(--sh2c-muted);
	font-size: 15px;
	font-style: italic;
	line-height: 1.45;
}
.sh2c-product-image {
	width: 72px;
	height: 72px;
	flex: 0 0 72px;
	object-fit: contain;
}
.sh2c-info-card {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr) auto;
	gap: 24px;
	align-items: start;
	padding: 28px;
	border: 1px solid var(--sh2c-border);
	border-radius: 8px;
	background: #fff;
}
.sh2c-info-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	border-radius: 8px;
	background: #f5f4ef;
}
.sh2c-info-image img {
	max-width: 82px;
	max-height: 82px;
	object-fit: contain;
}
.sh2c-info-content {
	min-width: 0;
}
.sh2c-info-title {
	margin: 0 0 12px;
	font-size: 20px;
	line-height: 1.25;
	font-weight: 800;
	color: #000;
}
.sh2c-info-copy {
	margin: 0;
	color: #000;
	font-size: 16px;
	line-height: 1.55;
}
.sh2c-info-price {
	color: #000;
	font-size: 20px;
	font-weight: 800;
	white-space: nowrap;
	text-align: right;
}
.sh2c.is-info-tight .sh2c-info-card {
	grid-template-columns: 96px minmax(0, 1fr);
	grid-template-areas:
		"image price"
		"content content";
	align-items: center;
	gap: 18px 20px;
}
.sh2c.is-info-tight .sh2c-info-image {
	grid-area: image;
}
.sh2c.is-info-tight .sh2c-info-content {
	grid-area: content;
}
.sh2c.is-info-tight .sh2c-info-price {
	grid-area: price;
	justify-self: end;
	align-self: center;
}
.sh2c-decision {
	appearance: none;
	-webkit-appearance: none;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 68px;
	padding: 18px 22px;
	border: 1px solid var(--sh2c-border);
	border-radius: 8px;
	background: #fff;
	color: #000;
	text-align: left;
	font: inherit;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 800;
	cursor: pointer;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.sh2c-decision:hover,
.sh2c-decision:focus {
	border-color: var(--sh2c-border);
	background: var(--sh2c-soft);
	color: #000;
	outline: none;
}
.sh2c-decision.is-selected {
	outline: 2px solid var(--sh2c-green);
	box-shadow: 0 0 7px rgba(90, 171, 48, 0.5);
}
.sh2c-decision.is-selected .sh2c-radio {
	border-color: var(--sh2c-green);
	box-shadow: inset 0 0 0 4px #fff;
	background: var(--sh2c-green);
}
.sh2c-color-dot {
	width: 38px;
	height: 38px;
	border-radius: 999px;
	border: 1px solid rgba(0,0,0,0.12);
	flex: 0 0 38px;
}
.sh2c-section-link {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: baseline;
	margin-bottom: 15px;
}
.sh2c-section-link span {
	font-size: 20px;
	font-weight: 800;
}
.sh2c-section-link a {
	color: var(--sh2c-green);
	font-weight: 800;
	text-decoration: none;
}
.sh2c-nav {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: center;
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid #eee;
}
.sh2c.has-external-footer .sh2c-nav {
	display: none;
}
.sh2c-back,
.sh2c-next,
.sh2c-link-button {
	border: 0;
	font: inherit;
	cursor: pointer;
}
.sh2c-back,
.sh2c-link-button {
	padding: 14px 18px;
	border-radius: 8px;
	background: transparent;
	color: var(--sh2c-muted);
	font-weight: 700;
}
.sh2c-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}
.sh2c-back::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: url("https://scoliadarts.com/wp-content/uploads/2024/12/ico-arrow-le.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: rotate(90deg);
	transition: filter 0.2s ease;
}
.sh2c-back:hover,
.sh2c-back:focus,
.sh2c-link-button:hover,
.sh2c-link-button:focus {
	background: var(--sh2c-soft);
	color: var(--sh2c-green);
	outline: none;
}
.sh2c-back:hover::before,
.sh2c-back:focus::before {
	filter: brightness(0) saturate(100%) invert(48%) sepia(82%) saturate(410%) hue-rotate(57deg) brightness(92%) contrast(90%);
}
.sh2c-next {
	min-width: 0;
	padding: 12px 18px;
	border: 1px solid var(--sh2c-green);
	border-radius: 8px;
	background: var(--sh2c-green);
	color: #fff;
	font-weight: 800;
	white-space: nowrap;
}
.sh2c-next:hover,
.sh2c-next:focus {
	background: #9de444;
	border-color: #9de444;
	color: #000;
	outline: none;
}
.sh2c-next:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}
.sh2c-next:disabled:hover,
.sh2c-next:disabled:focus {
	background: var(--sh2c-green);
	border-color: var(--sh2c-green);
	color: #fff;
}
.sh2c-sidebar {
	position: sticky;
	top: 18px;
	padding: 18px;
	border-radius: 8px;
	background: #f6f7f6e3;
	box-shadow: rgba(0, 0, 0, 0.05) 0 18px 14px -8px;
}
.sh2c-sidebar-title {
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 800;
	color: var(--sh2c-muted);
	letter-spacing: 0.04em;
}
.sh2c-cart-body {
	transition: opacity 0.34s ease, transform 0.34s ease;
}
.sh2c-cart-body.is-updating {
	opacity: 0;
	transform: translateY(6px);
}
.sh2c-empty,
.sh2c-note {
	color: var(--sh2c-muted);
	font-size: 14px;
	line-height: 1.45;
}
.sh2c-cart-row,
.sh2c-total-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 7px 0;
	font-size: 14px;
	line-height: 1.35;
}
.sh2c-cart-row span:last-child,
.sh2c-total-row span:last-child {
	white-space: nowrap;
	font-weight: 800;
}
.sh2c-total {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #eee;
}
.sh2c-total-row {
	font-size: 18px;
	font-weight: 800;
}
.sh2c-shipping {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 14px;
	padding: 12px;
	border-radius: 8px;
	background: #f7faf5;
}
.sh2c-shipping::before {
	content: "";
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	border-radius: 50%;
	background-color: rgba(90, 171, 48, 0.14);
	background-image: url("https://scoliadarts.com/wp-content/uploads/2025/01/truck-ico.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px 18px;
	filter: brightness(0) saturate(100%) invert(48%) sepia(82%) saturate(410%) hue-rotate(57deg) brightness(92%) contrast(90%);
}
.sh2c-review {
	border: 1px solid var(--sh2c-border);
	border-radius: 8px;
	padding: 18px;
}
.sh2c-review-head {
	margin-bottom: 10px;
	color: var(--sh2c-muted);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}
.sh2c-status {
	min-height: 20px;
	margin-top: 12px;
	color: var(--sh2c-muted);
	font-size: 14px;
}
.sh2c-status.is-error {
	color: #e65223;
	font-weight: 800;
}
.sh2c.is-compact .sh2c-title {
		font-size: 26px !important;
}
.sh2c.is-compact .sh2c-subtitle {
		font-size: 13px !important;
}
.sh2c.is-compact .sh2c-stepnum {
		font-size: 10px;
}
.sh2c.is-compact .sh2c-progress-row {
		gap: 8px;
		margin-bottom: 14px;
}
.sh2c.is-compact .sh2c-card {
		grid-template-columns: 18px minmax(0, 1fr);
		text-align: left;
		column-gap: 12px;
		min-height: 0;
		padding: 14px;
}
.sh2c.is-compact .sh2c-card:has(.sh2c-product-image),
.sh2c.is-compact .sh2c-card:has(.sh2c-color-dot) {
		grid-template-columns: 18px auto minmax(0, 1fr);
}
.sh2c.is-compact .sh2c-card-main {
		min-width: 0;
		width: 100%;
}
.sh2c.is-compact .sh2c-card-topline {
		align-items: flex-start;
		justify-content: space-between;
		gap: 10px;
}
.sh2c.is-compact .sh2c-card:has(.sh2c-product-image) .sh2c-card-main {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		column-gap: 10px;
		align-items: start;
}
.sh2c.is-compact .sh2c-card:has(.sh2c-product-image) .sh2c-card-topline {
		display: contents;
}
.sh2c.is-compact .sh2c-card:has(.sh2c-product-image) .sh2c-card-title {
		grid-column: 1;
		grid-row: 1;
}
.sh2c.is-compact .sh2c-card:has(.sh2c-product-image) .sh2c-price {
		grid-column: 2;
		grid-row: 1 / span 2;
		align-self: center;
}
.sh2c.is-compact .sh2c-card:has(.sh2c-product-image) .sh2c-card-desc {
		grid-column: 1;
		grid-row: 2;
}
.sh2c.is-compact .sh2c-card:has(.sh2c-color-dot) .sh2c-card-topline {
		align-items: center;
}
@container (max-width: 335px) {
	.sh2c-card:has(.sh2c-product-image) {
		grid-template-columns: 18px 38px minmax(0, 1fr);
		column-gap: 9px;
		padding: 12px;
	}
	.sh2c-card:has(.sh2c-product-image) > .sh2c-product-image {
		width: 38px;
		height: 38px;
	}
	.sh2c-card:has(.sh2c-product-image) .sh2c-card-main {
		grid-template-columns: minmax(0, 1fr) minmax(70px, auto);
		column-gap: 8px;
	}
	.sh2c-card:has(.sh2c-product-image) .sh2c-card-name {
		font-size: 15px;
		line-height: 1.18;
		overflow-wrap: normal;
		word-break: normal;
	}
	.sh2c-card:has(.sh2c-product-image) .sh2c-card-desc {
		font-size: 12px;
		line-height: 1.3;
		overflow-wrap: normal;
		word-break: normal;
	}
	.sh2c-card:has(.sh2c-product-image) .sh2c-price strong {
		font-size: 15px;
	}
	.sh2c-card:has(.sh2c-product-image) .sh2c-price span {
		font-size: 10px;
	}
}
.sh2c.is-compact .sh2c-card-title {
		gap: 8px;
}
.sh2c.is-compact .sh2c-card-name {
		font-size: 14px;
		line-height: 1.2;
}
.sh2c.is-compact .sh2c-card-desc {
		font-size: 12px;
		line-height: 1.35;
}
.sh2c.is-compact .sh2c-badge {
		min-height: 21px;
		padding: 4px 12px;
		font-size: 10px;
}
.sh2c.is-compact .sh2c-flex-icon {
		width: 46px;
		height: 19px;
}
.sh2c.is-compact .sh2c-bullets li,
.sh2c.is-compact .sh2c-fit {
		font-size: 11px;
}
.sh2c.is-compact .sh2c-price {
		text-align: right;
}
.sh2c.is-compact .sh2c-price strong {
		font-size: 14px;
}
.sh2c.is-compact .sh2c-price span {
		font-size: 10px;
}
.sh2c.is-compact .sh2c-nav {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		overflow: visible;
}
.sh2c.is-compact .sh2c-back {
		flex: 0 0 auto;
		padding: 10px 8px;
		font-size: 15px;
}
.sh2c.is-compact .sh2c-next {
		flex: 0 0 auto;
		width: auto;
		min-width: 0;
		max-width: none;
		padding: 10px 12px;
		border-radius: 8px;
		font-size: 14px;
		line-height: 1;
}
@media (min-width: 821px) and (max-width: 1300px) {
	.sh2c-layout {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.sh2c-sidebar {
		position: static;
		padding: 14px;
	}
}
.sh2c-footer-shell {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	padding: 12px 18px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(8px);
	display: none;
}
.sh2c-footer-shell[hidden] {
	display: none;
}
.sh2c-footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: center;
	max-width: 1250px;
	margin: 0 auto;
}
.sh2c-footer-back {
	flex: 0 0 auto;
}
.sh2c-footer-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 30px;
	min-width: 0;
	margin-left: auto;
	flex: 0 1 auto;
}
.sh2c-footer-total {
	min-width: 0;
	text-align: right;
	flex: 0 1 auto;
}
.sh2c-footer-price {
	display: block;
	color: #000;
	font-size: 24px;
	line-height: 1.15;
	font-weight: 800;
	white-space: nowrap;
}
.sh2c-footer-vat {
	display: block;
	margin-top: 3px;
	color: var(--sh2c-muted);
	font-size: 13px;
	line-height: 1.25;
	white-space: nowrap;
}
.sh2c-footer-next {
	width: auto;
}
.sh2c-footer-next,
.sh2c-footer-next:disabled,
.sh2c-footer-next:disabled:hover,
.sh2c-footer-next:disabled:focus {
	display: inline-flex !important;
	visibility: visible !important;
	background: var(--sh2c-green) !important;
	border-color: var(--sh2c-green) !important;
	color: #fff !important;
}
.sh2c-footer-next:disabled {
	opacity: 1 !important;
	background: #b8dda2 !important;
	border-color: #b8dda2 !important;
}
.sh2c-footer-back:disabled {
	opacity: 0.35;
	pointer-events: none;
}
@media (max-width: 820px) {
	.sh2c-layout {
		grid-template-columns: 1fr;
	}
	.sh2c-sidebar {
		position: static;
	}
	.sh2c-footer-shell:not([hidden]) {
		display: block;
	}
	.sh2c-footer-shell {
		padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
		height: calc(72px + env(safe-area-inset-bottom, 0px));
		box-sizing: border-box;
	}
	.sh2c-footer-inner {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		gap: 10px;
		align-items: center;
		justify-content: space-between;
		position: relative;
		height: 56px;
		min-height: 0;
		max-height: none;
	}
	.sh2c-footer-back {
		flex: 0 0 auto;
		min-width: 0;
		padding: 8px 6px;
		font-size: 15px;
		white-space: nowrap;
	}
	.sh2c-footer-total {
		flex: 0 0 auto;
		width: max-content;
		min-width: max-content;
		max-width: none;
		padding: 0;
		text-align: right;
		overflow: visible;
	}
	.sh2c-footer-actions {
		position: static;
		display: grid;
		grid-template-columns: max-content auto;
		justify-self: end;
		gap: clamp(10px, 3vw, 24px);
		align-items: center;
		transform: none;
		margin-left: auto;
		min-width: 0;
		flex: 0 0 auto;
	}
	.sh2c-footer-next {
		flex: 0 0 auto;
		width: auto !important;
		min-width: 0 !important;
		min-height: 0;
		height: 40px;
		padding: 9px 13px !important;
		display: inline-flex !important;
		visibility: visible !important;
		align-items: center;
		justify-content: center;
		font-size: 14px;
		line-height: 1;
	}
}
@media (max-width: 560px) {
	.sh2c-card {
		column-gap: 12px;
		padding: 14px;
	}
	.sh2c-card-name {
		font-size: 16px;
	}
	.sh2c-card-desc {
		font-size: 14px;
	}
	.sh2c-price strong {
		font-size: 16px;
	}
	.sh2c-product-image {
		width: 54px;
		height: 54px;
		flex-basis: 54px;
	}
	.sh2c-card {
		align-items: center;
	}
	.sh2c-card-main {
		min-width: 0;
	}
	.sh2c-price {
		align-self: center;
	}
	.sh2c-section-link {
		align-items: flex-start;
		flex-direction: column;
	}
	.sh2c-info-card {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 20px;
	}
	.sh2c-info-price {
		text-align: left;
	}
	.sh2c-footer-price {
		font-size: 20px;
		line-height: 1;
	}
	.sh2c-footer-vat {
		margin-top: 2px;
		font-size: 11px;
		line-height: 1.1;
		white-space: nowrap;
		overflow: visible;
		text-overflow: clip;
	}
	.sh2c-footer-next {
		min-width: 0;
	}
}
@media (max-width: 380px) {
	.sh2c-footer-inner {
		gap: 6px;
	}
	.sh2c-footer-actions {
		gap: 10px;
	}
	.sh2c-footer-back {
		font-size: 0;
		gap: 0;
	}
	.sh2c-footer-back::before {
		margin-right: 0;
	}
	.sh2c-footer-price {
		font-size: 18px;
	}
	.sh2c-footer-total {
		max-width: none;
	}
	.sh2c-footer-next {
		padding: 8px 10px !important;
		font-size: 13px;
	}
}
.sh2c-footer-shell .sh2c-footer-next,
.sh2c-footer-shell .sh2c-footer-next:hover,
.sh2c-footer-shell .sh2c-footer-next:focus,
.sh2c-footer-shell .sh2c-footer-next:active {
	display: inline-flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	background: var(--sh2c-green) !important;
	border-color: var(--sh2c-green) !important;
	color: #fff !important;
}
.sh2c-footer-shell .sh2c-footer-next:hover,
.sh2c-footer-shell .sh2c-footer-next:focus {
	background: #9de444 !important;
	border-color: #9de444 !important;
	color: #000 !important;
}
.sh2c-footer-shell .sh2c-footer-next:disabled,
.sh2c-footer-shell .sh2c-footer-next:disabled:hover,
.sh2c-footer-shell .sh2c-footer-next:disabled:focus,
.sh2c-footer-shell .sh2c-footer-next:disabled:active {
	display: inline-flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	background: #b8dda2 !important;
	border-color: #b8dda2 !important;
	color: #fff !important;
}

.sh2c.is-wide-configuration > .sh2c-layout {
	grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
}
.sh2c.is-wide-configuration .sh2c-sidebar,
.sh2c.is-narrow-configuration .sh2c-sidebar {
	position: sticky;
	top: 18px;
	align-self: start;
}

.termek-container:has(.sh2c) {
	flex-wrap: nowrap !important;
}
.elementor-widget-shortcode:has(.sh2c),
.elementor-widget-shortcode:has(.sh2c) > .elementor-widget-container {
	height: auto !important;
	min-height: 0 !important;
}

@media (max-width: 820px) {
	.galeria-termek-del:has(.sh2c) {
		flex-wrap: nowrap !important;
	}
}

.sh2c.is-narrow-configuration > .sh2c-layout {
	grid-template-columns: minmax(0, 1fr) minmax(150px, 174px);
	gap: 10px;
	align-items: start;
}
.sh2c.is-narrow-configuration .sh2c-sidebar {
	padding: 13px 12px;
}
.sh2c.is-narrow-configuration .sh2c-sidebar-title {
	margin-bottom: 9px;
	font-size: 11px;
	line-height: 1.25;
	letter-spacing: 0.02em;
}
.sh2c.is-narrow-configuration .sh2c-cart-row,
.sh2c.is-narrow-configuration .sh2c-total-row {
	gap: 8px;
	padding: 5px 0;
	font-size: 12px;
	line-height: 1.25;
}
.sh2c.is-narrow-configuration .sh2c-total {
	margin-top: 8px;
	padding-top: 8px;
}
.sh2c.is-narrow-configuration .sh2c-total-row {
	font-size: 15px;
}
.sh2c.is-narrow-configuration .sh2c-empty,
.sh2c.is-narrow-configuration .sh2c-note {
	font-size: 12px;
	line-height: 1.35;
}
.sh2c.is-narrow-configuration .sh2c-shipping {
	gap: 8px;
	margin-top: 10px;
	padding: 9px;
}
.sh2c.is-narrow-configuration .sh2c-shipping::before {
	width: 26px;
	height: 26px;
	flex-basis: 26px;
	background-size: 15px 15px;
}

@container sh2c-layout (max-width: 559px) {
	.sh2c-card,
	.sh2c.is-compact .sh2c-card {
		grid-template-columns: minmax(0, 1fr);
		column-gap: 0;
		padding: 14px;
	}
	.sh2c-card > .sh2c-radio,
	.sh2c-card > .sh2c-check {
		display: none;
	}
	.sh2c-card > .sh2c-card-main,
	.sh2c.is-compact .sh2c-card-main {
		grid-column: 1;
	}
	.sh2c-card:has(.sh2c-product-image),
	.sh2c-card:has(.sh2c-color-dot),
	.sh2c.is-compact .sh2c-card:has(.sh2c-product-image),
	.sh2c.is-compact .sh2c-card:has(.sh2c-color-dot) {
		grid-template-columns: auto minmax(0, 1fr);
		column-gap: 10px;
	}
	.sh2c-card:has(.sh2c-product-image) > .sh2c-product-image,
	.sh2c-card:has(.sh2c-color-dot) > .sh2c-color-dot {
		grid-column: 1;
	}
	.sh2c-card:has(.sh2c-product-image) > .sh2c-card-main,
	.sh2c-card:has(.sh2c-color-dot) > .sh2c-card-main,
	.sh2c.is-compact .sh2c-card:has(.sh2c-product-image) > .sh2c-card-main,
	.sh2c.is-compact .sh2c-card:has(.sh2c-color-dot) > .sh2c-card-main {
		grid-column: 2;
	}
	.sh2c-card:has(.sh2c-product-image) .sh2c-card-main,
	.sh2c.is-compact .sh2c-card:has(.sh2c-product-image) .sh2c-card-main {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		column-gap: 8px;
		align-items: center;
	}
	.sh2c-decision {
		padding: 14px;
	}
	.sh2c-decision .sh2c-radio {
		display: none;
	}
}

@container sh2c-layout (max-width: 360px) {
	.sh2c-card:has(.sh2c-product-image),
	.sh2c.is-compact .sh2c-card:has(.sh2c-product-image) {
		grid-template-columns: 38px minmax(0, 1fr);
		column-gap: 9px;
	}
	.sh2c-card:has(.sh2c-product-image) > .sh2c-product-image {
		width: 38px;
		height: 38px;
	}
}
