:root {
	--gc-bg: #F6F8F9;
	--gc-card: #FFFFFF;
	--gc-text: #0F172A;
	--gc-muted: #5B6472;
	--gc-accent: #0A7C6D;
	--gc-accent-hover: #08695D;
	--gc-accent-soft: #EAF6F3;
	--gc-border: #E4E8EC;
	--gc-border-hover: #9DD2C8;
	--gc-shadow: 0 10px 30px rgba(15, 23, 42, .06);
	--gc-shadow-hover: 0 18px 44px rgba(15, 23, 42, .11);
	--gc-radius-card: 20px;
	--gc-radius-section: 24px;
	--gc-radius-button: 12px;
	--gc-font: Manrope, Inter, Arial, sans-serif;
}


* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body.gc-body {
	margin: 0;
	overflow-x: hidden;
	background:
		radial-gradient(circle at 12% 8%, rgba(10, 124, 109, .08), transparent 28%),
		linear-gradient(180deg, #FFFFFF 0, var(--gc-bg) 360px);
	color: var(--gc-text);
	font-family: var(--gc-font);
	font-size: 16px;
	line-height: 1.5;
	text-rendering: optimizeLegibility;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.gc-screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.gc-container {
	width: min(100% - 32px, 1320px);
	margin-inline: auto;
}

.gc-header {
	position: sticky;
	top: 0;
	z-index: 50;
	padding: 10px 0;
	background: rgba(246, 248, 249, .86);
	border-bottom: 1px solid rgba(228, 232, 236, .82);
	backdrop-filter: blur(18px);
}

.gc-header__inner {
	display: flex;
	align-items: center;
	gap: 22px;
	min-height: 56px;
}

.gc-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	font-weight: 900;
	letter-spacing: 0;
}

.gc-logo__mark {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 13px;
	background: var(--gc-accent);
	color: #FFFFFF;
	font-size: 14px;
	box-shadow: 0 10px 20px rgba(10, 124, 109, .18);
}

.gc-logo__text {
	font-size: 17px;
}

.gc-header__toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	margin-left: auto;
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius-button);
	background: var(--gc-card);
	cursor: pointer;
}

.gc-header__toggle-line {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--gc-text);
	border-radius: 999px;
}

.gc-header__panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex: 1;
	min-width: 0;
}

.gc-nav {
	display: flex;
	align-items: center;
	gap: 4px;
}

.gc-nav__link {
	padding: 9px 11px;
	border-radius: 999px;
	color: var(--gc-muted);
	font-weight: 800;
	font-size: 14px;
	transition: color .2s ease, background-color .2s ease;
}

.gc-nav__link:hover,
.gc-nav__link:focus-visible {
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
}

.gc-search {
	position: relative;
	display: flex;
	align-items: center;
	width: min(100%, 286px);
	min-width: 210px;
	height: 42px;
	padding: 0 14px 0 38px;
	background: var(--gc-card);
	border: 1px solid var(--gc-border);
	border-radius: 999px;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
}

.gc-search:focus-within {
	border-color: var(--gc-border-hover);
	box-shadow: 0 0 0 4px rgba(10, 124, 109, .08);
}

.gc-search__icon,
.gc-mini-cart__icon {
	position: absolute;
	display: inline-block;
}

.gc-search__icon {
	left: 15px;
	width: 15px;
	height: 15px;
	border: 2px solid var(--gc-muted);
	border-radius: 999px;
}

.gc-search__icon::after {
	content: "";
	position: absolute;
	right: -5px;
	bottom: -4px;
	width: 7px;
	height: 2px;
	border-radius: 999px;
	background: var(--gc-muted);
	transform: rotate(45deg);
}

.gc-search__input {
	width: 100%;
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--gc-text);
	font: inherit;
	font-size: 14px;
}

.gc-search__input::placeholder {
	color: #8A93A0;
}

.gc-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.gc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 18px;
	border: 1px solid transparent;
	border-radius: var(--gc-radius-button);
	font-weight: 900;
	font-size: 14px;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.gc-button:hover,
.gc-button:focus-visible {
	transform: translateY(-1px);
}

.gc-button--primary {
	background: var(--gc-accent);
	color: #FFFFFF;
	box-shadow: 0 12px 24px rgba(10, 124, 109, .18);
}

.gc-button--primary:hover,
.gc-button--primary:focus-visible {
	background: var(--gc-accent-hover);
	color: #FFFFFF;
}

.gc-button--secondary,
.gc-button--ghost {
	background: var(--gc-card);
	border-color: var(--gc-border);
	color: var(--gc-text);
	box-shadow: 0 8px 20px rgba(15, 23, 42, .035);
}

.gc-button--secondary:hover,
.gc-button--secondary:focus-visible,
.gc-button--ghost:hover,
.gc-button--ghost:focus-visible {
	border-color: var(--gc-border-hover);
	color: var(--gc-accent);
}

.gc-header__account {
	min-height: 42px;
	padding-inline: 15px;
}

.gc-mini-cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 13px 0 38px;
	border: 1px solid var(--gc-border);
	border-radius: 999px;
	background: var(--gc-card);
	color: var(--gc-text);
	font-weight: 900;
	font-size: 13px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, .035);
	transition: border-color .2s ease, color .2s ease;
}

.gc-mini-cart:hover,
.gc-mini-cart:focus-visible {
	border-color: var(--gc-border-hover);
	color: var(--gc-accent);
}

.gc-mini-cart__icon {
	left: 14px;
	width: 16px;
	height: 14px;
	border: 2px solid currentColor;
	border-top: 0;
	border-radius: 0 0 5px 5px;
}

.gc-mini-cart__icon::before {
	content: "";
	position: absolute;
	left: 2px;
	right: 2px;
	top: -7px;
	height: 9px;
	border: 2px solid currentColor;
	border-bottom: 0;
	border-radius: 999px 999px 0 0;
}

.gc-main {
	min-height: 60vh;
}

.gc-icon {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	border-radius: 14px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	position: relative;
}

.gc-icon::before,
.gc-icon::after {
	content: "";
	position: absolute;
}

.gc-icon--svg::before,
.gc-icon--svg::after {
	display: none;
	content: none;
}

.gc-icon--svg svg {
	display: block;
	width: 20px;
	height: 20px;
}

.gc-icon[data-gc-icon="bolt"]::before {
	width: 11px;
	height: 18px;
	background: currentColor;
	clip-path: polygon(58% 0, 18% 48%, 47% 48%, 33% 100%, 84% 37%, 54% 37%);
}

.gc-icon[data-gc-icon="shield"]::before {
	width: 16px;
	height: 18px;
	background: currentColor;
	clip-path: polygon(50% 0, 92% 16%, 84% 72%, 50% 100%, 16% 72%, 8% 16%);
}

.gc-icon[data-gc-icon="chat"]::before {
	width: 18px;
	height: 14px;
	border: 2px solid currentColor;
	border-radius: 6px;
}

.gc-icon[data-gc-icon="chat"]::after {
	left: 12px;
	bottom: 9px;
	width: 7px;
	height: 7px;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-18deg);
}

.gc-icon[data-gc-icon="list"]::before,
.gc-icon[data-gc-icon="search"]::before {
	width: 16px;
	height: 12px;
	border-top: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
}

.gc-icon[data-gc-icon="list"]::after,
.gc-icon[data-gc-icon="search"]::after {
	width: 16px;
	height: 2px;
	background: currentColor;
}

.gc-icon[data-gc-icon="card"]::before {
	width: 19px;
	height: 14px;
	border: 2px solid currentColor;
	border-radius: 5px;
}

.gc-icon[data-gc-icon="card"]::after {
	top: 14px;
	width: 17px;
	height: 2px;
	background: currentColor;
}

.gc-icon[data-gc-icon="lock"]::before {
	width: 18px;
	height: 14px;
	bottom: 10px;
	border-radius: 5px;
	background: currentColor;
}

.gc-icon[data-gc-icon="lock"]::after {
	top: 9px;
	width: 13px;
	height: 12px;
	border: 2px solid currentColor;
	border-bottom: 0;
	border-radius: 999px 999px 0 0;
}

.gc-hero {
	padding: 30px 0 26px;
}

.gc-hero__surface {
	position: relative;
	overflow: hidden;
	padding: 22px;
	border: 1px solid rgba(228, 232, 236, .92);
	border-radius: 32px;
	background:
		linear-gradient(135deg, rgba(234, 246, 243, .92), rgba(255, 255, 255, .72) 38%, rgba(255, 255, 255, .96)),
		var(--gc-card);
	box-shadow: var(--gc-shadow);
}

.gc-hero__surface::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(10, 124, 109, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(10, 124, 109, .06) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, .35), transparent 68%);
	pointer-events: none;
}

.gc-hero__surface::after {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: rgba(10, 124, 109, .08);
	pointer-events: none;
}

.gc-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
	gap: 22px;
	align-items: stretch;
}

.gc-hero__content,
.gc-hero-card,
.gc-trust__inner {
	background: rgba(255, 255, 255, .94);
	border: 1px solid rgba(228, 232, 236, .88);
	border-radius: var(--gc-radius-section);
	box-shadow: var(--gc-shadow);
}

.gc-hero__content {
	min-height: 484px;
	padding: clamp(30px, 5vw, 58px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gc-badge,
.gc-eyebrow {
	margin: 0 0 12px;
	color: var(--gc-accent);
	font-weight: 900;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.gc-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	padding: 8px 12px;
	background: var(--gc-accent-soft);
	border: 1px solid var(--gc-border-hover);
	border-radius: 999px;
}

.gc-badge__icon {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--gc-accent);
	box-shadow: 0 0 0 5px rgba(10, 124, 109, .1);
}

.gc-hero__title {
	max-width: 760px;
	margin: 0;
	color: var(--gc-text);
	font-size: 64px;
	line-height: .98;
	letter-spacing: -.01em;
}

.gc-hero__text {
	max-width: 650px;
	margin: 22px 0 0;
	color: var(--gc-muted);
	font-size: 18px;
	line-height: 1.62;
}

.gc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.gc-hero__features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 30px;
}

.gc-hero-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 76px;
	padding: 14px;
	background: var(--gc-card);
	border: 1px solid var(--gc-border);
	border-radius: 18px;
}

.gc-hero-feature .gc-icon {
	width: 34px;
	height: 34px;
	border-radius: 12px;
}

.gc-hero-feature__copy,
.gc-hero-card__copy {
	display: grid;
	gap: 2px;
}

.gc-hero-feature__title,
.gc-hero-card__step-title {
	font-weight: 900;
}

.gc-hero-feature__text,
.gc-hero-card__step-text {
	color: var(--gc-muted);
	font-size: 13px;
}

.gc-hero-card {
	padding: 26px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.gc-hero-card__head {
	margin-bottom: 18px;
}

.gc-hero-card__title {
	margin: 0;
	font-size: 27px;
	line-height: 1.15;
	letter-spacing: -.01em;
}

.gc-hero-card__list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-hero-card__item {
	display: grid;
	grid-template-columns: 34px 38px 1fr;
	gap: 12px;
	align-items: center;
	padding: 14px;
	border: 1px solid var(--gc-border);
	border-radius: 18px;
	background: var(--gc-bg);
}

.gc-hero-card__number {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: var(--gc-card);
	color: var(--gc-accent);
	font-weight: 900;
	box-shadow: 0 8px 16px rgba(15, 23, 42, .05);
}

.gc-hero-card__guarantee {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
	padding: 16px;
	border: 1px solid var(--gc-border-hover);
	border-radius: 18px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
}

.gc-hero-card__guarantee strong,
.gc-hero-card__guarantee small {
	display: block;
}

.gc-hero-card__guarantee small {
	margin-top: 3px;
	color: var(--gc-muted);
}

.gc-section {
	padding: 38px 0;
}

.gc-section--tiers {
	padding-top: 34px;
}

.gc-section--faq {
	padding-top: 30px;
}

.gc-section__head {
	max-width: 780px;
	margin-bottom: 24px;
}

.gc-section__head--center {
	margin-inline: auto;
	text-align: center;
}

.gc-section__head--row {
	max-width: none;
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 18px;
}

.gc-section__copy {
	max-width: 740px;
}

.gc-section__title {
	margin: 0;
	font-size: clamp(30px, 3.3vw, 44px);
	line-height: 1.12;
	letter-spacing: -.01em;
}

.gc-section__text {
	max-width: 680px;
	margin: 12px 0 0;
	color: var(--gc-muted);
	font-size: 17px;
}

.gc-section__head--center .gc-section__text {
	margin-inline: auto;
}

.gc-section__action {
	flex: 0 0 auto;
	margin-bottom: 4px;
}

.gc-tier-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.gc-tier,
.gc-product-card,
.gc-process__item,
.gc-faq__item,
.gc-empty,
.gc-post {
	background: var(--gc-card);
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius-card);
}

.gc-tier {
	min-height: 190px;
	padding: 24px 18px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.gc-tier:hover,
.gc-tier:focus-visible {
	border-color: var(--gc-border-hover);
	background: linear-gradient(180deg, #FFFFFF, var(--gc-accent-soft));
	transform: translateY(-4px);
	box-shadow: var(--gc-shadow-hover);
}

.gc-tier__icon {
	width: 44px;
	height: 44px;
	margin-bottom: 18px;
	border-radius: 16px;
	background:
		linear-gradient(135deg, var(--gc-accent-soft), #FFFFFF);
	border: 1px solid var(--gc-border-hover);
	position: relative;
}

.gc-tier__icon::before,
.gc-tier__icon::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	height: 3px;
	border-radius: 999px;
	background: var(--gc-accent);
}

.gc-tier__icon::before {
	top: 15px;
}

.gc-tier__icon::after {
	top: 25px;
}

.gc-tier__label {
	display: block;
	font-size: 34px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: -.01em;
	transition: color .2s ease;
}

.gc-tier:hover .gc-tier__label,
.gc-tier:focus-visible .gc-tier__label {
	color: var(--gc-accent);
}

.gc-tier__text,
.gc-tier__note {
	display: block;
	margin-top: 8px;
	color: var(--gc-muted);
	font-size: 14px;
}

.gc-tier__note {
	color: var(--gc-text);
	font-weight: 900;
}

.gc-products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.gc-product-card {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.gc-product-card:hover {
	border-color: var(--gc-border-hover);
	transform: translateY(-4px);
	box-shadow: var(--gc-shadow-hover);
}

.gc-product-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--gc-accent-soft);
}

.gc-product-card__image,
.gc-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .24s ease;
}

.gc-product-card:hover .gc-product-card__image,
.gc-product-card:hover .gc-product-card__media img {
	transform: scale(1.035);
}

.gc-product-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: var(--gc-accent);
	font-weight: 900;
}

.gc-product-card__sale {
	position: absolute;
	left: 12px;
	top: 12px;
	padding: 7px 9px;
	border-radius: 999px;
	background: var(--gc-accent);
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 900;
}

.gc-product-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 18px;
}

.gc-product-card__meta,
.gc-product-card__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 12px;
}

.gc-product-card__badge,
.gc-product-card__chip {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 9px;
	border: 1px solid var(--gc-border-hover);
	border-radius: 999px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

.gc-product-card__badge--accent {
	border-color: var(--gc-border-hover);
	background: #FFFFFF;
	color: var(--gc-accent);
}

.gc-product-card__badge--xi {
	border-color: var(--gc-accent);
	background: var(--gc-accent);
	color: #FFFFFF;
	box-shadow: 0 6px 16px rgba(10, 124, 109, .18);
}

.gc-product-card__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: -.01em;
}

.gc-product-card__title-link:hover,
.gc-product-card__title-link:focus-visible {
	color: var(--gc-accent);
}

.gc-product-card__footer {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: auto;
	padding-top: 16px;
}

.gc-product-card__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	font-weight: 900;
	color: var(--gc-text);
}

.gc-product-card__current-price {
	color: var(--gc-accent);
	font-size: 20px;
}

.gc-product-card__old-price {
	color: var(--gc-muted);
	font-size: 14px;
	font-weight: 800;
	text-decoration: line-through;
}

.gc-product-card__button {
	width: 100%;
}

.gc-catalog {
	padding: 34px 0 68px;
	background: var(--gc-bg);
}

.gc-catalog__wrap {
	width: min(100% - 32px, 1320px);
	margin-inline: auto;
}

.gc-catalog-hero {
	padding: clamp(28px, 4vw, 44px);
	margin-bottom: 28px;
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius-section);
	background:
		linear-gradient(135deg, rgba(234, 246, 243, .88), rgba(255, 255, 255, .96)),
		var(--gc-card);
	box-shadow: var(--gc-shadow);
}

.gc-catalog-hero__breadcrumbs {
	margin-bottom: 14px;
	color: var(--gc-muted);
	font-size: 13px;
	font-weight: 800;
}

.gc-catalog-hero__breadcrumbs .woocommerce-breadcrumb {
	margin: 0;
	color: var(--gc-muted);
}

.gc-catalog-hero__breadcrumbs a {
	color: var(--gc-accent);
}

.gc-catalog-hero__title {
	max-width: 760px;
	margin: 0;
	color: var(--gc-text);
	font-size: clamp(34px, 5vw, 56px);
	line-height: 1.04;
	letter-spacing: -.01em;
}

.gc-catalog-hero__text {
	max-width: 740px;
	margin: 18px 0 0;
	color: var(--gc-muted);
	font-size: 18px;
	line-height: 1.62;
}

.gc-catalog__layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.gc-catalog__sidebar {
	position: sticky;
	top: 96px;
}

.gc-catalog-filter-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 16px;
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius-button);
	background: #FFFFFF;
	color: var(--gc-text);
	box-shadow: var(--gc-shadow);
	font: inherit;
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
	transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.gc-catalog-filter-toggle:hover,
.gc-catalog-filter-toggle:focus-visible {
	border-color: var(--gc-border-hover);
	color: var(--gc-accent);
	transform: translateY(-1px);
}

.gc-filter-card {
	padding: 20px;
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius-card);
	background: var(--gc-card);
	box-shadow: var(--gc-shadow);
}

.gc-filter-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
}

.gc-filter-card__title {
	margin: 0;
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: -.01em;
}

.gc-filter-card__reset {
	color: var(--gc-accent);
	font-size: 13px;
	font-weight: 900;
}

.gc-filter-card__reset:hover,
.gc-filter-card__reset:focus-visible {
	color: var(--gc-accent-hover);
}

.gc-filter-group {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 18px 0;
	border-top: 1px solid var(--gc-border);
}

.gc-filter-title {
	color: var(--gc-text);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.gc-filter-input {
	width: 100%;
	min-height: 42px;
	padding: 10px 12px;
	border: 1px solid var(--gc-border);
	border-radius: 12px;
	background: var(--gc-bg);
	color: var(--gc-text);
	font: inherit;
	font-size: 14px;
	outline: 0;
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.gc-filter-input:focus {
	border-color: var(--gc-border-hover);
	background: var(--gc-card);
	box-shadow: 0 0 0 4px rgba(10, 124, 109, .08);
}

.gc-filter-price {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.gc-filter-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 14px;
	border: 0;
	border-radius: var(--gc-radius-button);
	background: var(--gc-accent);
	color: #FFFFFF;
	font-weight: 900;
	cursor: pointer;
	transition: background-color .2s ease, transform .2s ease;
}

.gc-filter-button:hover,
.gc-filter-button:focus-visible {
	background: var(--gc-accent-hover);
	transform: translateY(-1px);
}

.gc-filter-links,
.gc-filter-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gc-filter-link,
.gc-filter-chip {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 7px 10px;
	border: 1px solid var(--gc-border);
	border-radius: 999px;
	background: var(--gc-bg);
	color: var(--gc-muted);
	font-size: 13px;
	font-weight: 900;
}

.gc-filter-link:hover,
.gc-filter-link:focus-visible {
	border-color: var(--gc-border-hover);
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
}

.gc-filter-chip {
	cursor: default;
}

.gc-filter-card__plugin {
	padding-top: 18px;
	border-top: 1px solid var(--gc-border);
}

.wcf-filter {
	display: grid;
	gap: 18px;
	width: 100%;
	color: var(--gc-text);
	font-family: var(--gc-font);
}

.wcf-grid {
	display: grid;
	gap: 16px;
}

.wcf-field {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.wcf-label {
	display: block;
	color: var(--gc-text);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.wcf-tag-box {
	position: relative;
	min-width: 0;
}

.wcf-tag-search,
.wcf-dropdown,
.wcf-field input[type="text"],
.wcf-field input[type="search"],
.wcf-field input[type="number"],
.wcf-field select {
	width: 100%;
	min-height: 42px;
	padding: 10px 12px;
	border: 1px solid var(--gc-border);
	border-radius: 12px;
	background: var(--gc-bg);
	color: var(--gc-text);
	font: inherit;
	font-size: 14px;
	outline: 0;
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.wcf-tag-search::placeholder,
.wcf-field input::placeholder {
	color: #8A93A0;
}

.wcf-tag-search:focus,
.wcf-dropdown:focus,
.wcf-field input:focus,
.wcf-field select:focus {
	border-color: var(--gc-border-hover);
	background: var(--gc-card);
	box-shadow: 0 0 0 4px rgba(10, 124, 109, .08);
}

.wcf-tag-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	min-height: 42px;
	padding: 10px 12px;
	border: 1px solid var(--gc-border);
	border-radius: 12px;
	background: var(--gc-bg);
	color: var(--gc-text);
	font: inherit;
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
}

.wcf-tag-toggle:hover,
.wcf-tag-toggle:focus-visible {
	border-color: var(--gc-border-hover);
	color: var(--gc-accent);
}

.wcf-quick-block {
	display: grid;
	gap: 10px;
}

.wcf-quick-list,
.wcf-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	min-width: 0;
}

.wcf-quick-chip,
.wcf-chip,
.wcf-sort-chip,
.wcf-summary-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	max-width: 100%;
	padding: 7px 10px;
	border: 1px solid var(--gc-border);
	border-radius: 999px;
	background: var(--gc-bg);
	color: var(--gc-muted);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	white-space: normal;
	cursor: pointer;
	transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.wcf-quick-chip:hover,
.wcf-quick-chip:focus-visible,
.wcf-chip:hover,
.wcf-chip:focus-visible,
.wcf-sort-chip:hover,
.wcf-sort-chip:focus-visible,
.wcf-summary-chip:hover,
.wcf-summary-chip:focus-visible {
	border-color: var(--gc-border-hover);
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	transform: translateY(-1px);
}

.wcf-quick-chip.is-active,
.wcf-chip.is-active,
.wcf-sort-chip.is-active,
.wcf-option.is-active,
.wcf-quick-chip.active,
.wcf-chip.active,
.wcf-sort-chip.active,
.wcf-option.active {
	border-color: var(--gc-border-hover);
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
}

.wcf-dropdown {
	position: absolute;
	z-index: 40;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	display: grid;
	gap: 4px;
	max-height: min(360px, 55vh);
	padding: 8px;
	overflow: auto;
	box-shadow: var(--gc-shadow-hover);
}

.wcf-option {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 8px 10px;
	border-radius: 10px;
	color: var(--gc-text);
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}

.wcf-option:hover,
.wcf-option:focus-visible {
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
}

.wcf-price-row,
.wcf-sort-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.wcf-sort-row {
	grid-template-columns: 1fr;
}

.wcf-actions {
	display: grid;
	gap: 10px;
	padding-top: 4px;
}

.wcf-submit,
.wcf-reset-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	width: 100%;
	padding: 11px 14px;
	border-radius: var(--gc-radius-button);
	font: inherit;
	font-size: 14px;
	font-weight: 900;
	text-align: center;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.wcf-submit {
	border: 1px solid var(--gc-accent);
	background: var(--gc-accent);
	color: #FFFFFF;
}

.wcf-submit:hover,
.wcf-submit:focus-visible {
	background: var(--gc-accent-hover);
	border-color: var(--gc-accent-hover);
	transform: translateY(-1px);
}

.wcf-reset-btn {
	border: 1px solid var(--gc-border);
	background: var(--gc-card);
	color: var(--gc-text);
	text-decoration: none;
}

.wcf-reset-btn:hover,
.wcf-reset-btn:focus-visible {
	border-color: var(--gc-border-hover);
	color: var(--gc-accent);
	transform: translateY(-1px);
}

.wcf-active-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 10px;
	border: 1px solid var(--gc-border);
	border-radius: 14px;
	background: var(--gc-bg);
}

.gc-catalog__content {
	min-width: 0;
}

.gc-catalog__topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
	padding: 14px 16px;
	border: 1px solid var(--gc-border);
	border-radius: 18px;
	background: var(--gc-card);
	box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
}

.gc-catalog__count,
.gc-catalog__count .woocommerce-result-count {
	margin: 0;
	color: var(--gc-muted);
	font-size: 14px;
	font-weight: 800;
}

.gc-catalog__ordering {
	display: flex;
	justify-content: flex-end;
}

.gc-catalog__ordering .woocommerce-ordering {
	margin: 0;
}

.gc-catalog__ordering select {
	min-height: 42px;
	padding: 9px 38px 9px 12px;
	border: 1px solid var(--gc-border);
	border-radius: 12px;
	background: var(--gc-bg);
	color: var(--gc-text);
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	outline: 0;
}

.gc-catalog__ordering select:focus {
	border-color: var(--gc-border-hover);
	box-shadow: 0 0 0 4px rgba(10, 124, 109, .08);
}

.gc-catalog-active {
	display: grid;
	gap: 10px;
	margin-bottom: 18px;
	padding: 14px 16px;
	border: 1px solid var(--gc-border);
	border-radius: 18px;
	background: #FFFFFF;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
}

.gc-catalog-active__label {
	color: var(--gc-muted);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.gc-catalog-active__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.gc-catalog-active__chip,
.gc-catalog-active__reset {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 7px 10px;
	border: 1px solid var(--gc-border-hover);
	border-radius: 999px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
}

.gc-catalog-active__reset {
	background: #FFFFFF;
	color: var(--gc-text);
}

.gc-catalog-active__reset:hover,
.gc-catalog-active__reset:focus-visible {
	border-color: var(--gc-accent);
	color: var(--gc-accent);
}

.gc-catalog-term-filter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.gc-catalog-term-filter > div {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.gc-catalog-term-filter__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-height: 34px;
	padding: 8px 12px;
	border-radius: 999px;
	background: #F8FAFB;
	color: var(--gc-muted);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
	white-space: nowrap;
}

.gc-catalog-search,
.gc-catalog-filter {
	display: grid;
	padding: 20px;
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius-card);
	background: #FFFFFF;
	color: var(--gc-text);
	box-shadow: var(--gc-shadow);
}

.gc-catalog-search {
	gap: 10px;
	margin-bottom: 14px;
}

.gc-catalog-filter {
	gap: 0;
}

.gc-catalog-filter__group {
	display: grid;
	gap: 10px;
	padding: 18px 0;
	border-top: 1px solid var(--gc-border);
}

.gc-catalog-filter__group:first-child {
	padding-top: 0;
	border-top: 0;
}

.gc-catalog-filter__title {
	display: block;
	color: var(--gc-text);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.gc-catalog-filter__input,
.gc-catalog-filter__tank-search {
	width: 100%;
	min-height: 42px;
	padding: 10px 12px;
	border: 1px solid var(--gc-border);
	border-radius: 12px;
	background: var(--gc-bg);
	color: var(--gc-text);
	font: inherit;
	font-size: 14px;
	outline: 0;
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.gc-catalog-filter__input::placeholder,
.gc-catalog-filter__tank-search::placeholder {
	color: #8A93A0;
}

.gc-catalog-filter__input:focus,
.gc-catalog-filter__tank-search:focus {
	border-color: var(--gc-border-hover);
	background: #FFFFFF;
	box-shadow: 0 0 0 4px rgba(10, 124, 109, .08);
}

.gc-catalog-filter__price-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.gc-catalog-filter__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	min-width: 0;
}

.gc-catalog-filter__chip,
.gc-catalog-filter__tank-option {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	border: 1px solid var(--gc-border);
	background: var(--gc-bg);
	color: var(--gc-muted);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.25;
	cursor: pointer;
	transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.gc-catalog-filter__chip {
	min-height: 34px;
	padding: 7px 10px;
	border-radius: 999px;
}

.gc-catalog-filter__tank-option {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	min-height: 34px;
	padding: 8px 10px;
	border-radius: 10px;
	color: var(--gc-text);
	font-size: 13px;
	font-weight: 700;
}

.gc-catalog-filter__chip:hover,
.gc-catalog-filter__chip:focus-within,
.gc-catalog-filter__tank-option:hover,
.gc-catalog-filter__tank-option:focus-within {
	border-color: var(--gc-border-hover);
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
}

.gc-catalog-filter__chip input,
.gc-catalog-filter__tank-option input {
	width: 15px;
	height: 15px;
	margin: 0;
	accent-color: var(--gc-accent);
	flex: 0 0 auto;
}

.gc-catalog-filter__chip:has(input:checked),
.gc-catalog-filter__tank-option:has(input:checked) {
	border-color: var(--gc-border-hover);
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
}

.gc-catalog-filter__tank-box {
	position: relative;
	min-width: 0;
}

.gc-catalog-filter__tank-list {
	display: block;
	max-height: 280px;
	overflow-y: auto;
	overflow-x: hidden;
	margin-top: 10px;
	padding: 8px;
	border: 1px solid var(--gc-border);
	border-radius: 14px;
	background: #FFFFFF;
	scrollbar-color: var(--gc-border-hover) transparent;
}

.gc-catalog-filter__tank-option + .gc-catalog-filter__tank-option {
	margin-top: 4px;
}

.gc-catalog-filter__tank-option.is-selected {
	border-color: var(--gc-border-hover);
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	font-weight: 900;
}

.gc-catalog-filter__tank-option.is-hidden {
	display: none !important;
}

.gc-catalog-filter__tank-list::-webkit-scrollbar {
	width: 8px;
}

.gc-catalog-filter__tank-list::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: var(--gc-border-hover);
}

.gc-catalog-filter__tank-empty {
	margin-top: 10px;
	padding: 10px 12px;
	border-radius: 12px;
	background: var(--gc-bg);
	color: var(--gc-muted);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}

.gc-catalog-filter__tank-empty[hidden] {
	display: none !important;
}

.gc-catalog-filter__actions {
	display: grid;
	gap: 10px;
	padding-top: 18px;
	border-top: 1px solid var(--gc-border);
}

.gc-catalog-filter__submit,
.gc-catalog-filter__reset {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	padding: 11px 14px;
	border-radius: var(--gc-radius-button);
	font: inherit;
	font-size: 14px;
	font-weight: 900;
	text-align: center;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.gc-catalog-filter__submit {
	border: 1px solid var(--gc-accent);
	background: var(--gc-accent);
	color: #FFFFFF;
}

.gc-catalog-filter__submit:hover,
.gc-catalog-filter__submit:focus-visible {
	background: var(--gc-accent-hover);
	border-color: var(--gc-accent-hover);
	transform: translateY(-1px);
}

.gc-catalog-filter__reset {
	border: 1px solid var(--gc-border);
	background: #FFFFFF;
	color: var(--gc-text);
	text-decoration: none;
}

.gc-catalog-filter__reset:hover,
.gc-catalog-filter__reset:focus-visible {
	border-color: var(--gc-border-hover);
	color: var(--gc-accent);
	transform: translateY(-1px);
}

.gc-product-grid ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

.gc-product-grid ul.products::before,
.gc-product-grid ul.products::after {
	display: none !important;
	content: none !important;
}

.gc-product-grid ul.products > * {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	min-width: 0;
}

.gc-single-product {
	padding: 34px 0 72px;
	background: var(--gc-bg);
	color: var(--gc-text);
}

.gc-single-product__wrap {
	width: min(100% - 32px, 1320px);
	margin-inline: auto;
}

.gc-single-breadcrumbs {
	margin: 0 0 20px;
	color: #5B6472;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
}

.gc-single-breadcrumbs__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	line-height: 1.45;
}

.gc-single-breadcrumbs a {
	color: #5B6472;
	font-weight: 500;
	text-decoration: none;
	transition: color .2s ease;
}

.gc-single-breadcrumbs a:hover,
.gc-single-breadcrumbs a:focus-visible {
	color: var(--gc-accent);
}

.gc-single-breadcrumbs__sep {
	color: #9AA3AF;
	margin: 0 8px;
	font-weight: 500;
}

.gc-single-breadcrumbs .breadcrumb_last {
	color: var(--gc-text);
	font-weight: 600;
}

.gc-single-product__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
	gap: 28px;
	align-items: stretch;
	margin-bottom: 28px;
}

.gc-single-product__gallery,
.gc-single-product__summary,
.gc-single-stats,
.gc-single-description,
.gc-single-tanks,
.gc-single-terms {
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius-section);
	background: #FFFFFF;
	box-shadow: var(--gc-shadow);
}

.gc-single-product__gallery {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	height: 100%;
	padding: 24px;
}

.gc-single-product__image {
	display: grid;
	place-items: center;
	aspect-ratio: 1.72 / 1;
	overflow: hidden;
	border-radius: 20px;
	background: var(--gc-accent-soft);
}

.gc-single-product__image-button {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.gc-single-product__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-single-product__placeholder {
	color: var(--gc-accent);
	font-size: 22px;
	font-weight: 900;
}

.gc-single-product__thumbs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	margin-top: 14px;
}

.gc-single-product__thumb {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 14px;
	background: var(--gc-bg);
	cursor: pointer;
	transition: border-color .2s ease, transform .2s ease;
}

.gc-single-product__thumb:hover,
.gc-single-product__thumb:focus-visible,
.gc-single-product__thumb.is-active {
	border-color: var(--gc-accent);
	transform: translateY(-1px);
}

.gc-single-product__thumb:focus-visible {
	outline: 3px solid rgba(10, 124, 109, .18);
	outline-offset: 2px;
}

.gc-single-product__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-single-gallery-info {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 10px;
	margin-top: 14px;
}

.gc-single-gallery-info__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	min-width: 0;
	min-height: 78px;
	padding: 12px;
	border: 1px solid var(--gc-border);
	border-radius: 18px;
	background: #FFFFFF;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.gc-single-gallery-info__item:hover {
	border-color: var(--gc-border-hover);
	background: var(--gc-accent-soft);
	transform: translateY(-1px);
}

.gc-single-gallery-info__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
}

.gc-single-gallery-info__item strong {
	display: block;
	margin: 0;
	color: var(--gc-text);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.25;
}

.gc-single-gallery-info__item p {
	margin: 4px 0 0;
	color: var(--gc-muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}

.gc-single-product__summary {
	display: flex;
	flex-direction: column;
	gap: 18px;
	box-sizing: border-box;
	height: 100%;
	padding: clamp(22px, 3vw, 32px);
}

.gc-single-product__title {
	margin: 0;
	color: var(--gc-text);
	font-size: clamp(34px, 3vw, 38px);
	line-height: 1.08;
	letter-spacing: -.01em;
}

.gc-single-product__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gc-single-product__badge {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 7px 10px;
	border: 1px solid var(--gc-border-hover);
	border-radius: 999px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
}

.gc-single-product__badge--xi {
	border-color: var(--gc-accent);
	background: var(--gc-accent);
	color: #FFFFFF;
	box-shadow: 0 6px 16px rgba(10, 124, 109, .18);
}

.gc-single-product__price {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding: 16px;
	border: 1px solid var(--gc-border);
	border-radius: 18px;
	background: var(--gc-bg);
}

.gc-single-product__current-price {
	color: var(--gc-accent);
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
}

.gc-single-product__old-price {
	color: var(--gc-muted);
	font-size: 16px;
	font-weight: 800;
	text-decoration: line-through;
}

.gc-single-product__discount {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 6px 9px;
	border-radius: 999px;
	background: var(--gc-accent);
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 900;
}

.gc-single-product__buy form.cart {
	display: grid;
	gap: 12px;
	margin: 0;
}

.gc-single-product__buy .quantity {
	display: flex;
}

.gc-single-product__buy .quantity input {
	width: 92px;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid var(--gc-border);
	border-radius: 12px;
	background: #FFFFFF;
	color: var(--gc-text);
	font: inherit;
	font-weight: 800;
}

.gc-single-product__buy .single_add_to_cart_button,
.gc-single-product__buy button.single_add_to_cart_button,
.gc-single-product__buy .button,
.gc-single-product__buy button.button,
.gc-single-product__buy button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	padding: 13px 18px;
	border: 0 !important;
	border-radius: 14px !important;
	background: #0A7C6D !important;
	color: #FFFFFF !important;
	box-shadow: 0 10px 24px rgba(10, 124, 109, .18);
	font: inherit;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.gc-single-product__buy .single_add_to_cart_button:hover,
.gc-single-product__buy .single_add_to_cart_button:focus-visible,
.gc-single-product__buy button.single_add_to_cart_button:hover,
.gc-single-product__buy button.single_add_to_cart_button:focus-visible,
.gc-single-product__buy .button:hover,
.gc-single-product__buy .button:focus-visible,
.gc-single-product__buy button.button:hover,
.gc-single-product__buy button.button:focus-visible,
.gc-single-product__buy button:hover,
.gc-single-product__buy button:focus-visible {
	background: #08695D !important;
	transform: translateY(-1px);
}

.gc-single-product__trust {
	display: grid;
	gap: 8px;
	margin-top: 18px;
	padding: 14px;
	border-radius: 18px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	font-size: 14px;
	font-weight: 800;
}

.gc-single-product__trust span {
	position: relative;
	padding-left: 18px;
}

.gc-single-product__trust span::before {
	content: "";
	position: absolute;
	left: 0;
	top: .55em;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--gc-accent);
}

.gc-single-stats,
.gc-single-description,
.gc-single-tanks,
.gc-single-terms {
	margin-top: 22px;
	padding: clamp(22px, 3vw, 30px);
}

.gc-single-stats h2,
.gc-single-description h2,
.gc-single-tanks h2,
.gc-single-terms h2 {
	margin: 0 0 18px;
	color: var(--gc-text);
	font-size: 26px;
	line-height: 1.2;
	letter-spacing: -.01em;
}

.gc-single-stats__grid,
.gc-single-terms__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.gc-single-stats__card,
.gc-single-terms__card {
	padding: 16px;
	border: 1px solid var(--gc-border);
	border-radius: 18px;
	background: var(--gc-bg);
}

.gc-single-stats__card {
	display: grid;
	gap: 6px;
}

.gc-single-stats__card span {
	color: var(--gc-muted);
	font-size: 13px;
	font-weight: 800;
}

.gc-single-stats__card strong {
	color: var(--gc-text);
	font-size: 20px;
	font-weight: 900;
	line-height: 1.2;
}

.gc-single-description__content,
.gc-single-tanks,
.gc-single-terms__card {
	color: var(--gc-muted);
	font-size: 16px;
	line-height: 1.7;
}

.gc-single-description__content p:first-child,
.gc-single-tanks p:first-child {
	margin-top: 0;
}

.gc-single-description__content p:last-child,
.gc-single-tanks p:last-child {
	margin-bottom: 0;
}

.gc-single-tanks__content {
	min-width: 0;
}

.gc-tank-group {
	overflow: hidden;
	border: 1px solid var(--gc-border);
	border-radius: 18px;
	background: #FFFFFF;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
}

.gc-tank-group + .gc-tank-group {
	margin-top: 12px;
}

.gc-tank-group__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	min-height: 58px;
	padding: 14px 16px;
	border: 0;
	background: #FFFFFF;
	color: var(--gc-text);
	font: inherit;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}

.gc-tank-group__head:hover,
.gc-tank-group__head:focus-visible {
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
}

.gc-tank-group__title {
	font-size: 16px;
	font-weight: 900;
	line-height: 1.25;
}

.gc-tank-group__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	min-height: 28px;
	padding: 4px 9px;
	border: 1px solid var(--gc-border-hover);
	border-radius: 999px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	font-size: 13px;
	font-weight: 900;
}

.gc-tank-group__body {
	padding: 0 16px 16px;
}

.gc-tank-group__body[hidden] {
	display: none !important;
}

.gc-tank-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.gc-tank-card {
	position: relative;
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-width: 0;
	min-height: 82px;
	padding: 12px;
	border: 1px solid var(--gc-border);
	border-radius: 16px;
	background: #FFFFFF;
	color: var(--gc-text);
	transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.gc-tank-card:hover {
	border-color: var(--gc-border-hover);
	background: var(--gc-accent-soft);
	transform: translateY(-1px);
}

.gc-tank-card__image {
	display: grid;
	place-items: center;
	width: 72px;
	height: 52px;
	border-radius: 12px;
	background: var(--gc-bg);
	color: var(--gc-accent);
	font-size: 13px;
	font-weight: 900;
}

.gc-tank-card__image img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.gc-tank-card__name {
	overflow: hidden;
	color: var(--gc-text);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gc-tank-card__tag {
	position: absolute;
	right: 10px;
	bottom: 9px;
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 4px 8px;
	border: 1px solid var(--gc-border-hover);
	border-radius: 999px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
}

.gc-single-tanks__empty {
	margin: 0;
	padding: 18px;
	border: 1px solid var(--gc-border);
	border-radius: 18px;
	background: var(--gc-bg);
	color: var(--gc-muted);
	font-weight: 800;
}

body.is-lightbox-open {
	overflow: hidden;
}

.gc-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.gc-lightbox.is-open {
	display: flex;
}

.gc-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, .82);
}

.gc-lightbox__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	max-width: min(92vw, 1200px);
	max-height: 86vh;
}

.gc-lightbox__image {
	display: block;
	max-width: min(92vw, 1200px);
	max-height: 86vh;
	border-radius: 18px;
	background: #FFFFFF;
	object-fit: contain;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.gc-lightbox__close,
.gc-lightbox__nav {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 999px;
	background: rgba(255, 255, 255, .92);
	color: #0F172A;
	font: inherit;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
	transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.gc-lightbox__close:hover,
.gc-lightbox__nav:hover,
.gc-lightbox__close:focus-visible,
.gc-lightbox__nav:focus-visible {
	background: #FFFFFF;
	color: var(--gc-accent);
	box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
}

.gc-lightbox__close:focus-visible,
.gc-lightbox__nav:focus-visible {
	outline: 2px solid rgba(10, 124, 109, .35);
	outline-offset: 3px;
}

.gc-lightbox__close:hover {
	transform: none !important;
}

.gc-lightbox__nav:hover,
.gc-lightbox__nav:focus-visible {
	transform: translateY(-50%) !important;
}

.gc-lightbox__close {
	top: 14px;
	right: 14px;
}

.gc-lightbox__nav--prev {
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
}

.gc-lightbox__nav--next {
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
}

.gc-single-tanks .wot-acc-wrap {
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: var(--gc-text) !important;
	box-shadow: none !important;
}

.gc-single-tanks .wot-acc-head,
.gc-single-tanks .wot-acc-titlebar,
.gc-single-tanks .wot-acc-summary,
.gc-single-tanks .wot-acc-body {
	border-color: var(--gc-border) !important;
	background: #FFFFFF !important;
	color: var(--gc-text) !important;
}

.gc-single-tanks .wot-acc-head,
.gc-single-tanks .wot-acc-summary {
	border: 1px solid var(--gc-border) !important;
	border-radius: 18px !important;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .035) !important;
}

.gc-single-tanks .wot-acc-titlebar,
.gc-single-tanks .wot-acc-summary-left {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	gap: 10px !important;
}

.gc-single-tanks .wot-acc-sub {
	color: var(--gc-muted) !important;
}

.gc-single-tanks .wot-acc-list {
	display: grid !important;
	gap: 14px !important;
}

.gc-single-tanks .wot-acc-item {
	overflow: hidden !important;
	border: 1px solid var(--gc-border) !important;
	border-radius: 20px !important;
	background: #FFFFFF !important;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .035) !important;
}

.gc-single-tanks .wot-acc-badge {
	border-color: var(--gc-border-hover) !important;
	background: var(--gc-accent-soft) !important;
	color: var(--gc-accent) !important;
}

.gc-single-tanks .wot-acc-name {
	color: var(--gc-text) !important;
	font-weight: 900 !important;
}

.gc-single-tanks .wot-acc-count {
	color: var(--gc-muted) !important;
	font-weight: 800 !important;
}

.gc-single-tanks .wot-acc-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 10px !important;
}

.gc-single-tanks .wot-tank-chip {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	min-width: 0 !important;
	padding: 10px !important;
	border: 1px solid var(--gc-border) !important;
	border-radius: 14px !important;
	background: #FFFFFF !important;
	color: var(--gc-text) !important;
	box-shadow: none !important;
	transition: border-color .2s ease, background-color .2s ease, transform .2s ease !important;
}

.gc-single-tanks .wot-tank-chip:hover,
.gc-single-tanks .wot-tank-chip:focus-within {
	border-color: var(--gc-border-hover) !important;
	background: var(--gc-accent-soft) !important;
	transform: translateY(-1px) !important;
}

.gc-single-tanks .wot-tank-ico {
	display: grid !important;
	place-items: center !important;
	flex: 0 0 42px !important;
	width: 42px !important;
	height: 42px !important;
	border-radius: 12px !important;
	background: var(--gc-bg) !important;
}

.gc-single-tanks .wot-tank-ico img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
}

.gc-single-tanks .wot-tank-name {
	overflow: hidden !important;
	color: var(--gc-text) !important;
	font-weight: 900 !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.gc-single-tanks .wot-tank-tag {
	display: inline-flex !important;
	align-items: center !important;
	width: fit-content !important;
	padding: 4px 7px !important;
	border: 1px solid var(--gc-border-hover) !important;
	border-radius: 999px !important;
	background: var(--gc-accent-soft) !important;
	color: var(--gc-accent) !important;
	font-size: 11px !important;
	font-weight: 800 !important;
}

.gc-catalog .woocommerce-info,
.gc-catalog .woocommerce-no-products-found {
	padding: 22px;
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius-card);
	background: var(--gc-card);
	color: var(--gc-muted);
	box-shadow: var(--gc-shadow);
}

.gc-catalog .woocommerce-pagination {
	margin-top: 28px;
}

.gc-catalog .woocommerce-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
}

.gc-catalog .woocommerce-pagination ul li {
	margin: 0;
	border: 0;
}

.gc-catalog .woocommerce-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 9px 13px;
	border: 1px solid var(--gc-border);
	border-radius: 12px;
	background: var(--gc-card);
	color: var(--gc-text);
	font-weight: 900;
	transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.gc-catalog .woocommerce-pagination .page-numbers.current,
.gc-catalog .woocommerce-pagination .page-numbers:hover,
.gc-catalog .woocommerce-pagination .page-numbers:focus-visible {
	border-color: var(--gc-border-hover);
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
}

.gc-process {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.gc-process__item {
	position: relative;
	padding: 24px;
	min-height: 226px;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.gc-process__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50px;
	right: -13px;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--gc-border-hover);
	box-shadow: 12px 0 0 rgba(157, 210, 200, .5);
}

.gc-process__item:hover {
	border-color: var(--gc-border-hover);
	transform: translateY(-4px);
	box-shadow: var(--gc-shadow-hover);
}

.gc-process__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
}

.gc-process__number {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	font-size: 15px;
	font-weight: 900;
}

.gc-process__title {
	margin: 0;
	font-size: 20px;
	letter-spacing: -.01em;
}

.gc-process__text {
	margin: 10px 0 0;
	color: var(--gc-muted);
}

.gc-faq {
	display: grid;
	gap: 12px;
	max-width: 900px;
	margin-inline: auto;
}

.gc-faq__item {
	padding: 0 22px;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.gc-faq__item[open] {
	border-color: var(--gc-border-hover);
	box-shadow: var(--gc-shadow);
}

.gc-faq__question {
	position: relative;
	cursor: pointer;
	padding: 20px 34px 20px 0;
	font-weight: 900;
	list-style: none;
}

.gc-faq__question::-webkit-details-marker {
	display: none;
}

.gc-faq__question::before,
.gc-faq__question::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 14px;
	height: 2px;
	border-radius: 999px;
	background: var(--gc-accent);
}

.gc-faq__question::after {
	transform: rotate(90deg);
	transition: transform .2s ease;
}

.gc-faq__item[open] .gc-faq__question::after {
	transform: rotate(0deg);
}

.gc-faq__answer {
	padding: 0 0 20px;
	color: var(--gc-muted);
}

.gc-faq__answer p {
	margin: 0;
}

.gc-trust {
	padding: 38px 0 64px;
}

.gc-trust__inner {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 24px;
	align-items: center;
	padding: 32px;
	background:
		linear-gradient(135deg, #FFFFFF, var(--gc-accent-soft));
}

.gc-trust__title {
	margin: 0;
	font-size: clamp(30px, 3.3vw, 42px);
	line-height: 1.1;
	letter-spacing: -.01em;
}

.gc-trust__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.gc-trust__card {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 110px;
	margin: 0;
	padding: 18px;
	border: 1px solid var(--gc-border-hover);
	border-radius: 18px;
	background: rgba(255, 255, 255, .78);
	color: var(--gc-text);
	font-weight: 900;
}

.gc-trust__card p {
	margin: 0;
}

.gc-empty {
	padding: 28px;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
}

.gc-empty__title {
	margin: 0 0 8px;
	font-size: 22px;
}

.gc-empty__text {
	margin: 0;
	color: var(--gc-muted);
}

.gc-posts {
	display: grid;
	gap: 18px;
}

.gc-post {
	padding: 26px;
}

.gc-post__title {
	margin: 0 0 12px;
	font-size: 28px;
}

.gc-post__link:hover,
.gc-post__link:focus-visible {
	color: var(--gc-accent);
}

.gc-post__excerpt {
	color: var(--gc-muted);
}

.gc-post__excerpt p {
	margin: 0;
}

.gc-pagination {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 28px;
}

.gc-pagination__link,
.gc-pagination__current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 14px;
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius-button);
	background: var(--gc-card);
	font-weight: 800;
}

.gc-pagination__link:hover,
.gc-pagination__link:focus-visible {
	border-color: var(--gc-border-hover);
	color: var(--gc-accent);
}

.gc-pagination__current {
	color: var(--gc-muted);
}

.gc-page {
	padding: 44px 0 70px;
	background: var(--gc-bg);
}

.gc-page__wrap {
	width: min(100% - 32px, 960px);
	margin-inline: auto;
}

.gc-page__card {
	padding: 48px;
	background: #FFFFFF;
	border: 1px solid #E4E8EC;
	border-radius: 24px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}

.gc-page__title {
	margin: 0 0 30px;
	color: #0F172A;
	font-size: clamp(36px, 5vw, 52px);
	line-height: 1.08;
	letter-spacing: -.01em;
}

.gc-page__content {
	color: #0F172A;
	font-size: 17px;
	line-height: 1.7;
}

.gc-page__content h2 {
	margin: 36px 0 14px;
	color: #0F172A;
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.18;
	letter-spacing: -.01em;
}

.gc-page__content h3 {
	margin: 28px 0 12px;
	color: #0F172A;
	font-size: 22px;
	line-height: 1.25;
}

.gc-page__content p {
	margin: 0 0 18px;
	color: #5B6472;
}

.gc-page__content ul {
	margin: 0 0 22px;
	padding-left: 22px;
	color: #5B6472;
}

.gc-page__content li {
	margin: 8px 0;
	padding-left: 4px;
}

.gc-page__content a {
	color: #0A7C6D;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.gc-page__content a:hover,
.gc-page__content a:focus-visible {
	color: #08695D;
}


.gc-footer {
	padding: 44px 0 26px;
	border-top: 1px solid var(--gc-border);
	background: #FFFFFF;
}

.gc-footer__grid {
	display: grid;
	grid-template-columns: minmax(240px, 1.25fr) repeat(4, minmax(140px, 1fr));
	gap: 28px;
}

.gc-footer__logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 900;
}

.gc-footer__logo-mark {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: var(--gc-accent);
	color: #FFFFFF;
}

.gc-footer__text {
	max-width: 340px;
	margin: 14px 0 0;
	color: var(--gc-muted);
}

.gc-footer__col {
	display: grid;
	align-content: start;
	gap: 10px;
}

.gc-footer__title {
	margin: 0 0 4px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.gc-footer__link,
.gc-footer__muted {
	color: var(--gc-muted);
	font-size: 14px;
	font-weight: 700;
}

.gc-footer__link:hover,
.gc-footer__link:focus-visible {
	color: var(--gc-accent);
}

.gc-footer__payments {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gc-footer__payment {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 6px 10px;
	border: 1px solid var(--gc-border);
	border-radius: 999px;
	background: var(--gc-bg);
	color: var(--gc-text);
	font-size: 12px;
	font-weight: 900;
}

.gc-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 34px;
	padding-top: 20px;
	border-top: 1px solid var(--gc-border);
	color: var(--gc-muted);
	font-size: 13px;
}

@media (max-width: 1180px) {
	.gc-header__toggle {
		display: block;
	}

	.gc-header__panel {
		position: absolute;
		top: calc(100% + 8px);
		left: 16px;
		right: 16px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 16px;
		background: var(--gc-card);
		border: 1px solid var(--gc-border);
		border-radius: 22px;
		box-shadow: var(--gc-shadow-hover);
	}

	.gc-header__panel.gc-is-open {
		display: flex;
	}

	.gc-nav,
	.gc-header__actions {
		justify-content: center;
	}

	.gc-search {
		width: 100%;
		min-width: 0;
	}

	.gc-hero__grid,
	.gc-catalog__layout,
	.gc-single-product__hero,
	.gc-trust__inner {
		grid-template-columns: 1fr;
	}

	.gc-single-gallery-info {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gc-catalog__sidebar {
		position: static;
	}

	.gc-hero__title {
		font-size: 46px;
	}

	.gc-tier-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gc-products,
	.gc-product-grid ul.products,
	.gc-process,
	.gc-single-stats__grid,
	.gc-single-terms__grid,
	.gc-trust__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-single-tanks .wot-acc-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	.gc-tank-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gc-process__item:not(:last-child)::after {
		display: none;
	}

	.gc-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}

@media (max-width: 760px) {
	.gc-container {
		width: min(100% - 24px, 1320px);
	}

	.gc-header {
		padding: 8px 0;
	}

	.gc-header__inner {
		min-height: 52px;
	}

	.gc-logo__mark {
		width: 36px;
		height: 36px;
		border-radius: 12px;
	}

	.gc-logo__text {
		font-size: 16px;
	}

	.gc-nav,
	.gc-header__actions,
	.gc-hero__actions,
	.gc-footer__bottom {
		flex-direction: column;
		align-items: stretch;
	}

	.gc-nav__link,
	.gc-button {
		width: 100%;
		text-align: center;
	}

	.gc-mini-cart {
		justify-content: center;
		width: 100%;
		padding-left: 13px;
	}

	.gc-mini-cart__icon {
		position: relative;
		left: auto;
	}

	.gc-hero {
		padding-top: 18px;
	}

	.gc-catalog {
		padding: 24px 0 48px;
	}

	.gc-catalog__wrap {
		width: min(100% - 24px, 1320px);
	}

	.gc-single-product {
		padding: 24px 0 48px;
	}

	.gc-single-product__wrap {
		width: min(100% - 24px, 1320px);
	}

	.gc-single-breadcrumbs {
		margin-bottom: 14px;
		font-size: 12px;
	}

	.gc-single-product__gallery {
		padding: 12px;
	}

	.gc-single-product__image {
		aspect-ratio: 16 / 11;
		border-radius: 18px;
	}

	.gc-single-product__thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 8px;
	}

	.gc-single-gallery-info {
		grid-template-columns: 1fr;
		margin-top: 12px;
	}

	.gc-single-gallery-info__item {
		padding: 12px;
	}

	.gc-single-product__title {
		font-size: 28px;
	}

	.gc-single-product__current-price {
		font-size: 26px;
	}

	.gc-single-product__buy .quantity,
	.gc-single-product__buy .quantity input,
	.gc-single-product__buy .single_add_to_cart_button {
		width: 100%;
	}

	.gc-single-stats__grid,
	.gc-single-terms__grid {
		grid-template-columns: 1fr;
	}

	.gc-single-tanks .wot-acc-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.gc-tank-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-tank-card {
		grid-template-columns: 58px minmax(0, 1fr);
		min-height: 74px;
	}

	.gc-tank-card__image {
		width: 58px;
		height: 44px;
	}

	.gc-lightbox {
		padding: 16px;
	}

	.gc-lightbox__close {
		top: 10px;
		right: 10px;
		width: 38px;
		height: 38px;
		font-size: 23px;
	}

	.gc-lightbox__nav {
		width: 38px;
		height: 38px;
		background: rgba(255, 255, 255, .86);
		font-size: 23px;
	}

	.gc-lightbox__nav--prev {
		left: 10px;
	}

	.gc-lightbox__nav--next {
		right: 10px;
	}

	.gc-single-tanks .wot-tank-chip {
		padding: 9px !important;
	}

	.gc-catalog-hero {
		padding: 24px;
		margin-bottom: 18px;
	}

	.gc-catalog-hero__title {
		font-size: 34px;
	}

	.gc-catalog-hero__text {
		font-size: 16px;
	}

	.gc-catalog__layout {
		gap: 18px;
	}

	.gc-catalog-filter-toggle {
		display: inline-flex;
		width: 100%;
	}

	.gc-catalog__sidebar {
		display: none;
	}

	.gc-catalog__sidebar.is-open {
		display: block;
	}

	.gc-catalog__topbar {
		display: grid;
		align-items: stretch;
	}

	.gc-catalog-term-filter {
		display: grid;
		align-items: stretch;
	}

	.gc-catalog-term-filter__count {
		justify-content: flex-start;
		width: 100%;
		white-space: normal;
	}

	.gc-catalog__ordering,
	.gc-catalog__ordering .woocommerce-ordering,
	.gc-catalog__ordering select {
		width: 100%;
	}

	.wcf-dropdown {
		position: relative;
		top: auto;
		max-height: 48vh;
	}

	.wcf-price-row,
	.wcf-sort-row {
		grid-template-columns: 1fr;
	}

	.gc-catalog-filter {
		padding: 18px;
	}

	.gc-catalog-filter__price-row {
		grid-template-columns: 1fr;
	}

	.gc-catalog-filter__tank-list {
		max-height: 240px;
	}

	.gc-hero__surface {
		padding: 12px;
		border-radius: 26px;
	}

	.gc-hero__content {
		min-height: auto;
		padding: 24px;
	}

	.gc-hero__title {
		font-size: 34px;
		line-height: 1.04;
	}

	.gc-hero__text {
		font-size: 16px;
	}

	.gc-hero__features,
	.gc-tier-grid,
	.gc-products,
	.gc-product-grid ul.products,
	.gc-process,
	.gc-trust__cards,
	.gc-footer__grid {
		grid-template-columns: 1fr;
	}

	.gc-hero-card {
		padding: 22px;
	}

	.gc-hero-card__item {
		grid-template-columns: 32px 34px 1fr;
		padding: 12px;
	}

	.gc-hero-card__number {
		width: 32px;
		height: 32px;
	}

	.gc-section {
		padding: 30px 0;
	}

	.gc-section__head--row {
		display: block;
	}

	.gc-section__action {
		margin-top: 18px;
	}

	.gc-section__title {
		font-size: 30px;
	}

	.gc-page {
		padding: 28px 0 48px;
	}

	.gc-page__wrap {
		width: min(100% - 24px, 960px);
	}

	.gc-page__card {
		padding: 24px;
	}

	.gc-page__title {
		font-size: 32px;
	}


	.gc-tier {
		min-height: 164px;
	}

	.gc-process__item {
		min-height: auto;
	}

	.gc-trust {
		padding-bottom: 48px;
	}

	.gc-trust__inner {
		padding: 24px;
	}

	.gc-footer__bottom {
		text-align: left;
	}
}

.gc-single-tanks__head {
	display: grid;
	grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
	gap: 14px;
	align-items: start;
	margin-bottom: 16px;
}

.gc-single-tanks__intro {
	min-width: 0;
}

.gc-single-tanks__subtitle {
	max-width: 560px;
	margin: -8px 0 0;
	color: var(--gc-muted);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.55;
}

.gc-tank-summary {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.gc-tank-summary__chip {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 6px 9px;
	border: 1px solid var(--gc-border);
	border-radius: 999px;
	background: #FFFFFF;
	color: var(--gc-text);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.15;
	white-space: nowrap;
	box-shadow: 0 8px 20px rgba(15, 23, 42, .035);
}

.gc-tank-summary__chip--xi {
	border-color: var(--gc-accent);
	background: var(--gc-accent);
	color: #FFFFFF;
	box-shadow: 0 10px 22px rgba(10, 124, 109, .18);
}

.gc-tank-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0 0 14px;
	padding: 7px;
	border: 1px solid var(--gc-border);
	border-radius: 18px;
	background: var(--gc-bg);
}

.gc-tank-filter__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: #FFFFFF;
	color: var(--gc-muted);
	font: inherit;
	font-size: 12px;
	font-weight: 900;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.gc-tank-filter__button:hover,
.gc-tank-filter__button:focus-visible,
.gc-tank-filter__button.is-active {
	border-color: var(--gc-border-hover);
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	box-shadow: 0 8px 18px rgba(10, 124, 109, .08);
}

.gc-tank-filter__button.is-active {
	transform: translateY(-1px);
}

.gc-tank-showcase {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.gc-tank-showcase__empty {
	margin: 14px 0 0;
	padding: 16px;
	border: 1px solid var(--gc-border);
	border-radius: 16px;
	background: var(--gc-bg);
	color: var(--gc-muted);
	font-weight: 800;
}

.gc-tank-showcase__empty[hidden],
.gc-tank-card[hidden],
.gc-tank-card.is-hidden {
	display: none !important;
}

.gc-tank-showcase .gc-tank-card {
	position: relative;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	min-height: 68px;
	padding: 10px 12px;
	overflow: visible;
	border: 1px solid var(--gc-border);
	border-radius: 18px;
	background: #FFFFFF;
	color: var(--gc-text);
	box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
	transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.gc-tank-showcase .gc-tank-card:hover,
.gc-tank-showcase .gc-tank-card:focus-within {
	border-color: var(--gc-border-hover);
	background: linear-gradient(180deg, #FFFFFF, var(--gc-accent-soft));
	box-shadow: 0 12px 28px rgba(15, 23, 42, .07);
	transform: translateY(-2px);
}

.gc-tank-showcase .gc-tank-card__image {
	display: grid;
	place-items: center;
	width: 64px;
	height: 44px;
	padding: 4px;
	border-radius: 12px;
	background: linear-gradient(135deg, #F8FAFB, var(--gc-accent-soft));
}

.gc-tank-showcase .gc-tank-card__image img {
	display: block;
	width: auto;
	height: auto;
	max-width: 58px;
	max-height: 38px;
	object-fit: contain;
}

.gc-tank-showcase .gc-tank-card__image span {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: #FFFFFF;
	color: var(--gc-accent);
	font-weight: 900;
	box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
}

.gc-tank-card__content {
	min-width: 0;
	padding-right: 0;
}

.gc-tank-showcase .gc-tank-card__name {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--gc-text);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.22;
	letter-spacing: 0;
	white-space: normal;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.gc-tank-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 4px;
}

.gc-tank-card__tier {
	margin: 0;
	color: var(--gc-muted);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.2;
}

.gc-tank-showcase .gc-tank-card__tag {
	position: static;
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 18px;
	margin: 0;
	padding: 3px 7px;
	border: 1px solid var(--gc-border-hover);
	border-radius: 999px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
	box-shadow: none;
}

@media (max-width: 1180px) {
	.gc-single-tanks__head {
		grid-template-columns: 1fr;
	}

	.gc-tank-summary {
		justify-content: flex-start;
	}

	.gc-tank-showcase {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.gc-single-tanks__head {
		gap: 14px;
	}

	.gc-tank-filters {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 10px;
	}

	.gc-tank-filter__button {
		flex: 0 0 auto;
	}

	.gc-tank-showcase {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.gc-tank-showcase .gc-tank-card {
		grid-template-columns: 58px minmax(0, 1fr);
		min-height: 66px;
		padding: 9px 10px;
	}

	.gc-tank-showcase .gc-tank-card__image {
		width: 58px;
		height: 40px;
	}

	.gc-tank-showcase .gc-tank-card__image img {
		max-width: 52px;
		max-height: 34px;
	}
}

@media (max-width: 420px) {
	.gc-tank-showcase {
		grid-template-columns: 1fr;
	}
}
/* GameCase Checkout Final Reference */
body.woocommerce-checkout,
body.woocommerce-checkout.gc-body,
.gc-checkout-page {
	background: #F6F8F9;
}

.gc-checkout-page > .gc-checkout-page__wrap > .gc-checkout-page__hero,
.gc-checkout-page > .gc-checkout-page__wrap > .gc-checkout-trust {
	display: none !important;
}

.gc-checkout-page__wrap {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.gc-checkout-page__content {
	margin: 0;
	padding: 0 16px 58px;
}

.gc-checkout-reference-hero,
.gc-checkout-layout,
.gc-checkout-support {
	width: 100%;
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.gc-checkout-reference-hero {
	margin-top: 42px;
	margin-bottom: 28px;
}

.gc-checkout-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 28px;
	color: #7A8492;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
}

.gc-checkout-breadcrumbs a {
	color: #7A8492;
	font-weight: 500;
	text-decoration: none;
}

.gc-checkout-breadcrumbs a:hover {
	color: #0A7C6D;
}

.gc-checkout-reference-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
	gap: 24px;
	align-items: center;
	padding: 34px 38px;
	border: 1px solid #E4E8EC;
	border-radius: 24px;
	background: #FFFFFF;
	box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}

.gc-checkout-reference-hero h1 {
	margin: 0;
	color: #0F172A;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: -.035em;
}

.gc-checkout-reference-hero p {
	margin: 14px 0 0;
	color: #5B6472;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
}

.gc-checkout-reference-hero__secure {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-width: 260px;
	padding: 18px 20px;
	border: 1px solid #9DD2C8;
	border-radius: 20px;
	background: #EAF6F3;
	color: #0A7C6D;
}

.gc-checkout-reference-hero__shield,
.gc-checkout-support__icon,
.gc-checkout-step,
.gc-checkout-benefit__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #EAF6F3;
	color: #0A7C6D;
	font-weight: 900;
}

.gc-checkout-reference-hero__shield {
	width: 44px;
	height: 44px;
	border: 1px solid #9DD2C8;
	box-shadow: 0 8px 18px rgba(10, 124, 109, .1);
}

.gc-checkout-reference-hero__secure strong,
.gc-checkout-reference-hero__secure small {
	display: block;
}

.gc-checkout-reference-hero__secure strong {
	font-size: 15px;
	font-weight: 900;
	line-height: 1.25;
}

.gc-checkout-reference-hero__secure small {
	margin-top: 3px;
	color: #5B6472;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}

.gc-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 590px) minmax(0, 560px);
	gap: 24px;
	align-items: start;
}

.gc-checkout-form {
	display: contents !important;
}

.gc-checkout-left {
	grid-column: 1;
	grid-row: 1;
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
	width: 100%;
}

.gc-checkout-coupon-area {
	grid-column: 1;
	grid-row: 2;
	min-width: 0;
	width: 100%;
}

.gc-checkout-right {
	grid-column: 2;
	grid-row: 1 / span 3;
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
	width: 100%;
}

@media (min-width: 901px) {
	.gc-checkout-right {
		position: sticky;
		top: 96px;
	}
}

.gc-checkout-page form.checkout,
.gc-checkout-page form.woocommerce-checkout {
	margin: 0 !important;
	padding: 0 !important;
}

.gc-checkout-page form.checkout > br,
.gc-checkout-page form.woocommerce-checkout > br {
	display: none !important;
}

.gc-checkout-card,
.gc-checkout-page #customer_details,
.gc-coupon-card,
.gc-order-summary-card,
.gc-payment-card,
.gc-confirm-card,
.gc-checkout-support {
	padding: 28px !important;
	border: 1px solid #E4E8EC !important;
	border-radius: 24px !important;
	background: #FFFFFF !important;
	box-shadow: 0 10px 30px rgba(15, 23, 42, .06) !important;
	box-sizing: border-box;
}

.gc-checkout-card__head,
.gc-payment-card__head,
.gc-confirm-card__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
}

.gc-checkout-step {
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	background: #0A7C6D;
	color: #FFFFFF;
	font-size: 15px;
	box-shadow: 0 8px 18px rgba(10, 124, 109, .18);
}

.gc-checkout-page h2,
.gc-checkout-page h3,
.gc-checkout-card h2,
.gc-order-summary-card__title,
.gc-payment-card h2,
.gc-confirm-card h2 {
	margin: 0 !important;
	color: #0F172A !important;
	font-size: 24px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	letter-spacing: -.01em;
}

.gc-payment-card__head p {
	margin: 5px 0 0;
	color: #5B6472;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
}

.gc-checkout-page #customer_details .woocommerce-billing-fields,
.gc-checkout-page #customer_details .woocommerce-additional-fields,
.gc-checkout-page #billing_email_field {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.gc-checkout-page #customer_details .woocommerce-additional-fields:not(:has(.form-row)),
.gc-checkout-page #customer_details .woocommerce-additional-fields:empty {
	display: none !important;
}

.gc-checkout-page .woocommerce-billing-fields h3,
.gc-checkout-page .woocommerce-additional-fields h3 {
	margin: 0 0 14px !important;
	color: #0F172A !important;
	font-size: 16px !important;
	font-weight: 900 !important;
}

.gc-checkout-page .form-row {
	margin: 0 0 16px !important;
	padding: 0 !important;
}

.gc-checkout-page label {
	display: block;
	margin-bottom: 9px;
	color: #0F172A;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
}

.gc-checkout-page input[type="text"],
.gc-checkout-page input[type="email"],
.gc-checkout-page input[type="tel"],
.gc-checkout-page input[type="number"],
.gc-checkout-page input[type="password"],
.gc-checkout-page textarea,
.gc-checkout-page select,
.gc-checkout-page .select2-selection {
	width: 100% !important;
	min-height: 56px !important;
	padding: 0 16px !important;
	border: 1px solid #DDE3EA !important;
	border-radius: 14px !important;
	background: #FFFFFF !important;
	color: #0F172A !important;
	font-size: 15px !important;
	font-weight: 650;
	box-shadow: none !important;
	outline: none !important;
	box-sizing: border-box;
}

.gc-checkout-page textarea {
	min-height: 112px !important;
	padding-top: 14px !important;
	resize: vertical;
}

.gc-checkout-page input:focus,
.gc-checkout-page textarea:focus,
.gc-checkout-page select:focus,
.gc-checkout-page .select2-container--open .select2-selection,
.gc-checkout-page .select2-selection:focus {
	border-color: #0A7C6D !important;
	box-shadow: 0 0 0 4px rgba(10, 124, 109, .08) !important;
}

.gc-checkout-benefits {
	display: grid;
	gap: 14px;
	margin-top: 30px;
	padding: 24px;
	border: 1px solid #E4E8EC;
	border-radius: 20px;
	background: linear-gradient(135deg, #F7FBFA, #FFFFFF);
}

.gc-checkout-benefit {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	min-height: 72px;
	padding: 12px;
	border: 1px solid rgba(228, 232, 236, .82);
	border-radius: 16px;
	background: rgba(255, 255, 255, .78);
}

.gc-checkout-benefit__icon {
	position: relative;
	width: 44px;
	height: 44px;
	background: #EAF6F3;
	color: #0A7C6D;
	border: 1px solid #B7DDD6;
	font-size: 20px;
	line-height: 1;
}

.gc-checkout-benefit__icon::before,
.gc-checkout-benefit__icon::after {
	display: none;
}

.gc-checkout-benefit strong {
	display: block;
	color: #0F172A;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.3;
}

.gc-checkout-benefit p {
	margin: 5px 0 0;
	color: #5B6472;
	font-size: 13px;
	font-weight: 650;
	line-height: 1.45;
}

.gc-checkout-coupon-area {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.gc-checkout-before-form .woocommerce-form-coupon-toggle,
.gc-checkout-before-form .woocommerce-form-login-toggle,
.gc-checkout-before-form .checkout_coupon,
.gc-checkout-before-form form.checkout_coupon,
.gc-checkout-before-form .woocommerce-form-coupon {
	display: none !important;
}

.gc-coupon-card .gc-checkout-card__head {
	margin-bottom: 18px;
}

.gc-coupon-card__text {
	margin: 0 0 18px;
	color: #5B6472;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.45;
}

.gc-checkout-coupon-area .checkout_coupon,
.gc-checkout-coupon-area form.checkout_coupon,
.gc-checkout-coupon-area .woocommerce-form-coupon {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 152px;
	gap: 12px;
	align-items: stretch;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.gc-checkout-coupon-area .checkout_coupon p,
.gc-checkout-coupon-area form.checkout_coupon p,
.gc-checkout-coupon-area .woocommerce-form-coupon p {
	margin: 0 !important;
	color: #5B6472;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.5;
}

.gc-checkout-coupon-area .checkout_coupon p:first-child,
.gc-checkout-coupon-area form.checkout_coupon p:first-child,
.gc-checkout-coupon-area .woocommerce-form-coupon p:first-child {
	display: none !important;
}

.gc-checkout-coupon-area .checkout_coupon .form-row,
.gc-checkout-coupon-area form.checkout_coupon .form-row,
.gc-checkout-coupon-area .woocommerce-form-coupon .form-row {
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
}

.gc-checkout-coupon-area .gc-checkout-before-form .checkout_coupon,
.gc-checkout-coupon-area .gc-checkout-before-form form.checkout_coupon,
.gc-checkout-coupon-area .gc-checkout-before-form .woocommerce-form-coupon {
	display: none !important;
}

.gc-checkout-page input[name="coupon_code"] {
	width: 100% !important;
	min-height: 56px !important;
	margin: 0 !important;
	padding: 0 16px !important;
	border: 1px solid #DDE3EA !important;
	border-radius: 14px !important;
	background: #FFFFFF !important;
	color: #0F172A !important;
	font-size: 15px !important;
}

.gc-checkout-page .checkout_coupon button,
.gc-checkout-page form.checkout_coupon button,
.gc-checkout-page .woocommerce-form-coupon button,
.gc-checkout-page button[name="apply_coupon"],
.gc-checkout-page .button:not(#place_order) {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 56px !important;
	padding: 14px 22px !important;
	border: 1px solid #0A7C6D !important;
	border-radius: 14px !important;
	background: #FFFFFF !important;
	color: #0A7C6D !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	white-space: nowrap;
	box-shadow: none !important;
	cursor: pointer;
}

.gc-checkout-page .checkout_coupon button:hover,
.gc-checkout-page form.checkout_coupon button:hover,
.gc-checkout-page .woocommerce-form-coupon button:hover,
.gc-checkout-page button[name="apply_coupon"]:hover,
.gc-checkout-page .button:not(#place_order):hover {
	background: #EAF6F3 !important;
	color: #08695D !important;
}

.gc-checkout-coupon-area .woocommerce-message,
.gc-checkout-coupon-area .woocommerce-info {
	position: relative;
	display: flex !important;
	align-items: center;
	gap: 10px;
	margin: 12px 0 14px !important;
	padding: 14px 16px !important;
	border: 1px solid #B7DDD6 !important;
	border-radius: 14px !important;
	background: #EAF6F3 !important;
	color: #0A7C6D !important;
	font-weight: 800;
	line-height: 1.45;
}

.gc-coupon-card .woocommerce-message,
.gc-coupon-card .woocommerce-info {
	grid-column: 1 / -1;
	margin: 0 0 12px !important;
}

.gc-checkout-coupon-area .woocommerce-message::before,
.gc-checkout-coupon-area .woocommerce-info::before {
	content: "✓" !important;
	position: static !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	margin: 0;
	border-radius: 999px;
	background: #0A7C6D;
	color: #FFFFFF;
	font-size: 13px;
	font-weight: 900;
}

.gc-checkout-review,
.gc-payment-area {
	display: grid;
	gap: 18px;
}

.gc-payment-area.woocommerce-checkout-payment,
.gc-checkout-page #payment,
.gc-checkout-page .woocommerce-checkout-payment {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.gc-order-summary-card__title {
	margin-bottom: 22px !important;
}

.gc-order-product-list {
	display: grid;
	gap: 16px;
	padding-bottom: 24px;
	border-bottom: 1px solid #E4E8EC;
}

.gc-order-product {
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr) max-content;
	gap: 16px;
	align-items: center;
	position: relative;
	min-height: 86px;
}

.gc-order-product__thumb {
	position: relative;
	width: 86px;
	height: 72px;
	overflow: visible;
	border-radius: 14px;
}

.gc-order-product__thumb img {
	width: 86px !important;
	height: 72px !important;
	object-fit: cover;
	border: 1px solid #E4E8EC;
	border-radius: 14px;
}

.gc-order-product__qty {
	position: absolute;
	top: -9px;
	right: -9px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 7px;
	border-radius: 999px;
	background: #0A7C6D;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 900;
}

.gc-order-remove,
.gc-order-product .remove {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: -9px;
	z-index: 2;
	width: 28px;
	height: 28px;
	border: 1px solid #E4E8EC;
	border-radius: 999px;
	background: #F6F8F9;
	color: #5B6472 !important;
	font-size: 19px !important;
	font-weight: 900;
	line-height: 1 !important;
	text-decoration: none !important;
	box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}

.gc-order-remove:hover,
.gc-order-product .remove:hover {
	border-color: #F3B8B8;
	background: #FFF1F1;
	color: #B42318 !important;
}

.gc-order-product__name {
	display: -webkit-box;
	overflow: hidden;
	color: #0F172A;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.38;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.gc-order-product__price,
.gc-order-summary-line strong {
	color: #0F172A;
	font-size: 15px;
	font-weight: 900;
	white-space: nowrap;
	text-align: right;
}

.gc-order-summary-lines {
	display: grid;
	gap: 18px;
	padding-top: 24px;
}

.gc-order-summary-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	color: #0F172A;
	font-size: 15px;
	font-weight: 750;
}

.gc-order-summary-line span {
	color: #0F172A;
}

.gc-order-summary-line--discount span,
.gc-order-summary-line--discount strong {
	color: #0A7C6D;
}

.gc-order-discount-value {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	white-space: nowrap;
}

.gc-order-discount-value .woocommerce-remove-coupon,
.gc-coupon-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 3px 8px;
	border: 1px solid #B7DDD6;
	border-radius: 999px;
	background: #F6FBFA;
	color: #0A7C6D !important;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none !important;
}

.gc-order-discount-value .woocommerce-remove-coupon {
	font-size: 0;
}

.gc-order-discount-value .woocommerce-remove-coupon::before {
	content: "Убрать";
	font-size: 11px;
}

.gc-order-discount-value .woocommerce-remove-coupon:hover,
.gc-coupon-remove:hover {
	border-color: #F3B8B8;
	background: #FFF1F1;
	color: #B42318 !important;
}

.gc-order-summary-line--total {
	margin-top: 8px;
	padding-top: 22px;
	border-top: 1px solid #E4E8EC;
}

.gc-order-summary-line--total span,
.gc-order-summary-line--total strong {
	font-size: 20px;
	font-weight: 900;
}

.gc-payment-card {
	display: block;
}

.gc-payment-card__head {
	margin-bottom: 24px;
}

.gc-payment-methods {
	display: grid;
	gap: 12px;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	list-style: none !important;
}

.gc-payment-area ul.payment_methods,
.gc-payment-area .wc_payment_methods {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	list-style: none !important;
	box-shadow: none !important;
}

.gc-payment-methods li,
.gc-payment-methods .wc_payment_method,
.gc-payment-card li.wc_payment_method {
	position: relative;
	display: grid !important;
	grid-template-columns: 22px 58px minmax(0, 1fr);
	column-gap: 16px;
	align-items: center;
	min-height: 96px;
	margin: 0 !important;
	padding: 20px !important;
	border: 1px solid #E4E8EC !important;
	border-radius: 18px !important;
	background: #FFFFFF !important;
	color: #0F172A !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	line-height: 1.45;
	transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.gc-payment-methods li::before,
.gc-payment-card li.wc_payment_method::before {
	display: none !important;
}

.gc-payment-methods li:nth-child(2)::before,
.gc-payment-card li.wc_payment_method:nth-child(2)::before {
	display: none !important;
}

.gc-payment-methods li:nth-child(2)::after,
.gc-payment-card li.wc_payment_method:nth-child(2)::after {
	display: none;
}

.gc-payment-methods li:first-child label::after,
.gc-payment-card li.wc_payment_method:first-child label::after {
	content: "Рекомендуем";
	display: inline-flex;
	align-items: center;
	min-height: 20px;
	margin-left: 10px;
	padding: 3px 8px;
	border: 1px solid #B7DDD6;
	border-radius: 999px;
	background: #EAF6F3;
	color: #0A7C6D;
	font-size: 11px;
	font-weight: 900;
	vertical-align: middle;
}

.gc-payment-methods li:has(input:checked),
.gc-payment-card li.wc_payment_method:has(input:checked) {
	border-color: #0A7C6D !important;
	background: #EAF6F3 !important;
	box-shadow: 0 10px 24px rgba(10, 124, 109, .08);
}

.gc-payment-methods input[type="radio"],
.gc-payment-card li.wc_payment_method input[type="radio"] {
	position: static;
	grid-column: 1;
	grid-row: 1;
	width: 18px;
	height: 18px;
	margin: 0 !important;
	accent-color: #0A7C6D;
}

.gc-payment-method-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	grid-column: 2;
	grid-row: 1;
	width: 58px;
	height: 58px;
	border: 1px solid #E4E8EC;
	border-radius: 14px;
	background: #FFFFFF;
	color: #0A7C6D;
}

.gc-payment-method-icon svg {
	display: block;
	width: 28px;
	height: 28px;
}

.gc-payment-methods label,
.gc-payment-card li.wc_payment_method label {
	display: inline;
	grid-column: 3;
	grid-row: 1;
	margin: 0;
	color: #0F172A;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.35;
}

.gc-payment-card .payment_box {
	grid-column: 3;
	max-width: none;
	margin: 11px 0 0 !important;
	padding: 12px 14px !important;
	border-radius: 14px !important;
	background: rgba(255, 255, 255, .72) !important;
	color: #5B6472 !important;
	font-size: 13px !important;
	font-weight: 650;
	line-height: 1.5;
}

.gc-payment-card .payment_box::before {
	display: none !important;
}

.gc-confirm-card {
	margin: 0 !important;
	background: #FFFFFF !important;
	overflow: hidden;
}

.gc-confirm-card.form-row,
.gc-confirm-card.place-order,
.gc-payment-area .form-row.place-order {
	float: none !important;
	clear: both !important;
	width: 100% !important;
	max-width: none !important;
	display: block !important;
	margin: 0 !important;
	padding: 28px !important;
	box-sizing: border-box !important;
	border: 1px solid #E4E8EC !important;
	border-radius: 24px !important;
	background: #FFFFFF !important;
	box-shadow: 0 10px 30px rgba(15, 23, 42, .06) !important;
	overflow: visible !important;
}

.gc-confirm-card__head {
	margin-bottom: 24px;
	align-items: center;
	gap: 14px;
}

.gc-confirm-card .woocommerce-terms-and-conditions-wrapper,
.gc-payment-card .woocommerce-terms-and-conditions-wrapper {
	margin: 0 0 22px !important;
	padding: 0 !important;
	color: #0F172A;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.5;
}

.gc-confirm-card .woocommerce-terms-and-conditions-wrapper a,
.gc-payment-card .woocommerce-terms-and-conditions-wrapper a {
	color: #0A7C6D !important;
	font-weight: 900 !important;
	text-decoration: none;
}

.gc-confirm-card .form-row {
	margin: 0 !important;
	padding: 0 !important;
}

.gc-confirm-card .woocommerce-form__label-for-checkbox {
	display: flex !important;
	align-items: flex-start !important;
	gap: 12px !important;
	margin: 0 !important;
	color: #0F172A;
	font-size: 14px;
	font-weight: 850;
	line-height: 1.5;
}

.gc-confirm-card .woocommerce-form__label-for-checkbox span {
	display: inline !important;
}

.gc-confirm-card .woocommerce-form__label-for-checkbox .required {
	display: inline !important;
	position: static !important;
	margin-left: 3px !important;
	vertical-align: baseline !important;
	white-space: nowrap !important;
}

.gc-confirm-card .woocommerce-privacy-policy-text,
.gc-payment-card .woocommerce-privacy-policy-text {
	display: none !important;
}

.gc-checkout-page input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: #0A7C6D;
}

.gc-confirm-card input[type="checkbox"] {
	flex: 0 0 24px !important;
	min-width: 24px !important;
	width: 24px !important;
	height: 24px !important;
	margin: 0 !important;
	border: 1px solid #9DD2C8;
	border-radius: 6px;
	background-color: #FFFFFF;
	accent-color: #0A7C6D;
}

.gc-checkout-page #place_order,
.gc-checkout-page button#place_order,
.gc-confirm-card .gc-place-order-button {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 16px;
	width: 100% !important;
	min-height: 62px !important;
	margin-top: 0 !important;
	padding: 0 28px !important;
	border: 0 !important;
	border-radius: 14px !important;
	background: #0A7C6D !important;
	color: #FFFFFF !important;
	font-size: 17px !important;
	font-weight: 900 !important;
	line-height: 1.15 !important;
	white-space: nowrap !important;
	box-shadow: 0 14px 30px rgba(10, 124, 109, .22) !important;
	cursor: pointer !important;
	transition: background-color .2s ease, box-shadow .2s ease;
}

.gc-place-order-button__main {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.gc-place-order-button__text {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gc-place-order-button__lock {
	position: relative;
	display: inline-flex;
	flex: 0 0 18px;
	width: 18px;
	height: 16px;
	border: 2px solid currentColor;
	border-radius: 5px;
	box-sizing: border-box;
}

.gc-place-order-button__lock::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -10px;
	width: 10px;
	height: 10px;
	border: 2px solid currentColor;
	border-bottom: 0;
	border-radius: 10px 10px 0 0;
	transform: translateX(-50%);
	box-sizing: border-box;
}

.gc-place-order-button__total {
	flex: 0 0 auto;
	font-size: 18px;
	font-weight: 900;
	white-space: nowrap;
}

.gc-checkout-page #place_order:hover,
.gc-checkout-page button#place_order:hover,
.gc-confirm-card .gc-place-order-button:hover {
	background: #08695D !important;
	color: #FFFFFF !important;
	box-shadow: 0 16px 34px rgba(10, 124, 109, .28) !important;
	transform: none !important;
}

.gc-checkout-support {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) auto;
	gap: 22px;
	align-items: center;
	margin-top: 34px;
	padding: 26px 30px !important;
}

.gc-checkout-support__icon {
	width: 72px;
	height: 72px;
	font-size: 28px;
	border: 1px solid #9DD2C8;
	box-shadow: 0 12px 24px rgba(10, 124, 109, .1);
}

.gc-checkout-support h2 {
	margin: 0;
	color: #0F172A;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.25;
}

.gc-checkout-support p {
	max-width: 620px;
	margin: 7px 0 0;
	color: #5B6472;
	font-size: 14px;
	line-height: 1.55;
}

.gc-checkout-support__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 18px;
	border: 1px solid #0A7C6D;
	border-radius: 14px;
	background: #FFFFFF;
	color: #0A7C6D;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.gc-checkout-support__button:hover {
	background: #EAF6F3;
	color: #08695D;
}

.gc-checkout-page .woocommerce-error,
.gc-checkout-page .woocommerce-info,
.gc-checkout-page .woocommerce-message {
	border-radius: 16px;
}

@media (max-width: 900px) {
	.gc-checkout-reference-hero__grid,
	.gc-checkout-layout,
	.gc-checkout-support {
		grid-template-columns: 1fr;
	}

	.gc-checkout-reference-hero__secure {
		justify-self: stretch;
		min-width: 0;
	}

	.gc-checkout-coupon-area,
	.gc-checkout-left,
	.gc-checkout-right {
		grid-column: auto;
		grid-row: auto;
	}

	.gc-checkout-right {
		position: static;
	}

	.gc-checkout-coupon-area .checkout_coupon,
	.gc-checkout-coupon-area form.checkout_coupon,
	.gc-checkout-coupon-area .woocommerce-form-coupon {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 540px) {
	.gc-checkout-page__content {
		padding: 0 12px 42px;
	}

	.gc-checkout-reference-hero {
		margin-top: 24px;
	}

	.gc-checkout-reference-hero__grid,
	.gc-checkout-card,
	.gc-checkout-page #customer_details,
	.gc-checkout-coupon-area,
	.gc-order-summary-card,
	.gc-payment-card,
	.gc-confirm-card {
		padding: 18px !important;
		border-radius: 20px !important;
	}

	.gc-checkout-card__head,
	.gc-payment-card__head,
	.gc-confirm-card__head {
		margin-bottom: 22px;
	}

	.gc-checkout-benefits {
		padding: 16px;
	}

	.gc-checkout-benefit {
		grid-template-columns: 40px minmax(0, 1fr);
		gap: 12px;
		padding: 10px;
	}

	.gc-checkout-benefit__icon {
		width: 40px;
		height: 40px;
	}

	.gc-order-product {
		grid-template-columns: 68px minmax(0, 1fr);
	}

	.gc-order-product__price {
		grid-column: 2;
		text-align: left;
	}

	.gc-order-product__thumb,
	.gc-order-product__thumb img {
		width: 68px !important;
		height: 54px !important;
	}

	.gc-payment-methods li,
	.gc-payment-card li.wc_payment_method {
		grid-template-columns: 20px 48px minmax(0, 1fr);
		gap: 12px;
		padding: 16px !important;
	}

	.gc-payment-methods li::before,
	.gc-payment-card li.wc_payment_method::before {
		width: 48px;
		height: 48px;
		font-size: 25px;
	}

	.gc-payment-methods input[type="radio"],
	.gc-payment-card li.wc_payment_method input[type="radio"] {
		width: 18px;
		height: 18px;
	}

	.gc-checkout-page #place_order,
	.gc-checkout-page button#place_order,
	.gc-confirm-card .gc-place-order-button {
		min-height: 58px !important;
		padding: 0 18px !important;
		font-size: 14px !important;
	}

	.gc-place-order-button__total {
		font-size: 15px;
	}

	.gc-checkout-support {
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 14px;
		padding: 18px !important;
	}

	.gc-checkout-support__icon {
		width: 48px;
		height: 48px;
		font-size: 20px;
	}

	.gc-checkout-support__button {
		grid-column: 1 / -1;
		width: 100%;
	}
}

/* GameCase Thank You Page */
.gc-thankyou-page {
	background: #F6F8F9;
	color: #0F172A;
	font-family: Manrope, Inter, Arial, sans-serif;
}

.gc-thankyou-wrap {
	width: min(100% - 32px, 1180px);
	margin: 0 auto;
	padding: 34px 0 58px;
}

.gc-thankyou-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: #667085;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
}

.gc-thankyou-breadcrumbs a {
	color: #667085;
	text-decoration: none;
	transition: color .2s ease;
}

.gc-thankyou-breadcrumbs a:hover {
	color: #0A7C6D;
}

.gc-thankyou-hero__label {
	display: inline-flex;
	margin-bottom: 12px;
	color: #0A7C6D;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.gc-thankyou-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	margin-bottom: 24px;
	padding: 34px 38px;
	border: 1px solid #E4E8EC;
	border-radius: 24px;
	background: #FFFFFF;
	box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.gc-thankyou-hero--fallback {
	margin-bottom: 0;
}

.gc-thankyou-hero__content h1 {
	margin: 0;
	color: #0F172A;
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: 0;
}

.gc-thankyou-hero__content p {
	margin: 14px 0 0;
	max-width: 680px;
	color: #667085;
	font-size: 17px;
	font-weight: 650;
	line-height: 1.5;
}

.gc-thankyou-hero__badge {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 250px;
	padding: 16px 18px;
	border: 1px solid #9DD2C8;
	border-radius: 18px;
	background: #EAF6F3;
	color: #0F172A;
}

.gc-thankyou-hero__badge > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: #FFFFFF;
	color: #0A7C6D;
	font-size: 20px;
	font-weight: 900;
}

.gc-thankyou-hero__badge strong,
.gc-thankyou-hero__badge small {
	display: block;
}

.gc-thankyou-hero__badge strong {
	color: #0A7C6D;
	font-size: 14px;
	font-weight: 900;
}

.gc-thankyou-hero__badge small {
	margin-top: 2px;
	color: #5B6472;
	font-size: 12px;
	font-weight: 750;
}

.gc-thankyou-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
	gap: 24px;
	align-items: start;
}

.gc-thankyou-main,
.gc-thankyou-side {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
}

.gc-thankyou-card,
.gc-thankyou-trust {
	border: 1px solid #E4E8EC;
	border-radius: 24px;
	background: #FFFFFF;
	box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.gc-thankyou-card {
	padding: 28px;
}

.gc-thankyou-card__title {
	margin: 0 0 20px;
	color: #0F172A;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.2;
}

.gc-thankyou-card p {
	margin: 0;
	color: #667085;
	font-size: 15px;
	font-weight: 650;
	line-height: 1.6;
}

.gc-thankyou-steps {
	display: grid;
	gap: 12px;
}

.gc-thankyou-step {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 14px;
	border: 1px solid #E4E8EC;
	border-radius: 18px;
	background: #FFFFFF;
}

.gc-thankyou-step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: #EAF6F3;
	color: #0A7C6D;
	font-size: 14px;
	font-weight: 900;
}

.gc-thankyou-step strong {
	display: block;
	margin-bottom: 3px;
	color: #0F172A;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.3;
}

.gc-thankyou-step p {
	color: #0F172A;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.45;
}

.gc-thankyou-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
}

.gc-thankyou-meta div {
	min-width: 0;
	padding: 14px;
	border: 1px solid #E4E8EC;
	border-radius: 16px;
	background: #F6F8F9;
}

.gc-thankyou-meta dt {
	margin: 0 0 6px;
	color: #667085;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
}

.gc-thankyou-meta dd {
	margin: 0;
	overflow-wrap: anywhere;
	color: #0F172A;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.35;
}

.gc-thankyou-order-card {
	padding: 28px;
}

.gc-thankyou-order-items {
	display: grid;
	gap: 14px;
	padding-bottom: 22px;
	border-bottom: 1px solid #E4E8EC;
}

.gc-thankyou-order-item {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr) max-content;
	gap: 14px;
	align-items: center;
}

.gc-thankyou-order-thumb,
.gc-thankyou-order-thumb img {
	width: 82px;
	height: 68px;
}

.gc-thankyou-order-thumb {
	overflow: hidden;
	border-radius: 14px;
	background: #F6F8F9;
}

.gc-thankyou-order-thumb img {
	display: block;
	object-fit: cover;
	border: 1px solid #E4E8EC;
	border-radius: 14px;
}

.gc-thankyou-order-name {
	min-width: 0;
}

.gc-thankyou-order-name strong {
	display: -webkit-box;
	overflow: hidden;
	color: #0F172A;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.35;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.gc-thankyou-order-name span {
	display: block;
	margin-top: 5px;
	color: #667085;
	font-size: 12px;
	font-weight: 800;
}

.gc-thankyou-order-price {
	color: #0F172A;
	font-size: 15px;
	font-weight: 900;
	white-space: nowrap;
	text-align: right;
}

.gc-thankyou-order-lines {
	display: grid;
	gap: 14px;
	margin-top: 22px;
}

.gc-thankyou-order-lines div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	color: #0F172A;
	font-size: 15px;
	font-weight: 750;
}

.gc-thankyou-order-lines strong {
	font-weight: 900;
	white-space: nowrap;
}

.gc-thankyou-order-lines__discount strong {
	color: #0A7C6D;
}

.gc-thankyou-order-lines__total {
	margin-top: 4px;
	padding-top: 18px;
	border-top: 1px solid #E4E8EC;
	font-size: 18px !important;
	font-weight: 900 !important;
}

.gc-thankyou-order-lines__total strong {
	font-size: 22px;
}

.gc-thankyou-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.gc-thankyou-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 18px;
	border: 1px solid #0A7C6D;
	border-radius: 14px;
	background: #0A7C6D;
	color: #FFFFFF !important;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none !important;
	box-shadow: 0 12px 28px rgba(10, 124, 109, .18);
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.gc-thankyou-button:hover {
	border-color: #08695D;
	background: #08695D;
	color: #FFFFFF !important;
	box-shadow: 0 14px 30px rgba(10, 124, 109, .24);
}

.gc-thankyou-button--outline {
	background: #FFFFFF;
	color: #0A7C6D !important;
	box-shadow: none;
}

.gc-thankyou-button--outline:hover {
	background: #EAF6F3;
	color: #08695D !important;
	box-shadow: none;
}

.gc-thankyou-hooks {
	margin-top: 18px;
}

.gc-thankyou-hooks > *:first-child {
	margin-top: 0;
}

.gc-thankyou-hooks > *:last-child {
	margin-bottom: 0;
}

.gc-thankyou-trust {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	margin-top: 24px;
	padding: 24px 28px;
}

.gc-thankyou-trust__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 999px;
	background: #EAF6F3;
	color: #0A7C6D;
	font-size: 26px;
	font-weight: 900;
}

.gc-thankyou-trust h2 {
	margin: 0;
	color: #0F172A;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.25;
}

.gc-thankyou-trust p {
	margin: 6px 0 0;
	color: #667085;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.5;
}

@media (max-width: 900px) {
	.gc-thankyou-hero,
	.gc-thankyou-grid,
	.gc-thankyou-trust {
		grid-template-columns: 1fr;
	}

	.gc-thankyou-hero__badge {
		width: 100%;
		min-width: 0;
	}

	.gc-thankyou-side {
		position: static;
	}
}

@media (max-width: 768px) {
	.gc-thankyou-wrap {
		width: min(100% - 24px, 1180px);
		padding: 24px 0 42px;
	}

	.gc-thankyou-hero,
	.gc-thankyou-card,
	.gc-thankyou-order-card,
	.gc-thankyou-trust {
		padding: 18px;
		border-radius: 20px;
	}

	.gc-thankyou-hero__content h1 {
		font-size: 34px;
	}

	.gc-thankyou-meta {
		grid-template-columns: 1fr;
	}

	.gc-thankyou-order-item {
		grid-template-columns: 68px minmax(0, 1fr);
	}

	.gc-thankyou-order-price {
		grid-column: 2;
		text-align: left;
	}

	.gc-thankyou-order-thumb,
	.gc-thankyou-order-thumb img {
		width: 68px;
		height: 56px;
	}

	.gc-thankyou-actions,
	.gc-thankyou-button,
	.gc-thankyou-trust .gc-thankyou-button {
		width: 100%;
	}

	.gc-thankyou-trust {
		gap: 14px;
	}

	.gc-thankyou-trust__icon {
		width: 52px;
		height: 52px;
		font-size: 22px;
	}
}

/* GameCase View Order */
.gc-view-order-page {
	width: 100%;
	background: #F6F8F9;
	color: #0F172A;
	font-family: Manrope, Inter, Arial, sans-serif;
}

.gc-page:has(.gc-view-order-page) {
	padding: 0;
	background: #F6F8F9;
}

.gc-page:has(.gc-view-order-page) .gc-page__wrap {
	width: min(100% - 32px, 1220px);
	max-width: 1220px;
}

.gc-page:has(.gc-view-order-page) .gc-page__card {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.gc-page:has(.gc-view-order-page) .gc-page__title {
	display: none;
}

.gc-page:has(.gc-view-order-page) .gc-page__content {
	font-size: inherit;
	line-height: inherit;
}

.woocommerce-account .woocommerce:has(.gc-view-order-page) {
	width: min(100% - 32px, 1220px);
	max-width: 1220px;
	margin: 0 auto;
}

.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation {
	display: none !important;
}

.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-content {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.gc-view-order,
.gc-view-order__wrap,
.gc-view-order-wrap {
	width: 100%;
}

.gc-view-order-wrap,
.gc-view-order__wrap {
	max-width: 1220px;
	margin: 0 auto;
	padding: 48px 24px 70px;
	box-sizing: border-box;
}

.gc-view-order-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-bottom: 18px;
	color: #5B6472;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.45;
}

.gc-view-order-breadcrumbs a {
	color: #7A879B;
	text-decoration: none;
	transition: color .2s ease;
}

.gc-view-order-breadcrumbs a:hover {
	color: #0A7C6D;
}

.gc-view-order-hero,
.gc-view-order-card,
.gc-view-order-empty .gc-view-order-card {
	border: 1px solid #E4E8EC;
	border-radius: 22px;
	background: #FFFFFF;
	box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.gc-view-order-hero,
.gc-view-order__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	width: 100%;
	max-width: none;
	margin-bottom: 24px;
	padding: 34px 38px;
}

.gc-view-order-hero h1,
.gc-view-order-empty h1 {
	margin: 0;
	color: #0F172A;
	font-size: clamp(36px, 4.6vw, 56px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -.02em;
}

.gc-view-order-hero p,
.gc-view-order-empty p {
	margin: 12px 0 0;
	color: #61708A;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
}

.gc-view-order-status {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 190px;
	padding: 14px 16px;
	border: 1px solid #9DD2C8;
	border-radius: 18px;
	background: #EAF6F3;
	color: #0A7C6D;
	font-size: 14px;
	font-weight: 800;
}

.gc-view-order-status span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: #FFFFFF;
	box-shadow: inset 0 0 0 1px rgba(10, 124, 109, .18);
}

.gc-view-order-status--pending,
.gc-view-order-status--on-hold {
	border-color: #F4C36A;
	background: #FFF8E8;
	color: #9A5F00;
}

.gc-view-order-status--cancelled,
.gc-view-order-status--failed,
.gc-view-order-status--refunded {
	border-color: #F0B8B8;
	background: #FFF1F1;
	color: #B42318;
}

.gc-view-order-layout,
.gc-view-order__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr);
	gap: 24px;
	align-items: start;
	width: 100%;
}

.gc-view-order-main,
.gc-view-order-side {
	display: flex;
	flex-direction: column;
	gap: 22px;
	min-width: 0;
}

.gc-view-order-side {
	position: sticky;
	top: 96px;
}

.gc-view-order-card {
	padding: 28px;
}

.gc-view-order-card h2 {
	margin: 0 0 14px;
	color: #0F172A;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.01em;
}

.gc-view-order-card h3 {
	margin: 0;
	color: #0F172A;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}

.gc-view-order-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}

.gc-view-order-card__head h2 {
	margin-bottom: 10px;
}

.gc-view-order-card__head p,
.gc-view-order-support-card p {
	margin: 0;
	color: #61708A;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
}

.gc-account-access-list {
	display: grid;
	gap: 14px;
}

.gc-account-access {
	padding: 16px;
	border: 1px solid #E4E8EC;
	border-radius: 20px;
	background: linear-gradient(135deg, #FFFFFF 0%, #F7FCFB 100%);
}

.gc-account-access__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 16px;
}

.gc-account-access__field {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	align-items: start;
	min-width: 0;
	padding: 16px;
	border: 1px solid #E4E8EC;
	border-radius: 16px;
	background: #FFFFFF;
}

.gc-account-access__field--full {
	margin-top: 14px;
}

.gc-account-access__field span {
	grid-column: 1 / -1;
	color: #7A879B;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.35;
	text-transform: uppercase;
}

.gc-account-access__field strong {
	overflow-wrap: break-word;
	word-break: normal;
	color: #0F1B3D;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
}

.gc-account-access__field button,
.gc-account-access__copy-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 14px;
	border: 1px solid #0A7C6D;
	border-radius: 12px;
	background: #FFFFFF;
	color: #0A7C6D;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.gc-account-access__field button:hover,
.gc-account-access__copy-all:hover {
	border-color: #08695D;
	background: #EAF6F3;
	color: #08695D;
}

.gc-account-access__copy-all {
	width: 100%;
	margin-top: 12px;
	background: #0A7C6D;
	color: #FFFFFF;
}

.gc-account-access__copy-all:hover {
	background: #08695D;
	color: #FFFFFF;
}

.gc-view-order-note {
	padding: 18px;
	border: 1px solid #E4E8EC;
	border-radius: 18px;
	background: #F6F8F9;
}

.gc-view-order-note strong {
	display: block;
	color: #0F172A;
	font-size: 16px;
	font-weight: 700;
}

.gc-view-order-note p {
	margin: 8px 0 0;
	color: #61708A;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
}

.gc-view-order-note .gc-view-order-button {
	margin-top: 14px;
}

.gc-view-order-note--waiting {
	border-color: #F4C36A;
	background: #FFF8E8;
}

.gc-view-order-steps {
	display: grid;
	gap: 14px;
}

.gc-view-order-steps div {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 16px;
	border: 1px solid #E4E8EC;
	border-radius: 16px;
	background: #FFFFFF;
}

.gc-view-order-steps span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: #EAF6F3;
	color: #0A7C6D;
	font-size: 13px;
	font-weight: 800;
}

.gc-view-order-steps strong {
	color: #22324D;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
}

.gc-view-order-items {
	display: grid;
	gap: 14px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(15, 27, 61, .08);
}

.gc-view-order-item {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr) max-content;
	gap: 14px;
	align-items: center;
}

.gc-view-order-item__thumb,
.gc-view-order-item__thumb img {
	width: 82px;
	height: 68px;
}

.gc-view-order-item__thumb {
	overflow: hidden;
	border-radius: 14px;
	background: #F6F8F9;
}

.gc-view-order-item__thumb img {
	display: block;
	object-fit: cover;
	border: 1px solid #E4E8EC;
	border-radius: 14px;
}

.gc-view-order-item__name {
	min-width: 0;
}

.gc-view-order-item__name strong {
	display: -webkit-box;
	overflow: hidden;
	color: #0F172A;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.gc-view-order-item__name span {
	display: block;
	margin-top: 5px;
	color: #61708A;
	font-size: 12px;
	font-weight: 600;
}

.gc-view-order-item__price {
	color: #0F1B3D;
	font-size: 16px;
	font-weight: 800;
	white-space: nowrap;
	text-align: right;
}

.gc-view-order-lines {
	display: grid;
	gap: 0;
	margin-top: 18px;
}

.gc-view-order-lines div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(15, 27, 61, .08);
	color: #22324D;
	font-size: 15px;
	font-weight: 600;
}

.gc-view-order-lines strong {
	font-weight: 700;
	white-space: nowrap;
	text-align: right;
}

.gc-view-order-lines__discount strong {
	color: #0A7C6D;
}

.gc-view-order-lines__total {
	margin-top: 4px;
	padding-top: 18px !important;
	border-bottom: 0 !important;
	border-top: 1px solid rgba(15, 27, 61, .08);
	font-size: 18px !important;
	font-weight: 700 !important;
}

.gc-view-order-lines__total strong {
	font-size: 22px;
	font-weight: 800;
}

.gc-view-order-meta {
	display: grid;
	gap: 0;
	margin: 0;
}

.gc-view-order-meta div {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(15, 27, 61, .08);
}

.gc-view-order-meta div:last-child {
	border-bottom: 0;
}

.gc-view-order-meta dt {
	color: #6C7890;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
}

.gc-view-order-meta dd {
	margin: 0;
	color: #0F1B3D;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	text-align: right;
}

.gc-view-order-support-card {
	background: linear-gradient(135deg, #FFFFFF 0%, #F5FCFA 100%);
}

.gc-view-order-support-card .gc-view-order-button {
	margin-top: 18px;
}

.gc-view-order-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 18px;
	border: 1px solid #0A7C6D;
	border-radius: 14px;
	background: #0A7C6D;
	color: #FFFFFF !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none !important;
	box-shadow: 0 12px 28px rgba(10, 124, 109, .18);
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.gc-view-order-button:hover {
	border-color: #08695D;
	background: #08695D;
	color: #FFFFFF !important;
	box-shadow: 0 14px 30px rgba(10, 124, 109, .24);
}

.gc-view-order-button--outline {
	background: #FFFFFF;
	color: #0A7C6D !important;
	box-shadow: none;
}

.gc-view-order-button--outline:hover {
	background: #EAF6F3;
	color: #08695D !important;
	box-shadow: none;
}

.gc-view-order-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.gc-view-order-empty .gc-view-order-card {
	max-width: 720px;
	padding: 34px;
}

@media (max-width: 900px) {
	.gc-view-order-hero,
	.gc-view-order-layout,
	.gc-view-order__grid {
		grid-template-columns: 1fr;
	}

	.gc-view-order-status {
		width: 100%;
		min-width: 0;
	}

	.gc-view-order-side {
		position: static;
	}
}

@media (max-width: 640px) {
	.woocommerce-account .woocommerce:has(.gc-view-order-page),
	.gc-page:has(.gc-view-order-page) .gc-page__wrap {
		width: min(100% - 20px, 1220px);
	}

	.gc-view-order,
	.gc-view-order__wrap {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.gc-view-order-wrap,
	.gc-view-order__wrap {
		width: min(100%, 1180px);
		padding: 24px 14px 42px;
	}

	.gc-view-order-hero,
	.gc-view-order-card,
	.gc-view-order-empty .gc-view-order-card {
		padding: 18px;
		border-radius: 20px;
	}

	.gc-view-order-hero h1,
	.gc-view-order-empty h1 {
		font-size: 34px;
	}

	.gc-account-access__grid {
		grid-template-columns: 1fr;
	}

	.gc-account-access__field {
		grid-template-columns: 1fr;
	}

	.gc-account-access__field button {
		width: 100%;
	}

	.gc-view-order-item {
		grid-template-columns: 68px minmax(0, 1fr);
	}

	.gc-view-order-item__price {
		grid-column: 2;
		text-align: left;
	}

	.gc-view-order-item__thumb,
	.gc-view-order-item__thumb img {
		width: 68px;
		height: 56px;
	}

	.gc-view-order-meta div {
		display: grid;
		gap: 5px;
	}

	.gc-view-order-meta dd {
		text-align: left;
	}

	.gc-view-order-button,
	.gc-view-order-nav {
		width: 100%;
	}
}

/* GameCase Account Orders */
.gc-account-orders {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	color: #0F172A;
	font-family: Manrope, Inter, Arial, sans-serif;
}

.gc-account-orders__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	margin-bottom: 24px;
	padding: 30px 34px;
	border: 1px solid #E4E8EC;
	border-radius: 24px;
	background: #FFFFFF;
	box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.gc-account-orders__hero h1 {
	margin: 0;
	color: #0F172A;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -.02em;
}

.gc-account-orders__hero p {
	max-width: 660px;
	margin: 12px 0 0;
	color: #61708A;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
}

.gc-account-orders__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 250px;
	padding: 14px 16px;
	border: 1px solid #9DD2C8;
	border-radius: 18px;
	background: #EAF6F3;
	color: #0A7C6D;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
}

.gc-account-orders__badge span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: #FFFFFF;
	box-shadow: inset 0 0 0 1px rgba(10, 124, 109, .18);
}

.gc-account-orders__grid {
	display: grid;
	gap: 18px;
}

.gc-account-order-card,
.gc-account-orders__empty {
	border: 1px solid #E4E8EC;
	border-radius: 22px;
	background: #FFFFFF;
	box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.gc-account-order-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(250px, .35fr);
	gap: 24px;
	align-items: stretch;
	padding: 24px;
}

.gc-account-order-card__main,
.gc-account-order-card__side {
	min-width: 0;
}

.gc-account-order-card__top {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: flex-start;
	margin-bottom: 20px;
}

.gc-account-order-card h2 {
	margin: 0;
	color: #0F172A;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.01em;
}

.gc-account-order-card__top p {
	margin: 7px 0 0;
	color: #61708A;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
}

.gc-account-order-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 8px 12px;
	border-radius: 999px;
	background: #EAF6F3;
	color: #0A7C6D;
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.gc-account-order-status--pending {
	background: #FFF4E5;
	color: #B54708;
}

.gc-account-order-status--on-hold {
	background: #FFF8E8;
	color: #9A5F00;
}

.gc-account-order-status--cancelled,
.gc-account-order-status--failed {
	background: #FFF1F1;
	color: #B42318;
}

.gc-account-order-status--refunded {
	background: #F2F4F7;
	color: #475467;
}

.gc-account-order-card__products {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	padding: 18px;
	border: 1px solid #E4E8EC;
	border-radius: 18px;
	background: #F8FAFA;
}

.gc-account-order-card__thumbs {
	display: flex;
	align-items: center;
}

.gc-account-order-thumb {
	display: block;
	overflow: hidden;
	width: 72px;
	height: 58px;
	border: 2px solid #FFFFFF;
	border-radius: 14px;
	background: #FFFFFF;
	box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}

.gc-account-order-thumb + .gc-account-order-thumb {
	margin-left: -20px;
}

.gc-account-order-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-account-order-card__names {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.gc-account-order-card__names strong {
	display: -webkit-box;
	overflow: hidden;
	color: #0F172A;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.gc-account-order-card__names span {
	color: #61708A;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.gc-account-order-card__side {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 18px;
	padding-left: 24px;
	border-left: 1px solid rgba(15, 27, 61, .08);
}

.gc-account-order-card__total span {
	display: inline-flex;
	margin-bottom: 0;
	color: #6C7890;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

.gc-account-order-card__total strong {
	color: #0F1B3D;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	white-space: nowrap;
}

.gc-account-order-total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	white-space: nowrap;
}

.gc-account-order-total__label,
.gc-account-order-total__value,
.gc-account-order-total__value .amount,
.gc-account-order-total__value .woocommerce-Price-amount,
.gc-account-order-total__value .woocommerce-Price-amount bdi {
	white-space: nowrap !important;
}

.gc-account-order-total__value {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	min-width: max-content;
	color: #0F1B3D;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	text-align: right;
}

.gc-account-order-card__actions {
	display: grid;
	gap: 10px;
}

.gc-account-orders__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 18px;
	border: 1px solid #0A7C6D;
	border-radius: 14px;
	background: #0A7C6D;
	color: #FFFFFF !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none !important;
	box-shadow: 0 12px 28px rgba(10, 124, 109, .18);
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.gc-account-orders__button:hover {
	border-color: #08695D;
	background: #08695D;
	color: #FFFFFF !important;
	box-shadow: 0 14px 30px rgba(10, 124, 109, .24);
}

.gc-account-orders__button--outline {
	background: #FFFFFF;
	color: #0A7C6D !important;
	box-shadow: none;
}

.gc-account-orders__button--outline:hover {
	background: #EAF6F3;
	color: #08695D !important;
	box-shadow: none;
}

.gc-account-orders__pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.gc-account-orders__empty {
	padding: 34px;
	text-align: center;
}

.gc-account-orders__empty h2 {
	margin: 0;
	color: #0F172A;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.2;
}

.gc-account-orders__empty p {
	max-width: 520px;
	margin: 12px auto 22px;
	color: #61708A;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
}

@media (max-width: 900px) {
	.gc-account-orders__hero,
	.gc-account-order-card {
		grid-template-columns: 1fr;
	}

	.gc-account-orders__badge {
		width: 100%;
		min-width: 0;
	}

	.gc-account-order-card__side {
		padding-top: 20px;
		padding-left: 0;
		border-top: 1px solid rgba(15, 27, 61, .08);
		border-left: 0;
	}
}

@media (max-width: 640px) {
	.gc-account-orders__hero,
	.gc-account-order-card,
	.gc-account-orders__empty {
		padding: 18px;
		border-radius: 20px;
	}

	.gc-account-orders__hero h1 {
		font-size: 34px;
	}

	.gc-account-order-card__top {
		display: grid;
	}

	.gc-account-order-card__products {
		grid-template-columns: 1fr;
	}

	.gc-account-order-card__actions,
	.gc-account-orders__button,
	.gc-account-orders__pagination {
		width: 100%;
	}
}

/* GameCase Account Dashboard */
.gc-account-dashboard {
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	padding: 48px 24px 70px;
	box-sizing: border-box;
	color: #0F172A;
	font-family: Manrope, Inter, Arial, sans-serif;
}

.gc-page:has(.gc-account-dashboard) {
	padding: 0;
	background: #F6F8F9;
}

.gc-page:has(.gc-account-dashboard) .gc-page__wrap {
	width: min(100% - 32px, 1220px);
	max-width: 1220px;
}

.gc-page:has(.gc-account-dashboard) .gc-page__card {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.gc-page:has(.gc-account-dashboard) .gc-page__title {
	display: none;
}

.gc-page:has(.gc-account-dashboard) .gc-page__content {
	font-size: inherit;
	line-height: inherit;
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) {
	width: min(100% - 32px, 1220px);
	max-width: 1220px;
	margin: 0 auto;
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-content {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

.gc-account-dashboard__hero,
.gc-account-dashboard__card,
.gc-account-dashboard__panel,
.gc-account-dashboard__support {
	border: 1px solid #E4E8EC;
	border-radius: 22px;
	background: #FFFFFF;
	box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.gc-account-dashboard__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	margin-bottom: 24px;
	padding: 34px 40px;
}

.gc-account-dashboard__hero h1 {
	margin: 0;
	color: #0F172A;
	font-size: clamp(36px, 4vw, 48px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -.02em;
}

.gc-account-dashboard__hero p {
	max-width: 620px;
	margin: 12px 0 0;
	color: #61708A;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.55;
}

.gc-account-dashboard__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 260px;
	padding: 14px 16px;
	border: 1px solid #9DD2C8;
	border-radius: 18px;
	background: #EAF6F3;
	color: #0A7C6D;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
}

.gc-account-dashboard__badge span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: #FFFFFF;
	box-shadow: inset 0 0 0 1px rgba(10, 124, 109, .18);
}

.gc-account-dashboard__actions {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 24px;
}

.gc-account-dashboard__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	min-height: 220px;
	padding: 24px;
}

.gc-account-dashboard__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: #EAF6F3;
	color: #0A7C6D;
	font-size: 14px;
	font-weight: 800;
}

.gc-account-dashboard__card h2,
.gc-account-dashboard__panel h2,
.gc-account-dashboard__support h2 {
	margin: 0;
	color: #0F172A;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.01em;
}

.gc-account-dashboard__card h2 {
	font-size: 20px;
}

.gc-account-dashboard__card p {
	margin: 10px 0 20px;
	color: #61708A;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
}

.gc-account-dashboard__card .gc-account-dashboard__button {
	margin-top: auto;
}

.gc-account-dashboard__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 16px;
	border: 1px solid #0A7C6D;
	border-radius: 14px;
	background: #0A7C6D;
	color: #FFFFFF !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	box-shadow: 0 12px 28px rgba(10, 124, 109, .18);
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.gc-account-dashboard__button:hover {
	border-color: #08695D;
	background: #08695D;
	color: #FFFFFF !important;
	box-shadow: 0 14px 30px rgba(10, 124, 109, .24);
}

.gc-account-dashboard__button--outline {
	background: #FFFFFF;
	color: #0A7C6D !important;
	box-shadow: none;
}

.gc-account-dashboard__button--outline:hover {
	background: #EAF6F3;
	color: #08695D !important;
	box-shadow: none;
}

.gc-account-dashboard__button--compact {
	min-height: 40px;
	padding: 10px 14px;
}

.gc-account-dashboard__grid,
.gc-account-dashboard__middle {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 22px;
	align-items: start;
	margin-bottom: 24px;
}

.gc-account-dashboard__panel {
	padding: 28px;
}

.gc-account-dashboard__panel-head {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: center;
	margin-bottom: 18px;
}

.gc-account-dashboard__panel-head a {
	color: #0A7C6D;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.gc-account-dashboard__orders {
	display: grid;
	gap: 12px;
}

.gc-account-dashboard-order {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px 16px;
	align-items: center;
	padding: 18px;
	border: 1px solid #E4E8EC;
	border-radius: 18px;
	background: #F8FAFA;
}

.gc-account-dashboard-order h3 {
	margin: 0;
	color: #0F172A;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.gc-account-dashboard-order p {
	margin: 5px 0 0;
	color: #61708A;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
}

.gc-account-dashboard-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 7px 11px;
	border-radius: 999px;
	background: #EAF6F3;
	color: #0A7C6D;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.gc-account-dashboard-status--pending {
	background: #FFF4E5;
	color: #B54708;
}

.gc-account-dashboard-status--on-hold {
	background: #FFF8E8;
	color: #9A5F00;
}

.gc-account-dashboard-status--cancelled,
.gc-account-dashboard-status--failed {
	background: #FFF1F1;
	color: #B42318;
}

.gc-account-dashboard-status--refunded {
	background: #F2F4F7;
	color: #475467;
}

.gc-account-dashboard-order__total {
	justify-self: start;
	color: #0F1B3D;
	font-size: 15px;
	font-weight: 800;
	white-space: nowrap;
}

.gc-account-dashboard-order .gc-account-dashboard__button {
	justify-self: end;
}

.gc-account-dashboard__empty {
	padding: 22px;
	border: 1px solid #E4E8EC;
	border-radius: 18px;
	background: #F8FAFA;
}

.gc-account-dashboard__empty h3 {
	margin: 0;
	color: #0F172A;
	font-size: 18px;
	font-weight: 800;
}

.gc-account-dashboard__empty p {
	margin: 8px 0 16px;
	color: #61708A;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
}

.gc-account-dashboard__step-list {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.gc-account-dashboard__step-list div {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 15px;
	border: 1px solid #E4E8EC;
	border-radius: 16px;
	background: #FFFFFF;
}

.gc-account-dashboard__step-list span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: #EAF6F3;
	color: #0A7C6D;
	font-size: 13px;
	font-weight: 800;
}

.gc-account-dashboard__step-list strong {
	color: #22324D;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
}

.gc-account-dashboard__support {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	padding: 28px 34px;
}

.gc-account-dashboard__support p {
	margin: 8px 0 0;
	color: #61708A;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
}

.gc-account-dashboard__support-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

@media (max-width: 1100px) {
	.gc-account-dashboard__actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.gc-account-dashboard__hero,
	.gc-account-dashboard__grid,
	.gc-account-dashboard__middle,
	.gc-account-dashboard__support {
		grid-template-columns: 1fr;
	}

	.gc-account-dashboard__badge {
		width: 100%;
		min-width: 0;
	}

	.gc-account-dashboard__support-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.gc-account-dashboard {
		padding: 24px 14px 42px;
	}

	.woocommerce-account .woocommerce:has(.gc-account-dashboard),
	.gc-page:has(.gc-account-dashboard) .gc-page__wrap {
		width: min(100% - 20px, 1220px);
	}

	.gc-account-dashboard__hero,
	.gc-account-dashboard__card,
	.gc-account-dashboard__panel,
	.gc-account-dashboard__support {
		padding: 18px;
		border-radius: 20px;
	}

	.gc-account-dashboard__hero h1 {
		font-size: 34px;
	}

	.gc-account-dashboard__actions {
		grid-template-columns: 1fr;
	}

	.gc-account-dashboard-order {
		grid-template-columns: 1fr;
	}

	.gc-account-dashboard__button,
	.gc-account-dashboard__support-actions {
		width: 100%;
	}
}

/* GameCase My Account Navigation */
.gc-page:has(.gc-account-dashboard),
.gc-page:has(.gc-account-orders),
.gc-page:has(.gc-view-order-page) {
	padding: 0;
	background: #F6F8F9;
}

.gc-page:has(.gc-account-dashboard) .gc-page__wrap,
.gc-page:has(.gc-account-orders) .gc-page__wrap,
.gc-page:has(.gc-view-order-page) .gc-page__wrap {
	width: min(100% - 32px, 1220px);
	max-width: 1220px;
}

.gc-page:has(.gc-account-dashboard) .gc-page__card,
.gc-page:has(.gc-account-orders) .gc-page__card,
.gc-page:has(.gc-view-order-page) .gc-page__card {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.gc-page:has(.gc-account-dashboard) .gc-page__title,
.gc-page:has(.gc-account-orders) .gc-page__title,
.gc-page:has(.gc-view-order-page) .gc-page__title {
	display: none;
}

.gc-page:has(.gc-account-dashboard) .gc-page__content,
.gc-page:has(.gc-account-orders) .gc-page__content,
.gc-page:has(.gc-view-order-page) .gc-page__content {
	font-size: inherit;
	line-height: inherit;
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard),
.woocommerce-account .woocommerce:has(.gc-account-orders),
.woocommerce-account .woocommerce:has(.gc-view-order-page) {
	width: min(100% - 32px, 1220px);
	max-width: 1220px;
	margin: 0 auto;
	padding-top: 42px;
	padding-bottom: 72px;
	box-sizing: border-box;
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation {
	display: block !important;
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 0 22px !important;
	padding: 10px !important;
	border: 1px solid #E3E8EE;
	border-radius: 18px;
	background: #FFFFFF;
	box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
	box-sizing: border-box;
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation-link--downloads,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation-link--downloads,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation-link--downloads {
	display: none !important;
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-content {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation ul,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation ul,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation li,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation li,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation li {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation li::before,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation li::before,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation li::before {
	display: none !important;
	content: none !important;
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation a,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation a,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 12px;
	background: #F6F8F9;
	color: #0F1B3D;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation a::before,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation a::before,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation a::before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	font-size: 14px;
	line-height: 1;
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation-link--dashboard a::before,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation-link--dashboard a::before,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation-link--dashboard a::before {
	content: "\1F3E0";
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation-link--orders a::before,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation-link--orders a::before,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation-link--orders a::before {
	content: "\1F4E6";
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation-link--support a::before,
.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation-link--tickets a::before,
.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation-link--appeals a::before,
.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation a[href*="support"]::before,
.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation a[href*="ticket"]::before,
.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation a[href*="obrash"]::before,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation-link--support a::before,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation-link--tickets a::before,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation-link--appeals a::before,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation a[href*="support"]::before,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation a[href*="ticket"]::before,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation a[href*="obrash"]::before,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation-link--support a::before,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation-link--tickets a::before,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation-link--appeals a::before,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation a[href*="support"]::before,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation a[href*="ticket"]::before,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation a[href*="obrash"]::before {
	content: "\1F4AC";
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation-link--questionnaire a::before,
.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation-link--anketa a::before,
.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation-link--edit-account a::before,
.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation a[href*="anketa"]::before,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation-link--questionnaire a::before,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation-link--anketa a::before,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation-link--edit-account a::before,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation a[href*="anketa"]::before,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation-link--questionnaire a::before,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation-link--anketa a::before,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation-link--edit-account a::before,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation a[href*="anketa"]::before {
	content: "\1F4DD";
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation-link--customer-logout a::before,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation-link--customer-logout a::before,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation-link--customer-logout a::before {
	content: "\1F6AA";
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation a:hover {
	background: rgba(0, 124, 109, .08);
	color: #007C6D;
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation-link.is-active a,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation-link.is-active a,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation-link.is-active a {
	background: #007C6D;
	color: #FFFFFF !important;
	box-shadow: 0 10px 22px rgba(0, 124, 109, .18);
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation-link--customer-logout a,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation-link--customer-logout a,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation-link--customer-logout a {
	background: #FFF4F4;
	color: #8A3B3B;
}

.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation-link--customer-logout a:hover,
.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation-link--customer-logout a:hover,
.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation-link--customer-logout a:hover {
	background: #FFE9E9;
	color: #7A2F2F;
}

@media (max-width: 768px) {
	.gc-page:has(.gc-account-dashboard) .gc-page__wrap,
	.gc-page:has(.gc-account-orders) .gc-page__wrap,
	.gc-page:has(.gc-view-order-page) .gc-page__wrap,
	.woocommerce-account .woocommerce:has(.gc-account-dashboard),
	.woocommerce-account .woocommerce:has(.gc-account-orders),
	.woocommerce-account .woocommerce:has(.gc-view-order-page) {
		width: min(100% - 20px, 1220px);
		padding-top: 28px;
		padding-bottom: 54px;
	}

	.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation::-webkit-scrollbar,
	.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation::-webkit-scrollbar,
	.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation::-webkit-scrollbar {
		display: none;
	}

	.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation ul,
	.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation ul,
	.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation ul {
		flex-wrap: nowrap;
		width: max-content;
		min-width: 100%;
	}

	.woocommerce-account .woocommerce:has(.gc-account-dashboard) .woocommerce-MyAccount-navigation a,
	.woocommerce-account .woocommerce:has(.gc-account-orders) .woocommerce-MyAccount-navigation a,
	.woocommerce-account .woocommerce:has(.gc-view-order-page) .woocommerce-MyAccount-navigation a {
		min-height: 40px;
		padding: 0 12px;
		font-size: 13px;
	}
}

/* GameCase Order Pay Page */
.gc-account-orders .amount,
.gc-account-orders .woocommerce-Price-amount,
.gc-account-orders .gc-account-order-card__total,
.gc-account-orders .gc-account-order-card__total strong,
.gc-account-orders .gc-account-order-card__side,
.gc-account-orders .gc-account-order-card__side .amount {
	white-space: nowrap;
}

body.woocommerce-order-pay .site-main,
body.woocommerce-order-pay main,
body.woocommerce-order-pay .entry-content,
body.woocommerce-order-pay .woocommerce {
	width: 100%;
	max-width: none;
	float: none !important;
}

body.woocommerce-order-pay .gc-order-pay-shell {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	padding: 42px 16px 72px;
	box-sizing: border-box;
}

body.woocommerce-order-pay .gc-order-pay-page,
.gc-order-pay-page {
	display: block;
	clear: both;
	float: none !important;
	width: 100%;
	max-width: 1220px !important;
	margin: 0 auto !important;
	background: transparent;
	color: #0F172A;
	font-family: Manrope, Inter, Arial, sans-serif;
	box-sizing: border-box;
}

body.woocommerce-order-pay .gc-order-pay-page {
	margin-left: auto !important;
	margin-right: auto !important;
}

body.woocommerce-order-pay .gc-order-pay-page *,
body.woocommerce-order-pay .gc-order-pay-page *::before,
body.woocommerce-order-pay .gc-order-pay-page *::after,
.gc-order-pay-page *,
.gc-order-pay-page *::before,
.gc-order-pay-page *::after {
	box-sizing: border-box;
}

.gc-page:has(.gc-order-pay-page) {
	padding: 0;
	background: #F6F8F9;
}

.gc-page:has(.gc-order-pay-page) .gc-page__wrap {
	width: min(100% - 32px, 1220px);
	max-width: 1220px;
}

.gc-page:has(.gc-order-pay-page) .gc-page__card {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.gc-page:has(.gc-order-pay-page) .gc-page__title {
	display: none;
}

.gc-order-pay-wrap {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}

.gc-order-pay-page,
.gc-order-pay-page .gc-order-pay-wrap {
	margin-left: auto;
	margin-right: auto;
}

.gc-order-pay-page .amount,
.gc-order-pay-page .woocommerce-Price-amount,
.gc-order-pay-page .woocommerce-Price-amount bdi,
.gc-order-pay-page .woocommerce-Price-currencySymbol,
.gc-order-pay-page .gc-order-pay-price,
.gc-order-pay-page .gc-order-pay-summary-value,
.gc-order-pay-page .gc-order-pay-total-value,
.gc-order-pay-page .gc-order-pay-product__price,
.gc-order-pay-page .gc-order-pay-submit__total {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap !important;
	word-break: normal !important;
	overflow-wrap: normal !important;
}

.gc-order-pay-hero,
.gc-order-pay-card,
.gc-order-pay-trust {
	border: 1px solid #E3E8EE;
	border-radius: 24px;
	background: #FFFFFF;
	box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.gc-order-pay-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	margin-bottom: 24px;
	padding: 34px 40px;
}

.gc-order-pay-eyebrow {
	display: block;
	margin-bottom: 10px;
	color: #0A7C6D;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.gc-order-pay-hero h1 {
	margin: 0;
	color: #0F172A;
	font-size: clamp(36px, 4vw, 56px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -.02em;
}

.gc-order-pay-hero p {
	max-width: 640px;
	margin: 12px 0 0;
	color: #61708A;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.55;
}

.gc-order-pay-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 245px;
	padding: 14px 16px;
	border: 1px solid #9DD2C8;
	border-radius: 18px;
	background: #EAF6F3;
	color: #0A7C6D;
}

.gc-order-pay-hero__badge > span,
.gc-order-pay-trust__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: #FFFFFF;
	color: #0A7C6D;
	font-size: 18px;
	font-weight: 900;
	box-shadow: inset 0 0 0 1px #9DD2C8;
}

.gc-order-pay-hero__badge strong,
.gc-order-pay-hero__badge small {
	display: block;
}

.gc-order-pay-hero__badge strong {
	color: #0F172A;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
}

.gc-order-pay-hero__badge small {
	margin-top: 2px;
	color: #5B6472;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
}

.gc-order-pay-form {
	margin: 0;
}

.gc-order-pay-layout {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

body.woocommerce-order-pay .gc-order-pay-hero,
body.woocommerce-order-pay .gc-order-pay-layout,
body.woocommerce-order-pay .gc-order-pay-trust {
	width: 100%;
	max-width: 100%;
}

.gc-order-pay-main,
.gc-order-pay-side {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
}

.gc-order-pay-side {
	position: sticky;
	top: 96px;
}

.gc-order-pay-card {
	padding: 28px;
}

.gc-order-pay-card__head {
	margin-bottom: 22px;
}

.gc-order-pay-card__head h2,
.gc-order-pay-empty h1,
.gc-order-pay-trust h2 {
	margin: 0;
	color: #0F172A;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.01em;
}

.gc-order-pay-card__head p,
.gc-order-pay-empty p,
.gc-order-pay-trust p {
	margin: 8px 0 0;
	color: #61708A;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
}

.gc-order-pay-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}

.gc-order-pay-meta span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 12px;
	border-radius: 999px;
	background: #F6F8F9;
	color: #61708A;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.gc-order-pay-products {
	display: grid;
	gap: 14px;
}

.gc-order-pay-product {
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr) max-content;
	gap: 16px;
	align-items: center;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(15, 27, 61, .08);
}

.gc-order-pay-product__thumb {
	position: relative;
	overflow: hidden;
	width: 86px;
	height: 72px;
	border-radius: 16px;
	background: #F6F8F9;
}

.gc-order-pay-product__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-order-pay-product__thumb span {
	position: absolute;
	right: -2px;
	top: -2px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 7px;
	border-radius: 999px;
	background: #0A7C6D;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 900;
}

.gc-order-pay-product__body {
	min-width: 0;
}

.gc-order-pay-product__body strong {
	display: -webkit-box;
	overflow: hidden;
	color: #0F172A;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.gc-order-pay-product__body small {
	display: block;
	margin-top: 5px;
	color: #61708A;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.gc-order-pay-product__price {
	color: #0F1B3D;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
	text-align: right;
	min-width: max-content;
	white-space: nowrap;
}

.gc-order-pay-lines {
	display: grid;
	margin-top: 20px;
}

.gc-order-pay-line {
	display: grid;
	grid-template-columns: minmax(0, 1fr) max-content;
	align-items: center;
	column-gap: 18px;
	padding: 15px 0;
	border-bottom: 1px solid rgba(15, 27, 61, .08);
	color: #22324D;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
}

.gc-order-pay-line strong,
.gc-order-pay-line .amount {
	color: #0F1B3D;
	font-weight: 800;
	text-align: right;
	min-width: max-content;
	white-space: nowrap;
}

.gc-order-pay-line--discount strong {
	color: #0A7C6D;
}

.gc-order-pay-line--total {
	padding-bottom: 0;
	border-bottom: 0;
	color: #0F172A;
	font-size: 18px;
	font-weight: 800;
}

.gc-order-pay-line--total strong {
	font-size: 22px;
	font-weight: 900;
}

.gc-order-pay-methods.woocommerce-checkout-payment,
.gc-order-pay-methods #payment {
	margin: 0 !important;
	padding: 28px !important;
	border: 1px solid #E3E8EE !important;
	background: #FFFFFF !important;
}

.gc-order-pay-method-list {
	display: grid;
	gap: 12px;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	list-style: none !important;
}

.gc-order-pay-method-list li,
.gc-order-pay-method-list li.wc_payment_method {
	position: relative;
	display: grid !important;
	grid-template-columns: 22px 58px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	min-height: 96px;
	margin: 0 !important;
	padding: 20px !important;
	border: 1px solid #E4E8EC !important;
	border-radius: 18px !important;
	background: #FFFFFF !important;
	color: #0F172A !important;
	list-style: none !important;
	box-sizing: border-box;
}

.gc-order-pay-method-list li::before {
	display: none !important;
	content: none !important;
}

.gc-order-pay-method-list li:has(input:checked) {
	border-color: #0A7C6D !important;
	background: #EAF6F3 !important;
	box-shadow: 0 10px 24px rgba(10, 124, 109, .08);
}

.gc-order-pay-method-list input[type="radio"] {
	grid-column: 1;
	width: 18px;
	height: 18px;
	margin: 0 !important;
	accent-color: #0A7C6D;
}

.gc-order-pay-method-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	grid-column: 2;
	width: 58px;
	height: 58px;
	border: 1px solid #E3E8EE;
	border-radius: 14px;
	background: #FFFFFF;
	color: #0A7C6D;
	box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
}

.gc-order-pay-method-list label {
	grid-column: 3;
	margin: 0 !important;
	color: #0F172A !important;
	font-size: 16px !important;
	font-weight: 800 !important;
	line-height: 1.35 !important;
}

.gc-order-pay-method-list li:first-child label::after {
	content: "Рекомендуем";
	display: inline-flex;
	align-items: center;
	margin-left: 10px;
	padding: 4px 8px;
	border-radius: 999px;
	background: #DFF7EA;
	color: #0A7C6D;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	vertical-align: middle;
}

.gc-order-pay-method-list .payment_box {
	grid-column: 3;
	margin: 8px 0 0 !important;
	padding: 14px !important;
	border-radius: 14px !important;
	background: #F6F8F9 !important;
	color: #5B6472 !important;
	font-size: 14px !important;
	font-weight: 500;
	line-height: 1.5 !important;
}

.gc-order-pay-confirm .woocommerce-terms-and-conditions-wrapper {
	margin: 0 0 18px !important;
	color: #5B6472;
	font-size: 14px;
	line-height: 1.55;
}

.gc-order-pay-confirm .woocommerce-form__label-for-checkbox {
	display: flex !important;
	align-items: flex-start !important;
	gap: 12px !important;
	margin: 0 !important;
	color: #22324D !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.45 !important;
}

.gc-order-pay-confirm input[type="checkbox"] {
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	margin: 0 !important;
	accent-color: #0A7C6D;
}

.gc-order-pay-confirm a {
	color: #0A7C6D;
	font-weight: 800;
	text-decoration: none;
}

.gc-order-pay-submit {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 16px;
	width: 100% !important;
	min-height: 62px !important;
	margin: 0 !important;
	padding: 0 28px !important;
	border: 0 !important;
	border-radius: 14px !important;
	background: #0A7C6D !important;
	color: #FFFFFF !important;
	font-size: 16px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	box-shadow: 0 16px 34px rgba(10, 124, 109, .24) !important;
	cursor: pointer !important;
	white-space: nowrap;
}

.gc-order-pay-submit:hover {
	background: #08695D !important;
	color: #FFFFFF !important;
	box-shadow: 0 18px 38px rgba(10, 124, 109, .28) !important;
}

.gc-order-pay-submit__main {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.gc-order-pay-submit__lock {
	position: relative;
	display: inline-flex;
	flex: 0 0 18px;
	width: 18px;
	height: 14px;
	border: 2px solid currentColor;
	border-radius: 4px;
}

.gc-order-pay-submit__lock::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -10px;
	width: 10px;
	height: 10px;
	border: 2px solid currentColor;
	border-bottom: 0;
	border-radius: 8px 8px 0 0;
	transform: translateX(-50%);
}

.gc-order-pay-submit__total,
.gc-order-pay-submit__total .amount {
	flex: 0 0 auto;
	font-size: 18px;
	font-weight: 900;
	white-space: nowrap !important;
}

.gc-order-pay-trust {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	margin-top: 24px;
	padding: 26px 30px;
}

.gc-order-pay-trust__icon {
	background: #EAF6F3;
}

.gc-order-pay-trust__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

.gc-order-pay-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 18px;
	border: 1px solid #0A7C6D;
	border-radius: 12px;
	background: #0A7C6D;
	color: #FFFFFF !important;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none !important;
	white-space: nowrap;
}

.gc-order-pay-button:hover {
	border-color: #08695D;
	background: #08695D;
	color: #FFFFFF !important;
}

.gc-order-pay-button--outline {
	background: #FFFFFF;
	color: #0A7C6D !important;
}

.gc-order-pay-button--outline:hover {
	background: #EAF6F3;
	color: #08695D !important;
}

.gc-order-pay-empty {
	max-width: 680px;
	margin: 0 auto;
	padding: 34px;
	text-align: center;
}

@media (max-width: 900px) {
	body.woocommerce-order-pay .gc-order-pay-shell {
		padding: 24px 12px 48px;
	}

	.gc-order-pay-layout,
	.gc-order-pay-hero,
	.gc-order-pay-trust {
		grid-template-columns: 1fr;
	}

	.gc-order-pay-side {
		position: static;
	}

	.gc-order-pay-hero__badge,
	.gc-order-pay-trust__actions {
		width: 100%;
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.gc-page:has(.gc-order-pay-page) .gc-page__wrap {
		width: min(100% - 20px, 1220px);
	}

	.gc-order-pay-wrap {
		padding: 0;
	}

	.gc-order-pay-page {
		width: 100% !important;
		margin: 0 auto !important;
	}

	.gc-order-pay-hero,
	.gc-order-pay-card,
	.gc-order-pay-trust,
	.gc-order-pay-empty {
		padding: 18px;
		border-radius: 20px;
	}

	.gc-order-pay-product {
		grid-template-columns: 72px minmax(0, 1fr);
	}

	.gc-order-pay-product__thumb {
		width: 72px;
		height: 60px;
	}

	.gc-order-pay-product__price {
		grid-column: 2;
		text-align: left;
	}

	.gc-order-pay-method-list li,
	.gc-order-pay-method-list li.wc_payment_method {
		grid-template-columns: 20px 48px minmax(0, 1fr);
		gap: 12px;
		padding: 16px !important;
	}

	.gc-order-pay-method-icon {
		width: 48px;
		height: 48px;
	}

	.gc-order-pay-submit {
		min-height: 58px !important;
		padding: 0 18px !important;
		font-size: 14px !important;
	}

	.gc-order-pay-submit__total {
		font-size: 15px;
	}

	.gc-order-pay-button,
	.gc-order-pay-trust__actions {
		width: 100%;
	}
}

body.woocommerce-order-pay main.gc-page.gc-checkout-page {
	width: 100%;
	max-width: none;
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}

body.woocommerce-order-pay .gc-page__wrap.gc-checkout-page__wrap,
body.woocommerce-order-pay .gc-checkout-page__content,
body.woocommerce-order-pay .gc-checkout-page__content > .woocommerce {
	width: 100%;
	max-width: none;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
}

body.woocommerce-order-pay .gc-order-pay-shell {
	display: block !important;
	clear: both;
	float: none !important;
	width: min(100% - 32px, 1220px) !important;
	max-width: 1220px !important;
	margin: 42px auto 72px !important;
	padding: 0 !important;
	box-sizing: border-box;
}

body.woocommerce-order-pay .gc-order-pay-page,
body.woocommerce-order-pay .gc-order-pay-form,
body.woocommerce-order-pay .gc-order-pay-trust {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

body.woocommerce-order-pay .gc-order-pay-hero,
body.woocommerce-order-pay .gc-order-pay-layout,
body.woocommerce-order-pay .gc-order-pay-bottom,
body.woocommerce-order-pay .gc-order-pay-trust {
	width: 100%;
	max-width: 100%;
}

@media (max-width: 900px) {
	body.woocommerce-order-pay .gc-order-pay-shell {
		width: min(100% - 24px, 1220px) !important;
		margin: 24px auto 48px !important;
		padding: 0 !important;
	}

body.woocommerce-order-pay .gc-order-pay-layout {
		grid-template-columns: 1fr;
	}
}

/* GameCase Support Center */
.gc-page:has(.wtsc-support-page),
.gc-page:has(.wtsc-ticket-page),
.gc-page:has(.wt-support-page) {
	padding: 0;
	background: #F4F7F8;
}

.gc-page:has(.wtsc-support-page) .gc-page__wrap,
.gc-page:has(.wtsc-ticket-page) .gc-page__wrap,
.gc-page:has(.wt-support-page) .gc-page__wrap {
	width: min(100% - 32px, 1220px);
	max-width: 1220px;
}

.gc-page:has(.wtsc-support-page) .gc-page__card,
.gc-page:has(.wtsc-ticket-page) .gc-page__card,
.gc-page:has(.wt-support-page) .gc-page__card {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.gc-page:has(.wtsc-support-page) .gc-page__title,
.gc-page:has(.wtsc-ticket-page) .gc-page__title,
.gc-page:has(.wt-support-page) .gc-page__title {
	display: none;
}

.gc-page:has(.wtsc-support-page) .gc-page__content,
.gc-page:has(.wtsc-ticket-page) .gc-page__content,
.gc-page:has(.wt-support-page) .gc-page__content {
	font-size: inherit;
	line-height: inherit;
}

.woocommerce-account .woocommerce:has(.wtsc-support-page),
.woocommerce-account .woocommerce:has(.wtsc-ticket-page),
.woocommerce-account .woocommerce:has(.wt-support-page) {
	width: min(100% - 32px, 1220px);
	max-width: 1220px;
	margin: 0 auto;
	padding-top: 42px;
	padding-bottom: 72px;
	box-sizing: border-box;
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation {
	display: block !important;
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 0 22px !important;
	padding: 10px !important;
	border: 1px solid #E3E8EE;
	border-radius: 18px;
	background: #FFFFFF;
	box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
	box-sizing: border-box;
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation-link--downloads,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation-link--downloads,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation-link--downloads {
	display: none !important;
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-content {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation ul,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation ul,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation li,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation li,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation li {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation li::before,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation li::before,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation li::before {
	display: none !important;
	content: none !important;
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation a,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation a,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 12px;
	background: #F6F8F9;
	color: #0F1B3D;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation a::before,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation a::before,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation a::before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	font-size: 14px;
	line-height: 1;
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation-link--dashboard a::before,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation-link--dashboard a::before,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation-link--dashboard a::before {
	content: "\1F3E0";
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation-link--orders a::before,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation-link--orders a::before,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation-link--orders a::before {
	content: "\1F4E6";
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation-link--support a::before,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation-link--support a::before,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation-link--support a::before,
.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation a[href*="support"]::before,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation a[href*="support"]::before,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation a[href*="support"]::before {
	content: "\1F4AC";
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation-link--edit-account a::before,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation-link--edit-account a::before,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation-link--edit-account a::before,
.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation a[href*="anketa"]::before,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation a[href*="anketa"]::before,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation a[href*="anketa"]::before {
	content: "\1F4DD";
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation-link--customer-logout a::before,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation-link--customer-logout a::before,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation-link--customer-logout a::before {
	content: "\1F6AA";
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation a:hover {
	background: rgba(0, 124, 104, .08);
	color: #007C68;
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation-link.is-active a,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation-link.is-active a,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation-link.is-active a {
	background: #007C68;
	color: #FFFFFF !important;
	box-shadow: 0 10px 22px rgba(0, 124, 104, .18);
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation-link--customer-logout a,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation-link--customer-logout a,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation-link--customer-logout a {
	background: #FFF4F4;
	color: #8A3B3B;
}

.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation-link--customer-logout a:hover,
.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation-link--customer-logout a:hover,
.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation-link--customer-logout a:hover {
	background: #FFE9E9;
	color: #7A2F2F;
}

body.woocommerce-account .wtsc-account.wtsc-myaccount-wrap,
body.woocommerce-account .wtsc-support-page,
body.woocommerce-account .wtsc-ticket-page,
body.woocommerce-account .wt-support-page {
	width: 100%;
	max-width: 1220px;
	margin: 0 auto 72px;
	box-sizing: border-box;
	color: #0F172A;
	font-family: Manrope, Inter, Arial, sans-serif;
}

body.woocommerce-account .wtsc-support-page *,
body.woocommerce-account .wtsc-ticket-page *,
body.woocommerce-account .wt-support-page * {
	box-sizing: border-box;
}

body.woocommerce-account .wtsc-support-page > .woocommerce-notices-wrapper,
body.woocommerce-account .wtsc-ticket-page > .woocommerce-notices-wrapper {
	margin-bottom: 16px;
}

body.woocommerce-account .wtsc-account-header,
body.woocommerce-account .wtsc-support-hero,
body.woocommerce-account .wtsc-ticket-hero,
body.woocommerce-account .wtsc-panel,
body.woocommerce-account .wtsc-support-list-card,
body.woocommerce-account .wtsc-create-ticket-card,
body.woocommerce-account .wtsc-ticket-panel,
body.woocommerce-account .wtsc-ticket-reply-card,
body.woocommerce-account .wtsc-client-warranty {
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 24px;
	background: #FFFFFF;
	box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

body.woocommerce-account .wtsc-account-header,
body.woocommerce-account .wtsc-support-hero,
body.woocommerce-account .wtsc-ticket-hero {
	align-items: center;
	margin: 0;
	padding: 34px 40px;
}

body.woocommerce-account .wtsc-support-header::after,
body.woocommerce-account .wtsc-ticket-header::after {
	content: "Support";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 16px;
	border: 1px solid rgba(0, 124, 104, .18);
	border-radius: 999px;
	background: #EAF6F3;
	color: #007C68;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
}

body.woocommerce-account .wtsc-account-title,
body.woocommerce-account .wtsc-ticket-title {
	margin: 0;
	color: #0F172A;
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -.02em;
}

body.woocommerce-account .wtsc-account-subtitle,
body.woocommerce-account .wtsc-section-desc {
	max-width: 680px;
	margin: 10px 0 0;
	color: #61708A;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
}

body.woocommerce-account .wtsc-account-grid,
body.woocommerce-account .wtsc-support-grid,
body.woocommerce-account .wtsc-ticket-grid {
	gap: 22px;
	margin-top: 22px;
}

body.woocommerce-account .wtsc-support-grid {
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
}

body.woocommerce-account .wtsc-ticket-grid {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

body.woocommerce-account .wtsc-panel,
body.woocommerce-account .wtsc-support-list-card,
body.woocommerce-account .wtsc-create-ticket-card,
body.woocommerce-account .wtsc-ticket-panel,
body.woocommerce-account .wtsc-ticket-reply-card,
body.woocommerce-account .wtsc-client-warranty {
	padding: 28px;
}

body.woocommerce-account .wtsc-panel-heading,
body.woocommerce-account .wtsc-section-head {
	margin: 0 0 20px;
}

body.woocommerce-account .wtsc-section-title {
	margin: 0;
	color: #0F172A;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.01em;
}

body.woocommerce-account .wtsc-empty,
body.woocommerce-account .wtsc-info-box,
body.woocommerce-account .wtsc-file-help {
	color: #61708A;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
}

body.woocommerce-account .wtsc-empty,
body.woocommerce-account .wtsc-info-box {
	margin: 0;
	padding: 16px 18px;
	border: 1px solid rgba(0, 124, 104, .12);
	border-radius: 16px;
	background: #F7FBFA;
}

body.woocommerce-account .wtsc-table-wrap,
body.woocommerce-account .wtsc-table-responsive {
	overflow-x: auto;
	border: 1px solid #E4E8EC;
	border-radius: 20px;
	background: #FFFFFF;
	-webkit-overflow-scrolling: touch;
}

body.woocommerce-account table.wtsc-table,
body.woocommerce-account table.wtsc-support-table,
body.woocommerce-account table.wtsc-ticket-table {
	margin: 0;
	border: 0;
	border-collapse: separate;
	border-spacing: 0;
	background: transparent;
	color: #0F172A;
}

body.woocommerce-account .wtsc-table th,
body.woocommerce-account .wtsc-table td {
	padding: 16px 14px;
	border: 0;
	border-bottom: 1px solid rgba(15, 23, 42, .08);
	color: #22324D;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	vertical-align: middle;
}

body.woocommerce-account .wtsc-table th {
	background: #F6F8F9;
	color: #61708A;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
}

body.woocommerce-account .wtsc-table tr:last-child td {
	border-bottom: 0;
}

body.woocommerce-account .wtsc-table tbody tr {
	transition: background-color .2s ease;
}

body.woocommerce-account .wtsc-table tbody tr:hover {
	background: #F7FBFA;
}

body.woocommerce-account .wtsc-form,
body.woocommerce-account .wtsc-create-form,
body.woocommerce-account .wtsc-ticket-reply-form {
	margin: 0;
}

body.woocommerce-account .wtsc-form-grid {
	gap: 18px;
}

body.woocommerce-account .wtsc-field {
	gap: 8px;
}

body.woocommerce-account .wtsc-field label {
	color: #22324D;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
}

body.woocommerce-account .wtsc-field select,
body.woocommerce-account .wtsc-field textarea,
body.woocommerce-account .wtsc-field input[type="text"],
body.woocommerce-account .wtsc-field input[type="number"],
body.woocommerce-account .wtsc-file-field input[type="file"],
body.woocommerce-account .wtsc-field-file input[type="file"] {
	width: 100%;
	min-height: 52px;
	margin: 0;
	padding: 0 16px;
	border: 1px solid #DDE3EA;
	border-radius: 14px;
	background: #FFFFFF;
	color: #0F172A;
	font: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	box-shadow: none;
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

body.woocommerce-account .wtsc-field textarea {
	min-height: 132px;
	padding-top: 14px;
	padding-bottom: 14px;
	resize: vertical;
}

body.woocommerce-account .wtsc-file-input-shell {
	max-width: 100%;
	padding: 12px;
	border: 1px dashed #B9DCD5;
	border-radius: 16px;
	background: #F7FBFA;
}

body.woocommerce-account .wtsc-file-field input[type="file"],
body.woocommerce-account .wtsc-field-file input[type="file"] {
	min-height: auto;
	padding: 10px 12px;
	border: 0;
	background: transparent;
}

body.woocommerce-account .wtsc-field select:focus,
body.woocommerce-account .wtsc-field textarea:focus,
body.woocommerce-account .wtsc-field input:focus {
	outline: none;
	border-color: #007C68;
	box-shadow: 0 0 0 4px rgba(0, 124, 104, .12);
}

body.woocommerce-account .wtsc-form-actions {
	margin-top: 4px;
}

body.woocommerce-account .wtsc-button,
body.woocommerce-account .wtsc-button:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border: 1px solid #007C68;
	border-radius: 14px;
	background: #007C68;
	color: #FFFFFF !important;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	text-decoration: none !important;
	white-space: nowrap;
	box-shadow: 0 12px 24px rgba(0, 124, 104, .16);
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

body.woocommerce-account .wtsc-button:hover {
	border-color: #006B5B;
	background: #006B5B;
	color: #FFFFFF !important;
	box-shadow: 0 14px 28px rgba(0, 124, 104, .2);
}

body.woocommerce-account .wtsc-button--secondary,
body.woocommerce-account .wtsc-button-secondary {
	background: #FFFFFF;
	color: #007C68 !important;
	box-shadow: none;
}

body.woocommerce-account .wtsc-button--secondary:hover,
body.woocommerce-account .wtsc-button-secondary:hover {
	background: #EAF6F3;
	color: #006B5B !important;
	box-shadow: none;
}

body.woocommerce-account .wtsc-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 7px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

body.woocommerce-account [class*="wtsc-badge-status--waiting_admin"],
body.woocommerce-account [class*="wtsc-badge-status--new"],
body.woocommerce-account [class*="wtsc-badge-status--checking"],
body.woocommerce-account [class*="wtsc-badge-status--replacement"] {
	background: #EAF6F3;
	color: #007C68;
}

body.woocommerce-account [class*="wtsc-badge-status--waiting_customer"],
body.woocommerce-account [class*="wtsc-badge-sla--answered"] {
	background: #EEF5FF;
	color: #2563A6;
}

body.woocommerce-account [class*="wtsc-badge-status--closed"],
body.woocommerce-account [class*="wtsc-badge-status--archived"],
body.woocommerce-account [class*="wtsc-badge-sla--none"] {
	background: #F2F4F7;
	color: #667085;
}

body.woocommerce-account [class*="wtsc-badge-status--rejected"],
body.woocommerce-account [class*="wtsc-badge-status--warranty_expired"],
body.woocommerce-account [class*="wtsc-badge-sla--overdue"] {
	background: #FFF1F1;
	color: #A63838;
}

body.woocommerce-account [class*="wtsc-badge-sla--in_time"],
body.woocommerce-account [class*="wtsc-badge-sla--soon"] {
	background: #FFF7E6;
	color: #996A00;
}

body.woocommerce-account .wtsc-ticket-meta-grid,
body.woocommerce-account .wtsc-ticket-summary-grid {
	gap: 14px;
	margin-top: 24px;
}

body.woocommerce-account .wtsc-ticket-meta-item,
body.woocommerce-account .wtsc-ticket-summary-item {
	padding: 16px;
	border: 1px solid #E4E8EC;
	border-radius: 16px;
	background: #F9FBFC;
}

body.woocommerce-account .wtsc-ticket-meta-label,
body.woocommerce-account .wtsc-ticket-summary-label,
body.woocommerce-account .wtsc-client-warranty-label {
	color: #61708A;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
	text-transform: uppercase;
	letter-spacing: .04em;
}

body.woocommerce-account .wtsc-ticket-meta-value,
body.woocommerce-account .wtsc-ticket-summary-value,
body.woocommerce-account .wtsc-client-warranty-value {
	color: #0F172A;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.4;
}

body.woocommerce-account .wtsc-ticket-back {
	margin-left: auto;
}

body.woocommerce-account .wtsc-ticket-first-message-box,
body.woocommerce-account .wtsc-message-list {
	gap: 14px;
}

body.woocommerce-account .wtsc-message-card {
	padding: 18px;
	border: 1px solid #E4E8EC;
	border-radius: 18px;
	background: #FFFFFF;
	box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}

body.woocommerce-account .wtsc-message-card-admin,
body.woocommerce-account .wtsc-message-card--admin,
body.woocommerce-account .wtsc-message-card--support {
	border-color: rgba(0, 124, 104, .18);
	background: #F0FAF7;
}

body.woocommerce-account .wtsc-message-meta,
body.woocommerce-account .wtsc-message-head {
	align-items: center;
	justify-content: space-between;
	margin: 0 0 10px;
}

body.woocommerce-account .wtsc-message-author {
	color: #0F172A;
	font-size: 14px;
	font-weight: 800;
}

body.woocommerce-account .wtsc-message-date {
	color: #61708A;
	font-size: 12px;
	font-weight: 700;
}

body.woocommerce-account .wtsc-message-content,
body.woocommerce-account .wtsc-message-content p {
	color: #22324D;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;
	white-space: pre-wrap;
	overflow-wrap: break-word;
	word-break: break-word;
}

body.woocommerce-account .wtsc-message-content p {
	margin: 0 0 10px;
}

body.woocommerce-account .wtsc-message-content p:last-child {
	margin-bottom: 0;
}

body.woocommerce-account .wtsc-client-warranty {
	display: grid;
	gap: 12px;
	margin-top: 22px;
	background: linear-gradient(135deg, #FFFFFF 0%, #F4FBF9 100%);
}

body.woocommerce-account .wtsc-client-warranty-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(180px, max-content);
	gap: 16px;
	align-items: center;
	padding: 12px 0;
	border-top: 1px solid rgba(15, 23, 42, .08);
}

body.woocommerce-account .wtsc-client-warranty p {
	margin: 0;
	color: #22324D;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
}

body.woocommerce-account .wtsc-replacement-message {
	display: grid;
	gap: 12px;
}

body.woocommerce-account .wtsc-credentials-box {
	display: grid;
	gap: 10px;
	padding: 14px;
	border: 1px solid rgba(0, 124, 104, .16);
	border-radius: 16px;
	background: #FFFFFF;
}

body.woocommerce-account .wtsc-credential-row {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) 34px;
	gap: 10px;
	align-items: center;
	min-width: 0;
}

body.woocommerce-account .wtsc-credential-label {
	color: #61708A;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
}

body.woocommerce-account .wtsc-credential-value {
	min-width: 0;
	padding: 8px 10px;
	border-radius: 10px;
	background: #F6F8F9;
	color: #0F172A;
	font-family: Manrope, Inter, Arial, sans-serif;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
	overflow-wrap: break-word;
	word-break: break-word;
}

body.woocommerce-account .wtsc-copy-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid #B9DCD5;
	border-radius: 10px;
	background: #EAF6F3;
	color: #007C68;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

body.woocommerce-account .wtsc-copy-icon:hover,
body.woocommerce-account .wtsc-copy-icon.is-copied {
	border-color: #007C68;
	background: #007C68;
	color: #FFFFFF;
}

body.woocommerce-account .wtsc-attachment,
body.woocommerce-account .wtsc-message-attachment {
	max-width: min(320px, 100%);
	margin-top: 14px;
}

body.woocommerce-account .wtsc-attachment-thumb {
	display: block;
	max-width: 100%;
	height: auto;
	border: 1px solid #E4E8EC;
	border-radius: 16px;
	background: #FFFFFF;
	box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

body.woocommerce-account .wtsc-support-page > .woocommerce-message,
body.woocommerce-account .wtsc-ticket-page > .woocommerce-message,
body.woocommerce-account .wt-support-page > .woocommerce-message,
body.woocommerce-account .wtsc-support-page > .woocommerce-notices-wrapper .woocommerce-message,
body.woocommerce-account .wtsc-ticket-page > .woocommerce-notices-wrapper .woocommerce-message,
body.woocommerce-account .wt-support-page > .woocommerce-notices-wrapper .woocommerce-message {
	display: none !important;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-hero,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-header {
	padding: 26px 30px;
	border-radius: 24px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-title,
body.woocommerce-account .wtsc-ticket-page .wtsc-account-title {
	margin: 0;
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.05;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-account-subtitle {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.45;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-back {
	min-height: 40px;
	padding: 10px 14px;
	border-radius: 12px;
	font-size: 13px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-meta-grid,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-summary-grid {
	gap: 8px;
	margin-top: 18px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-meta-item,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-summary-item {
	min-height: 42px;
	padding: 10px 14px;
	border-radius: 12px;
	gap: 4px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-meta-label,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-summary-label {
	font-size: 11px;
	line-height: 1.25;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-meta-value,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-summary-value {
	font-size: 14px;
	line-height: 1.3;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-badge {
	min-height: 26px;
	padding: 6px 10px;
	font-size: 12px;
	line-height: 1.2;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty {
	gap: 8px;
	margin-top: 18px;
	margin-bottom: 22px;
	padding: 22px 26px;
	border-radius: 22px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty .wtsc-panel-heading {
	margin-bottom: 12px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty .wtsc-section-title {
	line-height: 1.15;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty p {
	font-size: 14px;
	line-height: 1.45;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty-row {
	min-height: 38px;
	padding: 8px 0;
	gap: 14px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty-label,
body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty-value {
	line-height: 1.35;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-grid {
	row-gap: 28px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-first-message {
	margin-bottom: 28px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history {
	margin-top: 0;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history h2,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history h3,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-section-title {
	margin-bottom: 16px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-list,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-empty,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-empty-state,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-notice,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-alert {
	margin-top: 14px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-card,
body.woocommerce-account .wtsc-ticket-page .wtsc-message-card-client,
body.woocommerce-account .wtsc-ticket-page .wtsc-message-card-admin {
	min-height: 0;
	padding: 18px 20px;
	border-radius: 18px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-card > * + * {
	margin-top: 10px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-meta,
body.woocommerce-account .wtsc-ticket-page .wtsc-message-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	line-height: 1.3;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-author {
	font-weight: 800;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-date {
	color: #64748B;
	font-size: 13px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-content {
	margin: 0;
	line-height: 1.55;
	white-space: pre-wrap;
	word-break: break-word;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-content p {
	margin: 0;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-content p + p {
	margin-top: 8px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 14px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card-client,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card-admin {
	box-sizing: border-box;
	min-height: auto !important;
	height: auto !important;
	padding: 16px 18px !important;
	border-radius: 18px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card-client {
	border: 1px solid rgba(15, 23, 42, .08);
	background: #FFFFFF;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card-admin,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card--admin,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card--support {
	border: 1px solid rgba(0, 124, 104, .16);
	background: #F3FBF8;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card > * {
	margin-top: 0;
	margin-bottom: 0;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card > * + * {
	margin-top: 10px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card::before,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card::after {
	min-height: 0;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-meta,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 10px;
	padding: 0;
	line-height: 1.25;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-author {
	color: #0F172A;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-date {
	color: #64748B;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0;
	white-space: nowrap;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-content,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-content p {
	margin: 0;
	padding: 0;
	color: #172033;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
	white-space: pre-wrap;
	word-break: break-word;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-content p + p {
	margin-top: 8px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history {
	margin-bottom: 26px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history + .wtsc-ticket-reply,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history + .wtsc-ticket-reply-card,
body.woocommerce-account .wtsc-ticket-page .wtsc-message-list + .wtsc-ticket-reply,
body.woocommerce-account .wtsc-ticket-page .wtsc-message-list + .wtsc-ticket-reply-card,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-thread + .wtsc-ticket-reply,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-thread + .wtsc-ticket-reply-card {
	margin-top: 26px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-list,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-thread {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card--admin,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card--client,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card-admin,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card-client {
	display: block !important;
	min-height: 0 !important;
	height: auto !important;
	padding: 14px 18px !important;
	border-radius: 18px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-head,
body.woocommerce-account .wtsc-ticket-page .wtsc-message-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 0 !important;
	margin: 0 0 10px !important;
	padding: 0 !important;
	line-height: 1.25;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-body {
	min-height: 0 !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-content {
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #172033;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0;
	white-space: pre-wrap;
	word-break: break-word;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-content p {
	margin: 0 !important;
	padding: 0 !important;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-content p + p {
	margin-top: 7px !important;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-author,
body.woocommerce-account .wtsc-ticket-page .wtsc-message-meta strong,
body.woocommerce-account .wtsc-ticket-page .wtsc-message-meta b {
	color: #0F172A;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-message-date,
body.woocommerce-account .wtsc-ticket-page .wtsc-message-meta time {
	color: #64748B;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0;
	white-space: nowrap;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-reply-card .wtsc-form,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-reply-card form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-reply-card .wtsc-field {
	margin-bottom: 0;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-file-field label,
body.woocommerce-account .wtsc-ticket-page .wtsc-field-file label {
	display: block;
	margin-bottom: 10px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-file-input-shell {
	margin-top: 10px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-file-help {
	display: block;
	margin-top: 10px;
	line-height: 1.45;
}

body.woocommerce-account .wtsc-ticket-page {
	--gc-support-card-gap: 22px;
	--gc-support-inner-gap: 14px;
	--gc-support-card-padding: 24px;
}

body.woocommerce-account .wtsc-ticket-page > * + * {
	margin-top: var(--gc-support-card-gap);
}

body.woocommerce-account .wtsc-ticket-page h1,
body.woocommerce-account .wtsc-ticket-page h2,
body.woocommerce-account .wtsc-ticket-page h3 {
	margin-top: 0;
}

body.woocommerce-account .wtsc-ticket-page h1 + *,
body.woocommerce-account .wtsc-ticket-page h2 + *,
body.woocommerce-account .wtsc-ticket-page h3 + * {
	margin-top: 10px;
}

body.woocommerce-account .wtsc-ticket-header::after {
	display: none !important;
	content: none !important;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-hero h1,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-header h1,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-hero .wtsc-ticket-title,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-header .wtsc-ticket-title {
	margin: 0 0 10px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-hero p,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-header p,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-hero .wtsc-account-subtitle,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-header .wtsc-account-subtitle {
	margin: 0 0 16px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-hero .wtsc-button,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-header .wtsc-button {
	margin-top: 4px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-meta-grid,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-summary-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 18px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-meta-item,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-summary-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	min-height: 44px;
	padding: 12px 16px;
	border: 1px solid rgba(15, 23, 42, .07);
	border-radius: 14px;
	background: #F8FAFB;
	gap: 8px;
	line-height: 1.35;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-meta-label,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-summary-label {
	flex: 0 0 auto;
	color: #64748B;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
	text-transform: none;
	letter-spacing: 0;
	white-space: nowrap;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-meta-value,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-summary-value {
	min-width: 0;
	color: #0F172A;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
	overflow-wrap: break-word;
	word-break: break-word;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-meta-value strong,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-summary-value strong,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-meta-value b,
body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-summary-value b {
	font-weight: 800;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-hint {
	margin-top: 14px;
	padding: 16px 18px;
	border-color: rgba(0, 124, 104, .14);
	background: #F4FBF9;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty {
	margin-top: 22px;
	margin-bottom: 26px;
	padding: 24px 26px;
	border-radius: 22px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty p {
	margin: 0;
	line-height: 1.45;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty .wtsc-panel-heading + p {
	margin-top: 0;
	padding: 14px 16px 4px;
	border: 1px solid rgba(0, 124, 104, .12);
	border-bottom: 0;
	border-radius: 16px 16px 0 0;
	background: #F4FBF9;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty .wtsc-panel-heading + p + p {
	padding: 4px 16px;
	border-right: 1px solid rgba(0, 124, 104, .12);
	border-left: 1px solid rgba(0, 124, 104, .12);
	background: #F4FBF9;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty .wtsc-panel-heading + p + p + p {
	margin-bottom: 12px;
	padding: 4px 16px 14px;
	border: 1px solid rgba(0, 124, 104, .12);
	border-top: 0;
	border-radius: 0 0 16px 16px;
	background: #F4FBF9;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty p + p {
	margin-top: 0;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty-row {
	display: grid;
	grid-template-columns: minmax(180px, .8fr) minmax(0, 1fr);
	align-items: center;
	min-height: 42px;
	padding: 10px 0;
	border-top: 0;
	border-bottom: 1px solid rgba(15, 23, 42, .07);
	gap: 18px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty-row:last-child {
	border-bottom: 0;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty-label {
	color: #64748B;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	text-transform: uppercase;
	letter-spacing: .04em;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty-value {
	color: #0F172A;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
	text-align: right;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-first-message {
	margin-bottom: 32px;
}

body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history {
	margin-top: 0;
}

@media (max-width: 1100px) {
	body.woocommerce-account .wtsc-support-grid,
	body.woocommerce-account .wtsc-ticket-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-hero,
	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-header,
	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-panel,
	body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty {
		padding: 20px 18px;
		border-radius: 20px;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-meta-item,
	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-summary-item,
	body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty-row {
		padding: 9px 12px;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-first-message {
		margin-bottom: 22px;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-meta-grid,
	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-summary-grid,
	body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty-row {
		grid-template-columns: 1fr;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-meta-item,
	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-summary-item {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty-row {
		gap: 4px;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-client-warranty-value {
		text-align: left;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-message-card,
	body.woocommerce-account .wtsc-ticket-page .wtsc-message-card-client,
	body.woocommerce-account .wtsc-ticket-page .wtsc-message-card-admin {
		padding: 15px 16px;
		border-radius: 16px;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card,
	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card-client,
	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card-admin {
		padding: 14px 15px !important;
		border-radius: 16px;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card--admin,
	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-card--client {
		padding: 13px 15px !important;
		border-radius: 16px;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-message-list {
		gap: 12px;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-message-meta,
	body.woocommerce-account .wtsc-ticket-page .wtsc-message-head,
	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-meta,
	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
		margin-bottom: 8px !important;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-message-head,
	body.woocommerce-account .wtsc-ticket-page .wtsc-message-meta {
		margin-bottom: 8px !important;
		gap: 6px;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-content,
	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-message-content p {
		font-size: 14px;
		line-height: 1.42;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-message-content {
		font-size: 14px;
		line-height: 1.42;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history {
		margin-bottom: 22px;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history h2,
	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history h3,
	body.woocommerce-account .wtsc-ticket-page .wtsc-ticket-history .wtsc-section-title {
		margin-bottom: 12px;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-file-field label,
	body.woocommerce-account .wtsc-ticket-page .wtsc-field-file label {
		margin-bottom: 8px;
	}

	body.woocommerce-account .wtsc-ticket-page .wtsc-file-help {
		margin-top: 8px;
	}
}

@media (max-width: 900px) {
	.gc-page:has(.wtsc-support-page) .gc-page__wrap,
	.gc-page:has(.wtsc-ticket-page) .gc-page__wrap,
	.gc-page:has(.wt-support-page) .gc-page__wrap,
	.woocommerce-account .woocommerce:has(.wtsc-support-page),
	.woocommerce-account .woocommerce:has(.wtsc-ticket-page),
	.woocommerce-account .woocommerce:has(.wt-support-page) {
		width: min(100% - 24px, 1220px);
		padding-top: 28px;
		padding-bottom: 54px;
	}

	body.woocommerce-account .wtsc-account.wtsc-myaccount-wrap,
	body.woocommerce-account .wtsc-support-page,
	body.woocommerce-account .wtsc-ticket-page,
	body.woocommerce-account .wt-support-page {
		margin-bottom: 54px;
	}

	body.woocommerce-account .wtsc-account-header,
	body.woocommerce-account .wtsc-support-hero,
	body.woocommerce-account .wtsc-ticket-hero,
	body.woocommerce-account .wtsc-panel,
	body.woocommerce-account .wtsc-support-list-card,
	body.woocommerce-account .wtsc-create-ticket-card,
	body.woocommerce-account .wtsc-ticket-panel,
	body.woocommerce-account .wtsc-ticket-reply-card,
	body.woocommerce-account .wtsc-client-warranty {
		padding: 22px;
		border-radius: 20px;
	}

	body.woocommerce-account .wtsc-form-grid,
	body.woocommerce-account .wtsc-ticket-meta-grid,
	body.woocommerce-account .wtsc-ticket-summary-grid {
		grid-template-columns: 1fr;
	}

	body.woocommerce-account .wtsc-client-warranty-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation::-webkit-scrollbar,
	.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation::-webkit-scrollbar,
	.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation::-webkit-scrollbar {
		display: none;
	}

	.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation ul,
	.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation ul,
	.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation ul {
		flex-wrap: nowrap;
		width: max-content;
		min-width: 100%;
	}

	.woocommerce-account .woocommerce:has(.wtsc-support-page) .woocommerce-MyAccount-navigation a,
	.woocommerce-account .woocommerce:has(.wtsc-ticket-page) .woocommerce-MyAccount-navigation a,
	.woocommerce-account .woocommerce:has(.wt-support-page) .woocommerce-MyAccount-navigation a {
		min-height: 40px;
		padding: 0 12px;
		font-size: 13px;
	}

	body.woocommerce-account .wtsc-table-wrap,
	body.woocommerce-account .wtsc-table-responsive {
		max-width: 100%;
		overflow-x: auto;
	}
}

@media (max-width: 560px) {
	.gc-page:has(.wtsc-support-page) .gc-page__wrap,
	.gc-page:has(.wtsc-ticket-page) .gc-page__wrap,
	.gc-page:has(.wt-support-page) .gc-page__wrap,
	.woocommerce-account .woocommerce:has(.wtsc-support-page),
	.woocommerce-account .woocommerce:has(.wtsc-ticket-page),
	.woocommerce-account .woocommerce:has(.wt-support-page) {
		width: min(100% - 20px, 1220px);
	}

	body.woocommerce-account .wtsc-account-title,
	body.woocommerce-account .wtsc-ticket-title {
		font-size: 30px;
	}

	body.woocommerce-account .wtsc-account-header,
	body.woocommerce-account .wtsc-support-hero,
	body.woocommerce-account .wtsc-ticket-hero,
	body.woocommerce-account .wtsc-panel,
	body.woocommerce-account .wtsc-support-list-card,
	body.woocommerce-account .wtsc-create-ticket-card,
	body.woocommerce-account .wtsc-ticket-panel,
	body.woocommerce-account .wtsc-ticket-reply-card,
	body.woocommerce-account .wtsc-client-warranty {
		padding: 18px;
	}

	body.woocommerce-account .wtsc-support-header::after,
	body.woocommerce-account .wtsc-ticket-header::after,
	body.woocommerce-account .wtsc-ticket-back {
		width: 100%;
	}

	body.woocommerce-account .wtsc-button,
	body.woocommerce-account .wtsc-form-actions {
		width: 100%;
	}

	body.woocommerce-account .wtsc-credential-row {
		grid-template-columns: 1fr 34px;
	}

	body.woocommerce-account .wtsc-credential-label {
		grid-column: 1 / -1;
	}

	body.woocommerce-account .wtsc-attachment,
	body.woocommerce-account .wtsc-message-attachment,
	body.woocommerce-account .wtsc-attachment-thumb {
		max-width: 100%;
	}
}

/* GameCase Edit Account */
.gc-page:has(.woocommerce-EditAccountForm) {
	padding: 0;
	background: #F4F7F8;
}

.gc-page:has(.woocommerce-EditAccountForm) .gc-page__wrap {
	width: min(100% - 32px, 1220px);
	max-width: 1220px;
}

.gc-page:has(.woocommerce-EditAccountForm) .gc-page__card {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.gc-page:has(.woocommerce-EditAccountForm) .gc-page__title {
	display: none;
}

.gc-page:has(.woocommerce-EditAccountForm) .gc-page__content {
	font-size: inherit;
	line-height: inherit;
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) {
	width: min(100% - 32px, 1220px);
	max-width: 1220px;
	margin: 0 auto;
	padding-top: 42px;
	padding-bottom: 72px;
	box-sizing: border-box;
	color: #0F172A;
	font-family: Manrope, Inter, Arial, sans-serif;
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation {
	display: block !important;
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 0 22px !important;
	padding: 10px !important;
	border: 1px solid #E3E8EE;
	border-radius: 18px;
	background: #FFFFFF;
	box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
	box-sizing: border-box;
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation-link--downloads {
	display: none !important;
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-content {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation li {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation li::before {
	display: none !important;
	content: none !important;
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 12px;
	background: #F6F8F9;
	color: #0F1B3D;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation a::before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	font-size: 14px;
	line-height: 1;
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation-link--dashboard a::before {
	content: "\1F3E0";
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation-link--orders a::before {
	content: "\1F4E6";
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation-link--support a::before,
body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation a[href*="support"]::before {
	content: "\1F4AC";
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation-link--edit-account a::before,
body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation a[href*="anketa"]::before {
	content: "\1F4DD";
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation-link--customer-logout a::before {
	content: "\1F6AA";
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation a:hover {
	background: rgba(15, 118, 110, .08);
	color: #0F766E;
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation-link.is-active a {
	background: #0F766E;
	color: #FFFFFF !important;
	box-shadow: 0 10px 22px rgba(15, 118, 110, .18);
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation-link--customer-logout a {
	background: #FFF4F4;
	color: #8A3B3B;
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation-link--customer-logout a:hover {
	background: #FFE9E9;
	color: #7A2F2F;
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-message,
body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-info,
body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-error {
	margin: 0 0 18px;
	padding: 14px 18px;
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 16px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-message {
	background: #EAF6F3;
	color: #0A7C6D;
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-info {
	background: #F6F8F9;
	color: #5B6472;
}

body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-error {
	background: #FFF1F1;
	color: #A63838;
	list-style: none;
}

body.woocommerce-account .woocommerce-EditAccountForm {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 28px;
	row-gap: 18px;
	width: 100%;
	margin: 0;
	padding: 34px;
	border: 1px solid rgba(15, 23, 42, .06);
	border-radius: 28px;
	background: #FFFFFF;
	box-shadow: 0 8px 30px rgba(15, 23, 42, .04);
	box-sizing: border-box;
}

body.woocommerce-account .woocommerce-EditAccountForm p,
body.woocommerce-account .woocommerce-EditAccountForm .woocommerce-form-row,
body.woocommerce-account .woocommerce-EditAccountForm .form-row {
	float: none !important;
	width: 100%;
	max-width: none;
	min-width: 0;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body.woocommerce-account .woocommerce-EditAccountForm fieldset {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 22px;
	row-gap: 16px;
	min-width: 0;
	margin: 10px 0 0;
	padding: 26px;
	border: 1px solid rgba(15, 23, 42, .06);
	border-radius: 22px;
	background: #F8FAFC;
	box-sizing: border-box;
}

body.woocommerce-account .woocommerce-EditAccountForm fieldset p,
body.woocommerce-account .woocommerce-EditAccountForm fieldset .form-row {
	margin: 0;
}

body.woocommerce-account .woocommerce-EditAccountForm legend {
	grid-column: 1 / -1;
	width: 100%;
	margin: 0 0 4px;
	padding: 0;
	color: #0F172A;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.01em;
}

body.woocommerce-account .woocommerce-EditAccountForm label {
	display: block;
	margin: 0 0 8px;
	color: #0F172A;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
}

body.woocommerce-account .woocommerce-EditAccountForm .woocommerce-Input,
body.woocommerce-account .woocommerce-EditAccountForm .input-text,
body.woocommerce-account .woocommerce-EditAccountForm input[type="text"],
body.woocommerce-account .woocommerce-EditAccountForm input[type="email"],
body.woocommerce-account .woocommerce-EditAccountForm input[type="password"],
body.woocommerce-account .woocommerce-EditAccountForm textarea {
	display: block;
	width: 100%;
	max-width: none;
	min-height: 56px;
	margin: 0;
	padding: 0 18px;
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 16px;
	background: #FFFFFF;
	color: #0F172A;
	font: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	box-shadow: none;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

body.woocommerce-account .woocommerce-EditAccountForm textarea {
	min-height: 128px;
	padding-top: 14px;
	padding-bottom: 14px;
	resize: vertical;
}

body.woocommerce-account .woocommerce-EditAccountForm .woocommerce-Input:focus,
body.woocommerce-account .woocommerce-EditAccountForm .input-text:focus,
body.woocommerce-account .woocommerce-EditAccountForm input[type="text"]:focus,
body.woocommerce-account .woocommerce-EditAccountForm input[type="email"]:focus,
body.woocommerce-account .woocommerce-EditAccountForm input[type="password"]:focus,
body.woocommerce-account .woocommerce-EditAccountForm textarea:focus {
	border-color: #0F766E;
	box-shadow: 0 0 0 4px rgba(15, 118, 110, .08);
}

body.woocommerce-account .woocommerce-EditAccountForm input::placeholder,
body.woocommerce-account .woocommerce-EditAccountForm textarea::placeholder {
	color: #94A3B8;
}

body.woocommerce-account .woocommerce-EditAccountForm em,
body.woocommerce-account .woocommerce-EditAccountForm small,
body.woocommerce-account .woocommerce-EditAccountForm .description,
body.woocommerce-account .woocommerce-EditAccountForm .woocommerce-password-strength,
body.woocommerce-account .woocommerce-EditAccountForm .woocommerce-password-hint {
	display: block;
	margin-top: 8px;
	color: #64748B;
	font-size: 13px;
	font-weight: 500;
	font-style: normal;
	line-height: 1.5;
}

body.woocommerce-account .woocommerce-EditAccountForm .show-password-input {
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
	color: #64748B;
}

body.woocommerce-account .woocommerce-EditAccountForm p:has(button[type="submit"]),
body.woocommerce-account .woocommerce-EditAccountForm .form-row:has(button[type="submit"]) {
	grid-column: 1 / -1;
	margin-top: 2px;
}

body.woocommerce-account .woocommerce-EditAccountForm button[type="submit"],
body.woocommerce-account .woocommerce-EditAccountForm .button {
	grid-column: 1 / -1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 54px;
	padding: 0 24px;
	border: 0;
	border-radius: 16px;
	background: #0F766E;
	color: #FFFFFF !important;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 14px 28px rgba(15, 118, 110, .18);
	cursor: pointer;
	transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

body.woocommerce-account .woocommerce-EditAccountForm button[type="submit"]:hover,
body.woocommerce-account .woocommerce-EditAccountForm .button:hover {
	background: #0B625C;
	box-shadow: 0 18px 34px rgba(15, 118, 110, .22);
	transform: translateY(-1px);
}

body.woocommerce-account .woocommerce-EditAccountForm input[type="hidden"] {
	display: none;
}

@media (max-width: 768px) {
	.gc-page:has(.woocommerce-EditAccountForm) .gc-page__wrap,
	body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) {
		width: min(100% - 20px, 1220px);
		padding-top: 28px;
		padding-bottom: 54px;
	}

	body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation::-webkit-scrollbar {
		display: none;
	}

	body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation ul {
		flex-wrap: nowrap;
		width: max-content;
		min-width: 100%;
	}

	body.woocommerce-account .woocommerce:has(.woocommerce-EditAccountForm) .woocommerce-MyAccount-navigation a {
		min-height: 40px;
		padding: 0 12px;
		font-size: 13px;
	}

	body.woocommerce-account .woocommerce-EditAccountForm,
	body.woocommerce-account .woocommerce-EditAccountForm fieldset {
		grid-template-columns: 1fr;
		column-gap: 0;
		row-gap: 16px;
	}

	body.woocommerce-account .woocommerce-EditAccountForm {
		padding: 22px;
		border-radius: 22px;
	}

	body.woocommerce-account .woocommerce-EditAccountForm fieldset {
		padding: 20px;
		border-radius: 18px;
	}

	body.woocommerce-account .woocommerce-EditAccountForm legend {
		font-size: 20px;
	}

body.woocommerce-account .woocommerce-EditAccountForm button[type="submit"],
body.woocommerce-account .woocommerce-EditAccountForm .button {
		width: 100%;
	}
}

/* GameCase Contacts Page */
.gc-contacts-page {
	padding: 64px 0 78px;
	background:
		radial-gradient(circle at 14% 6%, rgba(10, 124, 109, .08), transparent 28%),
		linear-gradient(180deg, #FFFFFF 0, var(--gc-bg) 360px);
}

.gc-contacts-page__wrap {
	width: min(100% - 32px, 1220px);
	margin-inline: auto;
}

.gc-contacts-hero,
.gc-contact-card,
.gc-contacts-panel,
.gc-contacts-cta {
	background: var(--gc-card);
	border: 1px solid rgba(228, 232, 236, .92);
	border-radius: 24px;
	box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
}

.gc-contacts-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) max-content;
	align-items: center;
	gap: 28px;
	padding: 38px 42px;
	margin-bottom: 24px;
}

.gc-contacts-eyebrow {
	margin: 0 0 12px;
	color: var(--gc-accent);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.gc-contacts-hero__title {
	margin: 0;
	color: var(--gc-text);
	font-size: clamp(42px, 5vw, 64px);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: -.02em;
}

.gc-contacts-hero__text {
	max-width: 640px;
	margin: 14px 0 0;
	color: var(--gc-muted);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.55;
}

.gc-contacts-hero__badge {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 270px;
	padding: 16px 18px;
	border: 1px solid var(--gc-border-hover);
	border-radius: 18px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
}

.gc-contacts-hero__badge-icon {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	border-radius: 999px;
	background: #FFFFFF;
	font-weight: 900;
	box-shadow: 0 8px 18px rgba(10, 124, 109, .12);
}

.gc-contacts-hero__badge strong,
.gc-contacts-hero__badge small {
	display: block;
}

.gc-contacts-hero__badge strong {
	color: var(--gc-text);
	font-size: 14px;
	line-height: 1.25;
}

.gc-contacts-hero__badge small {
	margin-top: 2px;
	color: var(--gc-muted);
	font-size: 12px;
	line-height: 1.35;
}

.gc-contacts-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 24px;
}

.gc-contact-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	min-height: 174px;
	padding: 24px;
	color: var(--gc-text);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.gc-contact-card:hover,
.gc-contact-card:focus-visible {
	border-color: var(--gc-border-hover);
	box-shadow: var(--gc-shadow-hover);
	transform: translateY(-3px);
}

.gc-contact-card__icon {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	flex: 0 0 auto;
	border-radius: 16px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
}

.gc-contact-card__icon svg {
	display: block;
	width: 24px;
	height: 24px;
}

.gc-contact-card__copy {
	display: grid;
	gap: 7px;
	min-width: 0;
}

.gc-contact-card__copy strong {
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: -.01em;
}

.gc-contact-card__copy span,
.gc-contact-card__copy small {
	color: var(--gc-muted);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
}

.gc-contact-card__copy small {
	color: var(--gc-accent);
	font-weight: 800;
	word-break: break-word;
}

.gc-contacts-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 24px;
	margin-bottom: 24px;
}

.gc-contacts-panel {
	padding: 30px;
}

.gc-contacts-panel h2,
.gc-contacts-cta h2 {
	margin: 0;
	color: var(--gc-text);
	font-size: 24px;
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: -.01em;
}

.gc-contacts-panel p,
.gc-contacts-cta p {
	margin: 12px 0 0;
	color: var(--gc-muted);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;
}

.gc-contacts-list {
	display: grid;
	gap: 10px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.gc-contacts-list li {
	position: relative;
	padding-left: 28px;
	color: var(--gc-text);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
}

.gc-contacts-list li::before {
	content: "";
	position: absolute;
	top: .45em;
	left: 0;
	width: 12px;
	height: 12px;
	border-radius: 999px;
	background: var(--gc-accent);
	box-shadow: 0 0 0 5px var(--gc-accent-soft);
}

.gc-contacts-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 30px 34px;
}

.gc-contacts-cta__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

@media (max-width: 1024px) {
	.gc-contacts-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-contacts-hero {
		grid-template-columns: 1fr;
	}

	.gc-contacts-hero__badge {
		width: 100%;
		min-width: 0;
	}
}

@media (max-width: 760px) {
	.gc-contacts-page {
		padding: 34px 0 54px;
	}

	.gc-contacts-page__wrap {
		width: min(100% - 24px, 1220px);
	}

	.gc-contacts-hero {
		padding: 26px;
		border-radius: 22px;
	}

	.gc-contacts-hero__title {
		font-size: 38px;
	}

	.gc-contacts-hero__text {
		font-size: 15px;
	}

	.gc-contacts-grid,
	.gc-contacts-layout {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.gc-contact-card {
		min-height: auto;
		padding: 20px;
	}

	.gc-contacts-panel {
		padding: 24px;
		border-radius: 22px;
	}

	.gc-contacts-cta {
		display: grid;
		padding: 24px;
		border-radius: 22px;
	}

	.gc-contacts-cta__actions {
		display: grid;
		width: 100%;
	}

	.gc-contacts-cta__actions .gc-button {
		width: 100%;
	}
}

.gc-contact-alert,
.gc-contacts-form-card {
	background: var(--gc-card);
	border: 1px solid rgba(228, 232, 236, .92);
	border-radius: 24px;
	box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
}

.gc-contact-alert {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 24px;
	padding: 20px 22px;
	border-radius: 20px;
	color: var(--gc-text);
}

.gc-contact-alert__icon {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
}

.gc-contact-alert__body {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.gc-contact-alert__title {
	color: var(--gc-text);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.3;
}

.gc-contact-alert__text {
	color: var(--gc-muted);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
}

.gc-contact-alert--success {
	border-color: rgba(10, 124, 109, .18);
	background: var(--gc-accent-soft);
}

.gc-contact-alert--success .gc-contact-alert__icon {
	background: #FFFFFF;
	color: var(--gc-accent);
	box-shadow: 0 8px 18px rgba(10, 124, 109, .12);
}

.gc-contact-alert--error {
	border-color: rgba(176, 58, 58, .18);
	background: #FFF1F1;
}

.gc-contact-alert--error .gc-contact-alert__icon {
	background: #FFFFFF;
	color: #A63838;
	box-shadow: 0 8px 18px rgba(166, 56, 56, .10);
}

.gc-contacts-main {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(380px, .85fr);
	gap: 24px;
	align-items: start;
}

.gc-contacts-main__left {
	display: grid;
	gap: 18px;
	min-width: 0;
}

.gc-contacts-main .gc-contacts-grid {
	grid-template-columns: 1fr;
	margin-bottom: 0;
}

.gc-contacts-main .gc-contact-card {
	min-height: 0;
	align-items: center;
}

.gc-contact-card__copy em {
	display: inline-flex;
	align-items: center;
	width: max-content;
	max-width: 100%;
	min-height: 34px;
	margin-top: 4px;
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	font-size: 13px;
	font-style: normal;
	font-weight: 900;
	line-height: 1.2;
}

.gc-contacts-form-card {
	padding: 30px;
	position: sticky;
	top: 92px;
}

.gc-contacts-form-card__head {
	margin-bottom: 22px;
}

.gc-contacts-form-card__head h2 {
	margin: 0;
	color: var(--gc-text);
	font-size: 28px;
	font-weight: 900;
	line-height: 1.16;
	letter-spacing: -.01em;
}

.gc-contacts-form-card__head p {
	margin: 10px 0 0;
	color: var(--gc-muted);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
}

.gc-contacts-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.gc-contacts-field,
.gc-contacts-agreement,
.gc-contacts-honeypot {
	margin: 0;
	min-width: 0;
}

.gc-contacts-field--wide,
.gc-contacts-agreement,
.gc-contacts-submit {
	grid-column: 1 / -1;
}

.gc-contacts-field label {
	display: block;
	margin: 0 0 8px;
	color: var(--gc-text);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}

.gc-contacts-field input,
.gc-contacts-field textarea {
	display: block;
	width: 100%;
	max-width: none;
	min-height: 56px;
	margin: 0;
	padding: 0 18px;
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 16px;
	background: #FFFFFF;
	color: var(--gc-text);
	font: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	outline: 0;
	box-shadow: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.gc-contacts-field textarea {
	min-height: 142px;
	padding-top: 14px;
	padding-bottom: 14px;
	resize: vertical;
}

.gc-contacts-field input:focus,
.gc-contacts-field textarea:focus {
	border-color: #0F766E;
	box-shadow: 0 0 0 4px rgba(15, 118, 110, .08);
}

.gc-contacts-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.gc-contacts-agreement {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--gc-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
}

.gc-contacts-agreement input {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	margin: 0;
	accent-color: var(--gc-accent);
}

.gc-contacts-agreement a {
	color: var(--gc-accent);
	font-weight: 800;
}

.gc-contacts-steps {
	display: grid;
	gap: 10px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
	counter-reset: gc-contact-step;
}

.gc-contacts-steps li {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-height: 42px;
	color: var(--gc-text);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
	counter-increment: gc-contact-step;
}

.gc-contacts-steps li::before {
	content: counter(gc-contact-step);
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	font-size: 13px;
	font-weight: 900;
}

@media (max-width: 980px) {
	.gc-contacts-main {
		grid-template-columns: 1fr;
	}

	.gc-contacts-form-card {
		position: static;
	}
}

@media (max-width: 760px) {
	.gc-contacts-form-card {
		padding: 24px;
		border-radius: 22px;
	}

	.gc-contact-alert {
		padding: 16px;
		border-radius: 18px;
	}

	.gc-contacts-form {
		grid-template-columns: 1fr;
	}

	.gc-contacts-submit {
		width: 100%;
	}
}

/* GameCase Login Register */
.gc-page:has(.gc-login-register-page) {
	padding: 0;
	background: #F4F7F8;
}

.gc-page:has(.gc-login-register-page) .gc-page__wrap {
	width: min(100% - 32px, 1220px);
	max-width: 1220px;
}

.gc-page:has(.gc-login-register-page) .gc-page__card {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.gc-page:has(.gc-login-register-page) .gc-page__title {
	display: none;
}

body.woocommerce-account .woocommerce:has(.gc-login-register-page) {
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	padding: 42px 0 76px;
	box-sizing: border-box;
	font-family: var(--gc-font);
}

body.woocommerce-account .woocommerce:has(.gc-login-register-page) .woocommerce-message,
body.woocommerce-account .woocommerce:has(.gc-login-register-page) .woocommerce-info,
body.woocommerce-account .woocommerce:has(.gc-login-register-page) .woocommerce-error {
	margin: 0 0 18px;
	padding: 14px 18px;
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
}

body.woocommerce-account .woocommerce:has(.gc-login-register-page) .woocommerce-message {
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
}

body.woocommerce-account .woocommerce:has(.gc-login-register-page) .woocommerce-info {
	background: #F6F8F9;
	color: var(--gc-muted);
}

body.woocommerce-account .woocommerce:has(.gc-login-register-page) .woocommerce-error {
	background: #FFF1F1;
	color: #A63838;
	list-style: none;
}

.gc-login-register-page {
	display: grid;
	gap: 24px;
}

.gc-login-register-hero,
.gc-login-register-card,
.gc-login-register-trust {
	background: var(--gc-card);
	border: 1px solid rgba(228, 232, 236, .92);
	border-radius: 26px;
	box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
}

.gc-login-register-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) max-content;
	align-items: center;
	gap: 26px;
	padding: 38px 42px;
}

.gc-login-register-eyebrow {
	margin: 0 0 12px;
	color: var(--gc-accent);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.gc-login-register-hero h1 {
	margin: 0;
	color: var(--gc-text);
	font-size: clamp(40px, 4.7vw, 58px);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: -.02em;
}

.gc-login-register-hero p {
	max-width: 690px;
	margin: 14px 0 0;
	color: var(--gc-muted);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.55;
}

.gc-login-register-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	border: 1px solid var(--gc-border-hover);
	border-radius: 18px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	font-size: 14px;
	font-weight: 900;
	white-space: nowrap;
}

.gc-login-register-hero__badge span {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: #FFFFFF;
}

.gc-login-register-grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin: 0 !important;
}

.gc-login-register-grid::before,
.gc-login-register-grid::after {
	display: none !important;
	content: none !important;
}

.gc-login-register-grid .u-column1,
.gc-login-register-grid .u-column2,
.gc-login-register-grid .col-1,
.gc-login-register-grid .col-2 {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

.gc-login-register-card {
	padding: 30px;
}

.gc-login-register-card__head {
	margin-bottom: 22px;
}

.gc-login-register-card__head h2 {
	margin: 0;
	color: var(--gc-text);
	font-size: 27px;
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: -.01em;
}

.gc-login-register-card__head p,
.gc-login-register-help,
.gc-register-form .woocommerce-privacy-policy-text {
	margin: 10px 0 0;
	color: var(--gc-muted);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
}

.gc-login-form,
.gc-register-form {
	display: grid;
	gap: 16px;
	margin: 0 !important;
}

.gc-login-form p,
.gc-register-form p,
.gc-login-form .form-row,
.gc-register-form .form-row {
	margin: 0 !important;
	padding: 0 !important;
}

.gc-login-form label,
.gc-register-form label {
	display: block;
	margin: 0 0 8px;
	color: var(--gc-text);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}

.gc-login-form .woocommerce-Input,
.gc-register-form .woocommerce-Input,
.gc-login-form .input-text,
.gc-register-form .input-text {
	display: block;
	width: 100%;
	max-width: none;
	min-height: 56px;
	margin: 0;
	padding: 0 18px;
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 16px;
	background: #FFFFFF;
	color: var(--gc-text);
	font: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	outline: 0;
	box-shadow: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.gc-login-form .woocommerce-Input:focus,
.gc-register-form .woocommerce-Input:focus,
.gc-login-form .input-text:focus,
.gc-register-form .input-text:focus {
	border-color: #0F766E;
	box-shadow: 0 0 0 4px rgba(15, 118, 110, .08);
}

.gc-login-register-card__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
}

.gc-login-register-card__row .woocommerce-form__label-for-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	color: var(--gc-muted);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.gc-login-register-card__row input[type="checkbox"] {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	margin: 0;
	accent-color: var(--gc-accent);
}

.gc-login-register-lost,
.gc-register-form .woocommerce-privacy-policy-text a {
	color: var(--gc-accent);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.gc-login-register-submit {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 54px;
	padding: 0 24px;
	border: 0 !important;
	border-radius: 16px;
	background: #0F766E !important;
	color: #FFFFFF !important;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	box-shadow: 0 14px 28px rgba(15, 118, 110, .18);
	cursor: pointer;
	transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.gc-login-register-submit:hover,
.gc-login-register-submit:focus-visible {
	background: #0B625C !important;
	box-shadow: 0 18px 34px rgba(15, 118, 110, .22);
	transform: translateY(-1px);
}

.gc-login-register-trust {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	padding: 20px;
}

.gc-login-register-trust div {
	padding: 16px;
	border: 1px solid rgba(10, 124, 109, .12);
	border-radius: 18px;
	background: var(--gc-accent-soft);
}

.gc-login-register-trust strong,
.gc-login-register-trust span {
	display: block;
}

.gc-login-register-trust strong {
	color: var(--gc-text);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.3;
}

.gc-login-register-trust span {
	margin-top: 5px;
	color: var(--gc-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
}

@media (max-width: 900px) {
	.gc-login-register-hero,
	.gc-login-register-grid,
	.gc-login-register-trust {
		grid-template-columns: 1fr;
	}

	.gc-login-register-hero__badge {
		width: 100%;
		white-space: normal;
	}
}

@media (max-width: 760px) {
	.gc-page:has(.gc-login-register-page) .gc-page__wrap {
		width: min(100% - 24px, 1220px);
	}

	body.woocommerce-account .woocommerce:has(.gc-login-register-page) {
		padding: 28px 0 54px;
	}

	.gc-login-register-page {
		gap: 18px;
	}

	.gc-login-register-hero,
	.gc-login-register-card {
		padding: 24px;
		border-radius: 22px;
	}

	.gc-login-register-hero h1 {
		font-size: 36px;
	}

	.gc-login-register-hero p {
		font-size: 15px;
	}

	.gc-login-register-card__head h2 {
		font-size: 24px;
	}

	.gc-login-register-submit {
		width: 100%;
	}
}
/* GameCase Front Page Enhancements */
.gc-logo__image,
.gc-footer__logo__image {
	display: block;
	width: auto;
	height: auto;
	max-width: 178px;
	max-height: 48px;
	aspect-ratio: 4 / 1;
	object-fit: contain;
}

.gc-footer__logo__image {
	max-width: 156px;
	max-height: 42px;
}

.gc-hero-card--picker {
	gap: 22px;
}

.gc-hero-card__pick-list {
	display: grid;
	gap: 12px;
}

.gc-hero-card__pick-list a {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	min-height: 74px;
	padding: 14px;
	border: 1px solid rgba(10, 124, 109, .14);
	border-radius: 18px;
	background: #FFFFFF;
	color: var(--gc-text);
	box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.gc-hero-card__pick-list a:hover,
.gc-hero-card__pick-list a:focus-visible {
	transform: translateY(-2px);
	border-color: var(--gc-border-hover);
	box-shadow: var(--gc-shadow);
}

.gc-hero-card__pick-list span {
	display: inline-grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
	font-size: 15px;
	font-weight: 900;
}

.gc-hero-card__pick-list strong {
	font-size: 16px;
	line-height: 1.25;
}

.gc-account-picker-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.gc-account-picker-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 218px;
	padding: 24px;
	border: 1px solid var(--gc-border);
	border-radius: 24px;
	background: #FFFFFF;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
	color: var(--gc-text);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.gc-account-picker-card:hover,
.gc-account-picker-card:focus-visible {
	transform: translateY(-4px);
	border-color: var(--gc-border-hover);
	box-shadow: var(--gc-shadow-hover);
}

.gc-account-picker-card__icon {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
}

.gc-account-picker-card__icon svg,
.gc-seo-mini-card svg,
.gc-trust__card .gc-icon--svg svg {
	width: 24px;
	height: 24px;
}

.gc-account-picker-card strong {
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: -.01em;
}

.gc-account-picker-card > span:not(.gc-account-picker-card__icon) {
	color: var(--gc-muted);
	font-size: 14px;
	line-height: 1.55;
	font-weight: 600;
}

.gc-popular-tanks-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.gc-popular-tank-card {
	display: flex;
	align-items: center;
	gap: 14px;
	height: 100%;
	min-height: 94px;
	padding: 18px;
	border: 1px solid var(--gc-border);
	border-radius: 22px;
	background: #FFFFFF;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
	color: var(--gc-text);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.gc-popular-tank-card:hover,
.gc-popular-tank-card:focus-visible {
	transform: translateY(-3px);
	border-color: var(--gc-border-hover);
	background: linear-gradient(180deg, #FFFFFF, #F4FBF9);
	box-shadow: var(--gc-shadow-hover);
}

.gc-popular-tank-card__icon {
	display: inline-grid;
	place-items: center;
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	border-radius: 16px;
	background: var(--gc-accent-soft);
	color: var(--gc-accent);
}

.gc-popular-tank-card__icon svg {
	width: 24px;
	height: 24px;
}

.gc-popular-tank-card__content {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.gc-popular-tank-card strong {
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: 0;
}

.gc-popular-tank-card small {
	color: var(--gc-muted);
	font-size: 13px;
	line-height: 1.35;
	font-weight: 700;
}

.gc-seo-block {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
	gap: 26px;
	align-items: start;
	padding: 34px;
	border: 1px solid var(--gc-border);
	border-radius: 28px;
	background: #FFFFFF;
	box-shadow: var(--gc-shadow);
}

.gc-seo-block__copy h2 {
	margin: 0;
	font-size: clamp(30px, 3.2vw, 42px);
	line-height: 1.08;
	letter-spacing: -.02em;
}

.gc-seo-block__copy p:not(.gc-eyebrow) {
	margin: 18px 0 0;
	color: var(--gc-muted);
	font-size: 16px;
	line-height: 1.7;
	font-weight: 500;
}

.gc-seo-block__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.gc-seo-mini-card {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 96px;
	padding: 18px;
	border: 1px solid rgba(10, 124, 109, .14);
	border-radius: 20px;
	background: #F8FCFB;
	color: var(--gc-text);
}

.gc-seo-mini-card span {
	display: inline-grid;
	place-items: center;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	border-radius: 14px;
	background: #FFFFFF;
	color: var(--gc-accent);
}

.gc-seo-mini-card strong {
	font-size: 15px;
	line-height: 1.35;
}

.gc-trust__cards--wide {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gc-trust__cards--wide .gc-trust__card {
	align-items: flex-start;
	min-height: 128px;
	font-weight: 700;
}

.gc-trust__cards--wide .gc-trust__card:last-child {
	grid-column: 1 / -1;
}

.gc-trust__card .gc-icon--svg {
	display: inline-grid;
	place-items: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border-radius: 15px;
	background: #FFFFFF;
	color: var(--gc-accent);
}

.gc-trust__card strong,
.gc-trust__card small {
	display: block;
}

.gc-trust__card strong {
	font-size: 16px;
	line-height: 1.25;
}

.gc-trust__card small {
	margin-top: 6px;
	color: var(--gc-muted);
	font-size: 13px;
	line-height: 1.45;
	font-weight: 600;
}

@media (max-width: 1180px) {
	.gc-account-picker-grid,
	.gc-seo-block {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-popular-tanks-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.gc-account-picker-grid,
	.gc-seo-block,
	.gc-seo-block__cards {
		grid-template-columns: 1fr;
	}

	.gc-popular-tanks-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.gc-logo__image {
		max-width: 146px;
		max-height: 40px;
	}

	.gc-footer__logo__image {
		max-width: 136px;
		max-height: 38px;
	}

	.gc-account-picker-card {
		min-height: auto;
		padding: 20px;
		border-radius: 22px;
	}

	.gc-popular-tanks-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.gc-popular-tank-card {
		min-height: auto;
		padding: 16px;
		border-radius: 20px;
	}

	.gc-seo-block {
		padding: 22px;
		border-radius: 24px;
	}

	.gc-seo-mini-card {
		min-height: auto;
		padding: 16px;
	}

	.gc-trust__cards--wide {
		grid-template-columns: 1fr;
	}

	.gc-trust__cards--wide .gc-trust__card:last-child {
		grid-column: auto;
	}
}
