.pcgh-shop-home,
.pcgh-shop-single,
.pcgh-shop-flow {
	--shop-accent: #ff3b5f;
	--shop-accent-2: #ff7043;
	--shop-soft: rgba(255,59,95,.1);
	--shop-radius: 8px;
	background: var(--pcgh-bg);
	color: var(--pcgh-text);
}

/* 商城购物车 / 确认订单 MVP */
.pcgh-shop-flow-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin: 8px 0 22px;
	padding: 0;
	border: 1px solid var(--pcgh-border);
	border-radius: 8px;
	background: var(--pcgh-surface);
	list-style: none;
	overflow: hidden;
}

.pcgh-shop-flow-steps li {
	position: relative;
	min-height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: var(--pcgh-text-3);
	font-size: 14px;
	font-weight: 900;
}

.pcgh-shop-flow-steps li:not(:last-child):after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: var(--pcgh-border);
}

.pcgh-shop-flow-steps span {
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--pcgh-surface-2);
	color: currentColor;
}

.pcgh-shop-flow-steps svg {
	width: 16px;
	height: 16px;
}

.pcgh-shop-flow-steps .is-active {
	background: color-mix(in srgb, var(--shop-accent) 8%, var(--pcgh-surface));
	color: var(--shop-accent);
}

.pcgh-shop-flow-steps .is-done {
	color: var(--pcgh-text);
}

.pcgh-shop-cart .pcgh-shop-cart-panel {
	border: 1px solid var(--pcgh-border);
	border-radius: 8px;
	background: var(--pcgh-surface);
	box-shadow: 0 14px 34px rgba(15,23,42,.06);
	overflow: hidden;
}

.pcgh-shop-cart-table-head,
.pcgh-shop-cart-item {
	display: grid;
	grid-template-columns: 58px minmax(280px, 1fr) 120px 128px 130px 82px;
	align-items: center;
}

.pcgh-shop-cart-table-head {
	min-height: 48px;
	padding: 0 20px;
	background: var(--pcgh-surface-2);
	border-bottom: 1px solid var(--pcgh-border);
	color: var(--pcgh-text-3);
	font-size: 13px;
	font-weight: 900;
}

.pcgh-shop-cart-store-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 52px;
	padding: 0 20px;
	border-bottom: 1px solid var(--pcgh-border);
}

.pcgh-shop-cart-store-row label,
.pcgh-shop-cart-settlebar label,
.pcgh-shop-cart-item__check {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--pcgh-text);
	font-size: 14px;
	font-weight: 900;
}

.pcgh-shop-cart-store-row input,
.pcgh-shop-cart-settlebar input,
.pcgh-shop-cart-item__check input {
	width: 16px;
	height: 16px;
	accent-color: var(--shop-accent);
}

.pcgh-shop-cart-store-row em {
	color: var(--pcgh-text-3);
	font-size: 12px;
	font-style: normal;
}

.pcgh-shop-cart .pcgh-shop-cart-item {
	gap: 0;
	padding: 18px 20px;
	border-bottom: 1px solid var(--pcgh-border);
}

.pcgh-shop-cart-item__product {
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-width: 0;
}

.pcgh-shop-cart .pcgh-shop-cart-item__image {
	width: 86px;
}

.pcgh-shop-cart-item__image span,
.pcgh-shop-checkout-product__img span {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pcgh-text-3);
}

.pcgh-shop-cart-item__price {
	color: var(--pcgh-text);
	font-size: 14px;
	font-style: normal;
	font-weight: 900;
	text-align: center;
}

.pcgh-shop-cart .pcgh-shop-cart-item__qty {
	justify-self: center;
}

.pcgh-shop-cart .pcgh-shop-cart-item > strong {
	text-align: center;
}

.pcgh-shop-cart .pcgh-shop-cart-item__remove {
	justify-self: center;
	width: auto;
	height: 34px;
	padding: 0 10px;
	border-radius: 5px;
}

.pcgh-shop-cart-settlebar {
	position: sticky;
	bottom: 0;
	z-index: 8;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 64px;
	padding: 10px 12px 10px 20px;
	background: color-mix(in srgb, var(--pcgh-surface) 98%, transparent);
	border-top: 1px solid var(--pcgh-border);
	box-shadow: 0 -12px 28px rgba(15,23,42,.08);
}

.pcgh-shop-cart-settlebar__left,
.pcgh-shop-cart-settlebar__right {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.pcgh-shop-cart-settlebar button,
.pcgh-shop-cart-settlebar a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border: 0;
	background: transparent;
	color: var(--pcgh-text-3);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	cursor: pointer;
}

.pcgh-shop-cart-settlebar button:hover,
.pcgh-shop-cart-settlebar a:hover {
	color: var(--shop-accent);
}

.pcgh-shop-cart-settlebar__right span {
	color: var(--pcgh-text-2);
	font-size: 13px;
}

.pcgh-shop-cart-settlebar__right strong {
	color: var(--shop-accent);
}

.pcgh-shop-cart-settlebar__total strong {
	font-size: 22px;
	line-height: 1;
}

.pcgh-shop-cart-settlebar__right em {
	color: var(--pcgh-text-3);
	font-size: 12px;
	font-style: normal;
}

.pcgh-shop-cart-settlebar .pcgh-shop-cart-settlebar__checkout {
	min-width: 116px;
	height: 44px;
	border-radius: 5px;
	background: var(--shop-accent);
	color: #fff;
	font-size: 15px;
	box-shadow: 0 10px 20px color-mix(in srgb, var(--shop-accent) 22%, transparent);
}

.pcgh-shop-cart-settlebar .pcgh-shop-cart-settlebar__checkout.is-disabled {
	opacity: .55;
	pointer-events: auto;
	cursor: not-allowed;
	box-shadow: none;
}

.pcgh-shop-checkout-form {
	display: block;
}

.pcgh-shop-checkout-alert {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	padding: 12px 14px;
	border: 1px solid color-mix(in srgb, var(--shop-accent) 24%, var(--pcgh-border));
	border-radius: 8px;
	background: color-mix(in srgb, var(--shop-accent) 8%, var(--pcgh-surface));
	color: var(--pcgh-text);
	box-shadow: 0 10px 24px rgba(15,23,42,.05);
}

.pcgh-shop-checkout-alert > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--shop-accent) 12%, var(--pcgh-surface));
	color: var(--shop-accent);
}

.pcgh-shop-checkout-alert svg {
	width: 17px;
	height: 17px;
}

.pcgh-shop-checkout-alert p {
	margin: 0;
	flex: 1;
	min-width: 0;
	font-size: 13px;
	line-height: 1.55;
	font-weight: 800;
}

.pcgh-shop-checkout-alert a {
	color: var(--shop-accent);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.pcgh-shop-checkout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 18px;
	align-items: start;
}

.pcgh-shop-checkout-main {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

.pcgh-shop-checkout .pcgh-shop-checkout-panel,
.pcgh-shop-checkout-amount {
	border: 1px solid var(--pcgh-border);
	border-radius: 8px;
	background: var(--pcgh-surface);
	box-shadow: 0 14px 34px rgba(15,23,42,.06);
}

.pcgh-shop-checkout .pcgh-shop-checkout-panel {
	padding: 18px 20px;
}

.pcgh-shop-checkout-section > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.pcgh-shop-checkout-section > header h2,
.pcgh-shop-checkout-amount h2 {
	margin: 0;
	color: var(--pcgh-text);
	font-size: 18px;
	line-height: 1.35;
	font-weight: 900;
}

.pcgh-shop-checkout-section > header span {
	color: var(--pcgh-text-3);
	font-size: 12px;
	font-weight: 700;
}

.pcgh-shop-checkout-address {
	padding-bottom: 16px;
}

.pcgh-shop-checkout-address > header {
	margin-bottom: 10px;
}

.pcgh-shop-checkout-address-card {
	position: relative;
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	min-height: 64px;
	padding: 12px 16px 14px 14px;
	border: 1px solid color-mix(in srgb, var(--shop-accent) 82%, #fff 8%);
	border-radius: 6px;
	background: color-mix(in srgb, var(--shop-accent) 2%, var(--pcgh-surface));
	overflow: hidden;
}

.pcgh-shop-checkout-address-card::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: repeating-linear-gradient(90deg, #ff4b5f 0 32px, transparent 32px 46px, #2f7dff 46px 78px, transparent 78px 92px);
}

.pcgh-shop-checkout-address-card__pin {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	color: var(--shop-accent);
}

.pcgh-shop-checkout-address-card__pin svg {
	width: 18px;
	height: 18px;
	stroke-width: 2.4;
}

.pcgh-shop-checkout-address-card__body {
	min-width: 0;
}

.pcgh-shop-checkout-address-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 5px;
}

.pcgh-shop-checkout-address-card__meta strong {
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.3;
	font-weight: 900;
}

.pcgh-shop-checkout-address-card__meta small {
	color: var(--pcgh-text-2);
	font-size: 12px;
	line-height: 1.3;
	font-weight: 800;
}

.pcgh-shop-checkout-address-card__meta em {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 18px;
	padding: 0 7px;
	border-radius: 999px;
	background: var(--shop-accent);
	color: #fff;
	font-size: 11px;
	line-height: 18px;
	font-style: normal;
	font-weight: 900;
}

.pcgh-shop-checkout-address-card__body p {
	margin: 0;
	color: var(--pcgh-text-2);
	font-size: 12px;
	line-height: 1.55;
	font-weight: 700;
	overflow-wrap: anywhere;
}

.pcgh-shop-checkout-address-card__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	align-self: start;
	padding-top: 2px;
}

.pcgh-shop-checkout-address-card__actions a {
	color: var(--pcgh-text-3);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.pcgh-shop-checkout-address-card__actions a:hover,
.pcgh-shop-checkout-address-add:hover,
.pcgh-shop-checkout-address-list a:hover {
	color: var(--shop-accent);
}

.pcgh-shop-checkout-address-empty {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	padding: 16px;
	border: 1px dashed color-mix(in srgb, var(--shop-accent) 38%, var(--pcgh-border));
	border-radius: 6px;
	background: color-mix(in srgb, var(--shop-accent) 4%, var(--pcgh-surface));
}

.pcgh-shop-checkout-address-empty > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--shop-accent) 10%, var(--pcgh-surface));
	color: var(--shop-accent);
}

.pcgh-shop-checkout-address-empty svg {
	width: 17px;
	height: 17px;
}

.pcgh-shop-checkout-address-empty strong {
	display: block;
	color: var(--pcgh-text);
	font-size: 14px;
	font-weight: 900;
}

.pcgh-shop-checkout-address-empty p {
	margin: 4px 0 0;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.5;
}

.pcgh-shop-checkout-address-empty a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	padding: 0 12px;
	border-radius: 5px;
	background: var(--shop-accent);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.pcgh-shop-checkout-address-list {
	display: grid;
	gap: 8px;
	margin-top: 10px;
}

.pcgh-shop-checkout-address-list a {
	display: grid;
	grid-template-columns: auto auto minmax(0, 1fr);
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 10px 12px;
	border: 1px solid var(--pcgh-border);
	border-radius: 6px;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-2);
	font-size: 12px;
	text-decoration: none;
}

.pcgh-shop-checkout-address-list strong {
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
}

.pcgh-shop-checkout-address-list span {
	color: var(--pcgh-text-3);
	font-weight: 800;
}

.pcgh-shop-checkout-address-list em {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-style: normal;
}

.pcgh-shop-checkout-address-add {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	color: var(--pcgh-text-3);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.pcgh-shop-checkout-address-add span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid var(--pcgh-border);
	background: var(--pcgh-surface);
}

.pcgh-shop-checkout-address-add svg {
	width: 12px;
	height: 12px;
}

.pcgh-shop-checkout-note {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 14px;
}

.pcgh-shop-checkout-note span {
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
}

.pcgh-shop-checkout-note textarea {
	width: 100%;
	min-height: 74px;
	padding: 11px 12px;
	border: 1px solid var(--pcgh-border);
	border-radius: 6px;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text);
	font-size: 13px;
	line-height: 1.6;
	resize: vertical;
	outline: 0;
}

.pcgh-shop-checkout-note textarea:focus {
	border-color: var(--shop-accent);
	box-shadow: 0 0 0 3px var(--shop-soft);
}

.pcgh-shop-address-page {
	padding-top: 22px;
}

.pcgh-shop-address-page .pcgh-container {
	max-width: min(var(--pcgh-container-w), 1180px);
}

.pcgh-shop-address-breadcrumb {
	margin-bottom: 22px;
}

.pcgh-shop-address-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 286px;
	gap: 22px;
	align-items: start;
}

.pcgh-shop-address-card,
.pcgh-shop-address-tips {
	border: 1px solid var(--pcgh-border);
	border-radius: 8px;
	background: var(--pcgh-surface);
	box-shadow: 0 16px 36px rgba(15,23,42,.06);
}

.pcgh-shop-address-card {
	padding: 36px 26px 32px;
}

.pcgh-shop-address-form h1 {
	margin: 0 0 24px;
	color: var(--pcgh-text);
	font-size: 26px;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: 0;
}

.pcgh-shop-address-message {
	margin: -10px 0 18px;
	padding: 10px 12px;
	border-radius: 6px;
	font-size: 12px;
	line-height: 1.55;
	font-weight: 800;
}

.pcgh-shop-address-message.is-success {
	border: 1px solid color-mix(in srgb, #16a34a 28%, var(--pcgh-border));
	background: color-mix(in srgb, #16a34a 9%, var(--pcgh-surface));
	color: #16a34a;
}

.pcgh-shop-address-message.is-error {
	border: 1px solid color-mix(in srgb, var(--shop-accent) 28%, var(--pcgh-border));
	background: color-mix(in srgb, var(--shop-accent) 8%, var(--pcgh-surface));
	color: var(--shop-accent);
}

.pcgh-shop-address-field {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	margin-bottom: 22px;
}

.pcgh-shop-address-field > label:first-child {
	color: var(--pcgh-text);
	font-size: 16px;
	line-height: 1.3;
	font-weight: 900;
}

.pcgh-shop-address-field > label:first-child em {
	color: var(--shop-accent);
	font-style: normal;
}

.pcgh-shop-address-field input,
.pcgh-shop-address-field textarea {
	width: 100%;
	border: 1px solid var(--pcgh-border);
	border-radius: 7px;
	background: var(--pcgh-surface);
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.5;
	outline: 0;
	transition: border-color .18s ease, box-shadow .18s ease;
}

.pcgh-shop-address-field input {
	height: 52px;
	padding: 0 16px;
}

.pcgh-shop-address-field input::placeholder,
.pcgh-shop-address-field textarea::placeholder {
	color: var(--pcgh-text-3);
}

.pcgh-shop-address-field input:focus,
.pcgh-shop-address-field textarea:focus {
	border-color: color-mix(in srgb, var(--shop-blue, #1f6fff) 70%, var(--shop-accent));
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--shop-blue, #1f6fff) 11%, transparent);
}

.pcgh-shop-address-region {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.pcgh-shop-address-region span {
	position: relative;
	display: block;
	min-width: 0;
}

.pcgh-shop-address-region input {
	padding-right: 38px;
}

.pcgh-shop-address-region svg {
	position: absolute;
	right: 13px;
	top: 50%;
	width: 16px;
	height: 16px;
	color: var(--pcgh-text-3);
	transform: translateY(-50%);
	pointer-events: none;
}

.pcgh-shop-address-field textarea {
	min-height: 132px;
	padding: 14px;
	resize: vertical;
}

.pcgh-shop-address-textarea {
	position: relative;
}

.pcgh-shop-address-textarea small {
	position: absolute;
	right: 14px;
	bottom: 13px;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1;
}

.pcgh-shop-address-field--switch {
	align-items: center;
	margin-bottom: 28px;
}

.pcgh-shop-address-switch {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	width: fit-content;
	cursor: pointer;
}

.pcgh-shop-address-switch input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.pcgh-shop-address-switch span {
	position: relative;
	width: 46px;
	height: 28px;
	border-radius: 999px;
	background: #d7dee9;
	box-shadow: inset 0 1px 3px rgba(15,23,42,.08);
	transition: background .18s ease;
}

.pcgh-shop-address-switch span::after {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 3px 8px rgba(15,23,42,.16);
	transition: transform .18s ease;
}

.pcgh-shop-address-switch input:checked + span {
	background: var(--shop-blue, #1f6fff);
}

.pcgh-shop-address-switch input:checked + span::after {
	transform: translateX(18px);
}

.pcgh-shop-address-switch em {
	color: var(--pcgh-text-3);
	font-size: 13px;
	line-height: 1.5;
	font-style: normal;
	font-weight: 700;
}

.pcgh-shop-address-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	padding-left: 150px;
}

.pcgh-shop-address-actions button,
.pcgh-shop-address-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	border-radius: 7px;
	font-size: 16px;
	line-height: 1;
	font-weight: 900;
	text-decoration: none;
}

.pcgh-shop-address-actions button {
	border: 0;
	background: var(--shop-blue, #1f6fff);
	color: #fff;
	cursor: pointer;
	box-shadow: none;
}

.pcgh-shop-address-actions a {
	border: 1px solid var(--pcgh-border);
	background: var(--pcgh-surface);
	color: var(--pcgh-text);
}

.pcgh-shop-address-tips {
	position: sticky;
	top: 92px;
	padding: 32px 22px 26px;
}

.pcgh-shop-address-tips h2 {
	margin: 0 0 26px;
	color: var(--pcgh-text);
	font-size: 22px;
	line-height: 1.25;
	font-weight: 900;
	letter-spacing: 0;
}

.pcgh-shop-address-tips div {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	margin-bottom: 24px;
}

.pcgh-shop-address-tips div:last-child {
	margin-bottom: 0;
}

.pcgh-shop-address-tips span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
}

.pcgh-shop-address-tips span.is-blue {
	background: color-mix(in srgb, #1f6fff 10%, var(--pcgh-surface));
	color: #1f6fff;
}

.pcgh-shop-address-tips span.is-green {
	background: color-mix(in srgb, #22c55e 11%, var(--pcgh-surface));
	color: #22c55e;
}

.pcgh-shop-address-tips span.is-orange {
	background: color-mix(in srgb, #ff7a1a 11%, var(--pcgh-surface));
	color: #ff7a1a;
}

.pcgh-shop-address-tips span.is-purple {
	background: color-mix(in srgb, #a855f7 11%, var(--pcgh-surface));
	color: #a855f7;
}

.pcgh-shop-address-tips svg {
	width: 21px;
	height: 21px;
	stroke-width: 2.2;
}

.pcgh-shop-address-tips p {
	margin: 0;
	min-width: 0;
}

.pcgh-shop-address-tips strong,
.pcgh-shop-address-tips em {
	display: block;
}

.pcgh-shop-address-tips strong {
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.45;
	font-weight: 900;
}

.pcgh-shop-address-tips em {
	margin-top: 6px;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.7;
	font-style: normal;
	font-weight: 700;
}

.pcgh-shop-checkout-products__head,
.pcgh-shop-checkout-product {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) 118px 78px 118px;
	align-items: center;
	gap: 12px;
}

.pcgh-shop-checkout-products__head {
	min-height: 42px;
	padding: 0 14px;
	border-radius: 6px;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-3);
	font-size: 12px;
	font-weight: 900;
}

.pcgh-shop-checkout-product {
	padding: 16px 14px;
	border-bottom: 1px solid var(--pcgh-border);
}

.pcgh-shop-checkout-product:last-child {
	border-bottom: 0;
}

.pcgh-shop-checkout-product__img {
	width: 76px;
	aspect-ratio: 1 / 1;
	float: left;
	margin-right: 12px;
	border-radius: 6px;
	background: var(--pcgh-surface-2);
	overflow: hidden;
}

.pcgh-shop-checkout-product__img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.pcgh-shop-checkout-product__main {
	min-width: 0;
}

.pcgh-shop-checkout-product__main a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--pcgh-text);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.45;
	text-decoration: none;
}

.pcgh-shop-checkout-product__main em,
.pcgh-shop-checkout-product__main small {
	display: block;
	margin-top: 5px;
	color: var(--pcgh-text-3);
	font-size: 12px;
	font-style: normal;
	line-height: 1.4;
}

.pcgh-shop-checkout-product > span,
.pcgh-shop-checkout-product > strong {
	color: var(--pcgh-text);
	font-size: 14px;
	font-weight: 900;
	text-align: center;
}

.pcgh-shop-checkout-product > strong {
	color: var(--shop-accent);
}

.pcgh-shop-checkout-extra dl,
.pcgh-shop-checkout-amount dl {
	margin: 0;
}

.pcgh-shop-checkout-extra dl div,
.pcgh-shop-checkout-amount dl div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--pcgh-border);
}

.pcgh-shop-checkout-extra dl div:first-child,
.pcgh-shop-checkout-amount dl div:first-child {
	padding-top: 0;
}

.pcgh-shop-checkout-extra dt,
.pcgh-shop-checkout-extra dd,
.pcgh-shop-checkout-amount dt,
.pcgh-shop-checkout-amount dd {
	margin: 0;
	font-size: 14px;
}

.pcgh-shop-checkout-extra dt,
.pcgh-shop-checkout-amount dt {
	color: var(--pcgh-text-3);
}

.pcgh-shop-checkout-extra dd,
.pcgh-shop-checkout-amount dd {
	min-height: 20px;
	color: var(--pcgh-text);
	font-weight: 900;
}

.pcgh-shop-checkout-aside {
	position: sticky;
	top: 92px;
	z-index: 5;
}

.pcgh-shop-checkout-amount {
	padding: 20px;
}

.pcgh-shop-checkout-amount h2 {
	margin-bottom: 14px;
}

.pcgh-shop-checkout-amount .is-total {
	align-items: flex-end;
	padding-top: 16px;
	border-bottom: 0;
}

.pcgh-shop-checkout-amount .is-total dd {
	color: var(--shop-accent);
	font-size: 26px;
	line-height: 1;
}

.pcgh-shop-checkout-amount button {
	width: 100%;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
	border: 0;
	border-radius: 5px;
	background: var(--shop-accent);
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	cursor: pointer;
	box-shadow: none;
}

.pcgh-shop-checkout-amount button:disabled {
	opacity: .55;
	cursor: not-allowed;
	box-shadow: none;
}

.pcgh-shop-checkout-amount p {
	margin: 14px 0 0;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.7;
}

.pcgh-shop-checkout-amount p.is-error {
	color: var(--shop-accent);
	font-weight: 800;
}

.pcgh-shop-checkout .pcgh-shop-coupon-box,
.pcgh-shop-checkout .pcgh-shop-payment-methods {
	margin-top: 0;
	padding-top: 18px;
}

.pcgh-shop-checkout .pcgh-shop-coupon-box > header + div,
.pcgh-shop-checkout .pcgh-shop-payment-methods > header + div {
	margin-top: 0;
}

.pcgh-shop-checkout .pcgh-shop-checkout-amount button,
.pcgh-shop-checkout .pcgh-shop-checkout-actions button {
	box-shadow: none;
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-cart .pcgh-shop-cart-panel,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-checkout .pcgh-shop-checkout-panel,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-checkout-amount,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-flow-steps {
	background: color-mix(in srgb, var(--pcgh-surface) 94%, #fff 2%);
	box-shadow: 0 16px 34px rgba(0,0,0,.22);
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-checkout-address-card,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-checkout-address-empty,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-address-card,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-address-tips {
	background: color-mix(in srgb, var(--pcgh-surface) 92%, #fff 3%);
	box-shadow: 0 16px 34px rgba(0,0,0,.24);
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-address-field input,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-address-field textarea,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-checkout-note textarea,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-address-actions a {
	background: color-mix(in srgb, var(--pcgh-surface-2) 88%, #fff 4%);
}

@media (max-width: 1180px) {
	.pcgh-shop-checkout-grid {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-checkout-aside {
		position: static;
	}
	.pcgh-shop-address-layout {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-address-tips {
		position: static;
	}
	.pcgh-shop-cart-table-head,
	.pcgh-shop-cart-item {
		grid-template-columns: 46px minmax(220px, 1fr) 96px 116px 110px 68px;
	}
}

@media (max-width: 820px) {
	.pcgh-shop-flow-steps {
		margin-top: 4px;
	}
	.pcgh-shop-flow-steps li {
		min-height: 52px;
		font-size: 12px;
	}
	.pcgh-shop-flow-steps span {
		width: 26px;
		height: 26px;
	}
	.pcgh-shop-cart-panel {
		overflow-x: auto;
	}
	.pcgh-shop-cart-table-head,
	.pcgh-shop-cart-item,
	.pcgh-shop-cart-store-row,
	.pcgh-shop-cart-settlebar {
		min-width: 760px;
	}
	.pcgh-shop-cart-settlebar {
		position: static;
	}
	.pcgh-shop-checkout .pcgh-shop-checkout-panel,
	.pcgh-shop-checkout-amount {
		padding: 16px;
	}
	.pcgh-shop-checkout-address-card,
	.pcgh-shop-checkout-address-empty {
		grid-template-columns: 28px minmax(0, 1fr);
	}
	.pcgh-shop-checkout-address-card__actions,
	.pcgh-shop-checkout-address-empty a {
		grid-column: 2;
		justify-self: start;
	}
	.pcgh-shop-checkout-address-list a {
		grid-template-columns: auto auto;
	}
	.pcgh-shop-checkout-address-list em {
		grid-column: 1 / -1;
		white-space: normal;
	}
	.pcgh-shop-checkout-section > header {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}
	.pcgh-shop-address-card {
		padding: 22px 16px 20px;
	}
	.pcgh-shop-address-form h1 {
		font-size: 22px;
		margin-bottom: 18px;
	}
	.pcgh-shop-address-field {
		grid-template-columns: 1fr;
		gap: 8px;
		margin-bottom: 18px;
	}
	.pcgh-shop-address-field > label:first-child {
		font-size: 14px;
	}
	.pcgh-shop-address-field input {
		height: 46px;
		font-size: 13px;
	}
	.pcgh-shop-address-region {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.pcgh-shop-address-field textarea {
		min-height: 120px;
		font-size: 13px;
	}
	.pcgh-shop-address-actions {
		grid-template-columns: 1fr;
		gap: 10px;
		padding-left: 0;
	}
	.pcgh-shop-address-actions button,
	.pcgh-shop-address-actions a {
		height: 46px;
		font-size: 14px;
	}
	.pcgh-shop-address-tips {
		padding: 20px 16px;
	}
	.pcgh-shop-address-tips h2 {
		font-size: 19px;
		margin-bottom: 18px;
	}
	.pcgh-shop-address-tips div {
		margin-bottom: 16px;
	}
	.pcgh-shop-checkout-products__head {
		display: none;
	}
	.pcgh-shop-checkout-product {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 8px;
		padding: 14px 0;
	}
	.pcgh-shop-checkout-product > span,
	.pcgh-shop-checkout-product > strong {
		text-align: left;
	}
	.pcgh-shop-checkout-product > span:nth-of-type(1)::before {
		content: "单价：";
		color: var(--pcgh-text-3);
	}
	.pcgh-shop-checkout-product > span:nth-of-type(2)::before {
		content: "数量：";
		color: var(--pcgh-text-3);
	}
	.pcgh-shop-checkout-product > strong::before {
		content: "小计：";
		color: var(--pcgh-text-3);
	}
	.pcgh-shop-form-grid,
	.pcgh-shop-payment-methods > div {
		grid-template-columns: 1fr;
	}
}

/* Coupon wallet and checkout selector. */
.pcgh-shop-coupons-page .pcgh-shop-flow__inner {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
}

.pcgh-shop-coupon-tabs {
	display: flex;
	gap: 24px;
	margin: 0 0 20px;
	border-bottom: 1px solid var(--pcgh-border);
}

.pcgh-shop-coupon-tabs a {
	position: relative;
	padding: 12px 2px;
	color: var(--pcgh-text-2);
	font-size: 14px;
	font-weight: 800;
}

.pcgh-shop-coupon-tabs a.is-active {
	color: var(--shop-accent);
}

.pcgh-shop-coupon-tabs a.is-active::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	background: var(--shop-accent);
	content: "";
}

.pcgh-shop-coupon-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.pcgh-shop-coupon-card {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr) auto;
	min-height: 126px;
	overflow: hidden;
	border: 1px solid var(--pcgh-border);
	border-radius: 8px;
	background: var(--pcgh-surface);
}

.pcgh-shop-coupon-card.is-highlighted {
	box-shadow: 0 0 0 2px var(--pcgh-shop-primary, #2271b1);
}

.pcgh-shop-coupon-card__value {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 18px 12px;
	background: var(--shop-soft);
	color: var(--shop-accent);
}

.pcgh-shop-coupon-card__value strong {
	font-size: 24px;
	line-height: 1.25;
}

.pcgh-shop-coupon-card__value span,
.pcgh-shop-coupon-card__body small {
	font-size: 12px;
}

.pcgh-shop-coupon-card__body {
	min-width: 0;
	padding: 18px;
}

.pcgh-shop-coupon-card__body h3 {
	margin: 0 0 8px;
	color: var(--pcgh-text);
	font-size: 16px;
}

.pcgh-shop-coupon-card__body p {
	margin: 0 0 8px;
	color: var(--pcgh-text-2);
	font-size: 13px;
}

.pcgh-shop-coupon-card__body small {
	color: var(--pcgh-text-3);
}

.pcgh-shop-coupon-card__action {
	display: flex;
	align-items: center;
	padding: 16px;
}

.pcgh-shop-coupon-card__action button,
.pcgh-shop-coupon-card__action a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 78px;
	height: 36px;
	padding: 0 14px;
	border: 1px solid var(--shop-accent);
	border-radius: 5px;
	background: var(--shop-accent);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
}

.pcgh-shop-coupon-card__action button:disabled,
.pcgh-shop-coupon-card.is-used,
.pcgh-shop-coupon-card.is-expired {
	opacity: .62;
}

.pcgh-shop-coupon-center {
	margin-top: 34px;
}

.pcgh-shop-coupon-center h2 {
	margin: 0 0 16px;
	color: var(--pcgh-text);
	font-size: 20px;
}

.pcgh-shop-coupon-empty {
	grid-column: 1 / -1;
	padding: 40px 20px;
	text-align: center;
	color: var(--pcgh-text-3);
}

.pcgh-shop-coupon-box > .pcgh-shop-checkout-coupons {
	display: block;
	margin: 0 0 12px;
}

.pcgh-shop-checkout-coupons__toggle {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	padding: 0 12px;
	border-color: var(--pcgh-border) !important;
	background: var(--pcgh-surface-2) !important;
	color: var(--pcgh-text) !important;
}

.pcgh-shop-checkout-coupons__toggle strong {
	color: var(--shop-accent);
}

.pcgh-shop-checkout-coupons__list {
	display: grid;
	gap: 8px;
	max-height: 240px;
	margin-top: 8px;
	overflow-y: auto;
}

.pcgh-shop-checkout-coupons__list[hidden] {
	display: none;
}

.pcgh-shop-checkout-coupons__list button {
	display: grid;
	width: 100%;
	height: auto;
	grid-template-columns: minmax(0, 1fr);
	gap: 4px;
	padding: 10px 12px;
	border-color: var(--pcgh-border);
	background: var(--pcgh-surface);
	color: var(--pcgh-text);
	text-align: left;
}

.pcgh-shop-checkout-coupons__list button.is-selected {
	border-color: var(--shop-accent);
	background: var(--shop-soft);
}

.pcgh-shop-checkout-coupons__list button span,
.pcgh-shop-checkout-coupons__list button small {
	display: block;
}

.pcgh-shop-checkout-coupons__list button strong {
	margin-right: 8px;
	color: var(--shop-accent);
}

.pcgh-shop-checkout-coupons__list button small {
	color: var(--pcgh-text-3);
	font-weight: 500;
}

@media (max-width: 760px) {
	.pcgh-shop-coupon-list {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-coupon-card {
		grid-template-columns: 104px minmax(0, 1fr);
	}
	.pcgh-shop-coupon-card__action {
		grid-column: 2;
		padding: 0 16px 16px;
	}
	.pcgh-shop-coupon-card__value {
		grid-row: 1 / span 2;
	}
}

.pcgh-shop-home .pcgh-container,
.pcgh-shop-single .pcgh-container,
.pcgh-shop-flow .pcgh-container {
	max-width: var(--pcgh-container-w);
}

.pcgh-shop-hero {
	padding: 54px 0 30px;
}

.pcgh-shop-hero__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.pcgh-shop-hero__head h1 {
	margin: 0 0 10px;
	font-size: 34px;
	line-height: 1.18;
	font-weight: 900;
	letter-spacing: 0;
	color: var(--pcgh-text);
}

.pcgh-shop-hero__head p {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: var(--pcgh-text-2);
}

.pcgh-shop-hero__figure {
	position: relative;
	width: 260px;
	height: 92px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.pcgh-shop-hero__figure span {
	font-size: 56px;
	font-weight: 900;
	font-style: italic;
	color: rgba(148,163,184,.11);
	line-height: 1;
}

.pcgh-shop-hero__figure i {
	position: absolute;
	right: 32px;
	bottom: 10px;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 32%, #fff 0 10px, transparent 11px),
		linear-gradient(150deg, #7dd3fc, #c4b5fd 52%, #ffb4c4);
	box-shadow: 0 16px 30px rgba(59,130,246,.2);
}

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

.pcgh-shop-topic {
	position: relative;
	min-height: 136px;
	padding: 28px 24px;
	border-radius: var(--shop-radius);
	overflow: hidden;
	background-color: var(--pcgh-surface-2);
	background-size: cover;
	background-position: center;
	color: #fff;
	box-shadow: 0 16px 32px rgba(15,23,42,.12);
	text-decoration: none;
	isolation: isolate;
}

.pcgh-shop-topic:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(15,23,42,.74), rgba(15,23,42,.2));
	z-index: -1;
}

.pcgh-shop-topic strong,
.pcgh-shop-topic em,
.pcgh-shop-topic b {
	position: relative;
	display: block;
}

.pcgh-shop-topic strong {
	font-size: 24px;
	line-height: 1.25;
	font-weight: 900;
	margin-bottom: 10px;
}

.pcgh-shop-topic em {
	font-style: normal;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255,255,255,.86);
	margin-bottom: 20px;
}

.pcgh-shop-topic b {
	width: max-content;
	max-width: 100%;
	height: 32px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 0 15px;
	border-radius: 999px;
	background: #fff;
	color: #172033;
	font-size: 13px;
	font-weight: 800;
}

.pcgh-shop-topic b i,
.pcgh-shop-topic b svg {
	width: 14px;
	height: 14px;
}

.pcgh-shop-featured {
	padding: 4px 0 30px;
}

.pcgh-shop-section-head {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	margin: 0 0 14px;
}

.pcgh-shop-section-head h2 {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 900;
	color: var(--pcgh-text);
}

.pcgh-shop-section-head h2 i,
.pcgh-shop-section-head h2 svg {
	width: 20px;
	height: 20px;
	color: var(--shop-accent-2);
	fill: color-mix(in srgb, var(--shop-accent-2) 18%, transparent);
}

.pcgh-shop-section-head p {
	margin: 0;
	color: var(--pcgh-text-3);
	font-size: 13px;
}

.pcgh-shop-section-head a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--pcgh-text-2);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.pcgh-shop-product-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.pcgh-shop-home-card {
	display: grid;
	grid-template-columns: 124px minmax(0, 1fr);
	gap: 14px;
	min-height: 150px;
	padding: 10px;
	border: 1px solid var(--pcgh-border);
	border-radius: var(--shop-radius);
	background: color-mix(in srgb, var(--pcgh-surface) 94%, transparent);
	box-shadow: 0 12px 28px rgba(15,23,42,.08);
	overflow: hidden;
}

.pcgh-shop-home-card__img {
	display: block;
	aspect-ratio: 1 / 1;
	border-radius: 7px;
	overflow: hidden;
	background: var(--pcgh-surface-2);
}

.pcgh-shop-home-card__img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.pcgh-shop-home-card__body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	padding: 4px 2px 0 0;
}

.pcgh-shop-home-card__title {
	color: var(--pcgh-text);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.45;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.pcgh-shop-home-card__body p {
	margin: 5px 0 8px;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.5;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pcgh-shop-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: auto;
}

.pcgh-shop-card-tags span {
	padding: 3px 6px;
	border-radius: 4px;
	background: var(--shop-soft);
	color: var(--shop-accent);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.2;
}

.pcgh-shop-home-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: 12px;
}

.pcgh-shop-home-card__foot strong {
	color: var(--shop-accent-2);
	font-size: 18px;
	line-height: 1;
}

.pcgh-shop-home-card__foot div {
	display: flex;
	gap: 7px;
}

.pcgh-shop-home-card__foot button,
.pcgh-shop-gallery__actions button,
.pcgh-shop-side-rec i {
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--pcgh-border);
	border-radius: 50%;
	background: var(--pcgh-surface);
	color: var(--pcgh-text-2);
	cursor: pointer;
}

.pcgh-shop-home-card__foot button svg,
.pcgh-shop-gallery__actions button svg,
.pcgh-shop-side-rec i svg {
	width: 16px;
	height: 16px;
}

.pcgh-shop-home-card__foot button:hover,
.pcgh-shop-home-card__foot button.is-active,
.pcgh-shop-gallery__actions button:hover,
.pcgh-shop-gallery__actions button.is-active {
	border-color: var(--shop-accent);
	background: var(--shop-soft);
	color: var(--shop-accent);
}

.pcgh-shop-services-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin-top: 22px;
	border: 1px solid var(--pcgh-border);
	border-radius: var(--shop-radius);
	background: var(--pcgh-surface);
	box-shadow: 0 12px 26px rgba(15,23,42,.06);
}

.pcgh-shop-services-strip div {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	grid-template-rows: auto auto;
	gap: 2px 14px;
	align-items: center;
	padding: 18px 24px;
}

.pcgh-shop-services-strip span {
	grid-row: 1 / 3;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text);
}

.pcgh-shop-services-strip svg {
	width: 24px;
	height: 24px;
}

.pcgh-shop-services-strip strong {
	font-size: 15px;
	color: var(--pcgh-text);
}

.pcgh-shop-services-strip em {
	font-style: normal;
	font-size: 12px;
	color: var(--pcgh-text-3);
}

.pcgh-shop-single {
	padding: 26px 0 52px;
}

.pcgh-shop-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 18px;
	font-size: 13px;
	color: var(--pcgh-text-3);
}

.pcgh-shop-breadcrumb a {
	color: var(--pcgh-text-2);
	text-decoration: none;
}

.pcgh-shop-breadcrumb strong {
	color: var(--pcgh-text);
	font-weight: 700;
}

.pcgh-shop-single__grid {
	display: grid;
	grid-template-columns: minmax(0, 760px) minmax(330px, 430px);
	gap: 18px;
	align-items: start;
}

.pcgh-shop-gallery {
	display: grid;
	grid-template-columns: 78px minmax(0, 1fr);
	gap: 16px;
	padding: 0;
}

.pcgh-shop-gallery__thumbs {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pcgh-shop-gallery__thumbs button {
	width: 78px;
	aspect-ratio: 1 / 1;
	border: 2px solid transparent;
	border-radius: 7px;
	background: var(--pcgh-surface);
	padding: 3px;
	cursor: pointer;
	overflow: hidden;
}

.pcgh-shop-gallery__thumbs button.is-active {
	border-color: var(--shop-accent);
}

.pcgh-shop-gallery__thumbs img,
.pcgh-shop-gallery__main img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.pcgh-shop-gallery__main {
	min-height: 610px;
	border: 1px solid var(--pcgh-border);
	border-radius: var(--shop-radius);
	background: color-mix(in srgb, var(--pcgh-surface) 92%, #fff 8%);
	overflow: hidden;
}

.pcgh-shop-gallery__actions {
	grid-column: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: -54px;
	padding: 0 22px 18px;
	pointer-events: none;
}

.pcgh-shop-gallery__actions button {
	width: auto;
	height: 32px;
	gap: 6px;
	padding: 0 10px;
	border-radius: 999px;
	font-size: 12px;
	pointer-events: auto;
}

.pcgh-shop-buyrail {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.pcgh-shop-buybox {
	position: sticky;
	top: 92px;
	z-index: 5;
	padding: 24px;
	border: 1px solid var(--pcgh-border);
	border-radius: var(--shop-radius);
	background: color-mix(in srgb, var(--pcgh-surface) 96%, transparent);
	box-shadow: 0 18px 44px rgba(15,23,42,.12);
}

.pcgh-shop-buybox__tags {
	display: flex;
	gap: 7px;
	margin-bottom: 12px;
}

.pcgh-shop-buybox__tags span {
	padding: 3px 8px;
	border-radius: 4px;
	background: var(--shop-soft);
	color: var(--shop-accent);
	font-size: 12px;
	font-weight: 900;
}

.pcgh-shop-buybox h1 {
	margin: 0;
	font-size: 24px;
	line-height: 1.35;
	font-weight: 900;
	color: var(--pcgh-text);
	letter-spacing: 0;
}

.pcgh-shop-buybox__sub {
	margin: 8px 0 16px;
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.7;
}

.pcgh-shop-presale {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 0 -8px 0;
	padding: 12px 16px;
	border-radius: 6px 6px 0 0;
	background: linear-gradient(100deg, var(--shop-accent), #ff3158);
	color: #fff;
}

.pcgh-shop-presale strong {
	font-size: 17px;
}

.pcgh-shop-presale span {
	font-size: 14px;
	font-weight: 800;
}

.pcgh-shop-pricebox {
	margin: 0 -8px 16px;
	padding: 18px 16px;
	border: 1px solid color-mix(in srgb, var(--shop-accent) 12%, var(--pcgh-border));
	border-top: 0;
	border-radius: 0 0 6px 6px;
	background: color-mix(in srgb, var(--shop-accent) 6%, var(--pcgh-surface));
}

.pcgh-shop-pricebox,
.pcgh-shop-pricebox div {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 12px;
}

.pcgh-shop-pricebox strong {
	color: var(--shop-accent);
	font-size: 32px;
	line-height: 1;
	font-weight: 900;
}

.pcgh-shop-pricebox del {
	color: var(--pcgh-text-3);
	font-size: 13px;
}

.pcgh-shop-pricebox em {
	margin-left: auto;
	font-style: normal;
	color: var(--pcgh-text-2);
	font-size: 12px;
}

.pcgh-shop-pricebox p {
	flex-basis: 100%;
	margin: 0;
	width: max-content;
	color: var(--shop-accent-2);
	font-size: 12px;
	font-weight: 800;
}

.pcgh-shop-delivery,
.pcgh-shop-option,
.pcgh-shop-qty {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	margin: 14px 0;
}

.pcgh-shop-delivery small,
.pcgh-shop-option small {
	color: var(--pcgh-text-3);
	font-size: 13px;
	line-height: 34px;
}

.pcgh-shop-delivery p {
	margin: 0;
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.7;
}

.pcgh-shop-option__choices {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.pcgh-shop-option__choices button {
	position: relative;
	min-height: 60px;
	min-width: 156px;
	display: inline-flex;
	align-items: center;
	gap: 11px;
	padding: 6px 16px 6px 8px;
	border: 1px solid var(--pcgh-border);
	border-radius: 9px;
	background: var(--pcgh-surface);
	color: var(--pcgh-text);
	font-size: 15px;
	font-weight: 850;
	line-height: 1.25;
	cursor: pointer;
	transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.pcgh-shop-option__choices button.has-badge {
	padding-top: 14px;
	padding-right: 24px;
}

.pcgh-shop-option__badge {
	position: absolute;
	top: -1px;
	right: -1px;
	z-index: 2;
	max-width: calc(100% - 16px);
	min-height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 0 6px;
	border-radius: 0 8px 0 7px;
	background: #ff3d55;
	color: #fff;
	font-size: 10px;
	line-height: 18px;
	font-weight: 950;
	letter-spacing: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	pointer-events: none;
}

.pcgh-shop-option__choices button img {
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	display: block;
	box-sizing: border-box;
	border-radius: 4px;
	object-fit: contain;
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--pcgh-border) 72%, transparent);
}

.pcgh-shop-option__name {
	min-width: 0;
	overflow-wrap: anywhere;
	text-align: left;
}

.pcgh-shop-option__choices button.is-active {
	border-color: var(--shop-accent);
	background: color-mix(in srgb, var(--shop-accent) 5%, var(--pcgh-surface));
	color: var(--shop-accent);
	box-shadow: 0 0 0 1px var(--shop-accent);
}

.pcgh-shop-qty {
	align-items: center;
}

.pcgh-shop-qty > div {
	display: inline-grid;
	grid-template-columns: 34px 48px 34px;
	width: max-content;
	border: 1px solid var(--pcgh-border);
	border-radius: 5px;
	overflow: hidden;
	background: var(--pcgh-surface-2);
}

.pcgh-shop-qty button,
.pcgh-shop-qty input {
	height: 34px;
	border: 0;
	background: transparent;
	color: var(--pcgh-text);
	text-align: center;
	font-size: 14px;
}

.pcgh-shop-qty button {
	cursor: pointer;
}

.pcgh-shop-qty span {
	color: var(--pcgh-text-3);
	font-size: 13px;
}

.pcgh-shop-buybox__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 18px 0 22px;
}

.pcgh-shop-buybox__actions button {
	height: 48px;
	border: 0;
	border-radius: 5px;
	background: var(--shop-accent);
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	cursor: pointer;
	box-shadow: 0 12px 22px color-mix(in srgb, var(--shop-accent) 26%, transparent);
}

.pcgh-shop-buybox__actions button:first-child {
	background: color-mix(in srgb, var(--shop-accent) 90%, #ff7a3d 10%);
}

.pcgh-shop-buybox__actions button.is-loading {
	opacity: .72;
	cursor: wait;
}

.pcgh-shop-buybox__actions button:disabled,
.pcgh-shop-buybox__actions button.is-disabled {
	opacity: .48;
	cursor: not-allowed;
	box-shadow: none;
}

.pcgh-shop-buybox__services {
	border-top: 1px solid var(--pcgh-border);
	padding-top: 16px;
}

.pcgh-shop-buybox__services > strong {
	display: block;
	margin-bottom: 12px;
	font-size: 14px;
	color: var(--pcgh-text);
}

.pcgh-shop-buybox__services > div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.pcgh-shop-buybox__services span {
	display: grid;
	grid-template-columns: 24px minmax(0,1fr);
	gap: 2px 8px;
	align-items: center;
}

.pcgh-shop-buybox__services svg {
	grid-row: 1 / 3;
	width: 22px;
	height: 22px;
	color: var(--pcgh-text-2);
}

.pcgh-shop-buybox__services em {
	font-style: normal;
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 800;
}

.pcgh-shop-buybox__services small {
	color: var(--pcgh-text-3);
	font-size: 11px;
}

.pcgh-shop-side-recs {
	padding: 18px;
	border: 1px solid var(--pcgh-border);
	border-radius: var(--shop-radius);
	background: var(--pcgh-surface);
	box-shadow: 0 12px 28px rgba(15,23,42,.08);
}

.pcgh-shop-side-recs h2 {
	margin: 0 0 14px;
	font-size: 18px;
	color: var(--pcgh-text);
}

.pcgh-shop-side-rec {
	display: grid;
	grid-template-columns: 86px minmax(0,1fr) 30px;
	grid-template-rows: 1fr auto;
	gap: 6px 12px;
	align-items: center;
	padding: 10px;
	border: 1px solid var(--pcgh-border);
	border-radius: 7px;
	color: var(--pcgh-text);
	text-decoration: none;
}

.pcgh-shop-side-rec + .pcgh-shop-side-rec {
	margin-top: 10px;
}

.pcgh-shop-side-rec > span {
	grid-row: 1 / 3;
	width: 86px;
	aspect-ratio: 1 / 1;
	border-radius: 6px;
	background: var(--pcgh-surface-2);
	overflow: hidden;
}

.pcgh-shop-side-rec img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pcgh-shop-side-rec strong {
	font-size: 13px;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.pcgh-shop-side-rec em {
	font-style: normal;
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
}

.pcgh-shop-side-rec i {
	grid-row: 1 / 3;
	grid-column: 3;
}

.pcgh-shop-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 760px) minmax(330px, 430px);
	gap: 18px;
	margin-top: 18px;
}

.pcgh-shop-detail {
	grid-column: 1;
	border: 1px solid var(--pcgh-border);
	border-radius: var(--shop-radius);
	background: var(--pcgh-surface);
	overflow: hidden;
}

.pcgh-shop-tabs {
	display: flex;
	gap: 34px;
	padding: 0 22px;
	border-bottom: 1px solid var(--pcgh-border);
}

.pcgh-shop-tabs button {
	position: relative;
	height: 58px;
	border: 0;
	background: transparent;
	color: var(--pcgh-text);
	font-size: 15px;
	font-weight: 900;
	cursor: pointer;
}

.pcgh-shop-tabs button:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	border-radius: 999px 999px 0 0;
	background: transparent;
}

.pcgh-shop-tabs button.is-active {
	color: var(--shop-accent);
}

.pcgh-shop-tabs button.is-active:after {
	background: var(--shop-accent);
}

.pcgh-shop-tab-panel {
	display: none;
	padding: 22px;
}

.pcgh-shop-tab-panel.is-active {
	display: block;
}

.pcgh-shop-detail-hero {
	width: 100%;
	border-radius: 7px;
	display: block;
	margin-bottom: 8px;
}

.pcgh-shop-detail-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 6px;
}

.pcgh-shop-detail-gallery img {
	width: 100%;
	aspect-ratio: 1.34 / 1;
	border-radius: 4px;
	object-fit: cover;
	display: block;
}

.pcgh-shop-detail-duo {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 10px;
}

.pcgh-shop-detail-duo figure {
	margin: 0;
	padding: 14px;
	border: 1px solid var(--pcgh-border);
	border-radius: 7px;
	background: color-mix(in srgb, var(--pcgh-surface) 92%, #fff 8%);
}

.pcgh-shop-detail-duo figcaption {
	margin-bottom: 10px;
	color: var(--pcgh-text);
	font-size: 17px;
	font-weight: 900;
}

.pcgh-shop-detail-duo img {
	width: 100%;
	display: block;
	border-radius: 4px;
}

.pcgh-shop-content {
	margin-top: 18px;
	color: var(--pcgh-text-2);
	font-size: 15px;
	line-height: 1.85;
}

.pcgh-shop-spec-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.pcgh-shop-spec-table th,
.pcgh-shop-spec-table td {
	width: 50%;
	padding: 12px 14px;
	border: 1px solid var(--pcgh-border);
	text-align: left;
	color: var(--pcgh-text-2);
}

.pcgh-shop-spec-table th {
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text);
	font-weight: 900;
}

.pcgh-shop-notice,
.pcgh-shop-empty {
	color: var(--pcgh-text-2);
	font-size: 14px;
	line-height: 1.85;
}

.pcgh-shop-reviews {
	display: grid;
	gap: 18px;
}

.pcgh-shop-reviews__summary {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	padding: 16px;
	border: 1px solid var(--pcgh-border);
	border-radius: 7px;
	background: var(--pcgh-surface-2);
}

.pcgh-shop-reviews__score {
	display: flex;
	align-items: baseline;
	gap: 4px;
	min-width: 74px;
	color: var(--shop-accent);
}

.pcgh-shop-reviews__score strong {
	font-size: 30px;
	line-height: 1;
	font-weight: 950;
}

.pcgh-shop-reviews__score small {
	color: var(--pcgh-text-3);
	font-size: 13px;
	font-weight: 800;
}

.pcgh-shop-reviews__meta {
	display: grid;
	gap: 7px;
	min-width: 0;
}

.pcgh-shop-review-stars {
	display: inline-flex;
	gap: 3px;
	color: var(--pcgh-text-3);
}

.pcgh-shop-review-stars span {
	display: inline-flex;
	width: 16px;
	height: 16px;
	align-items: center;
	justify-content: center;
}

.pcgh-shop-review-stars svg,
.pcgh-shop-review-stars i {
	width: 16px;
	height: 16px;
}

.pcgh-shop-review-stars .is-on,
.pcgh-shop-review-stars .is-half {
	color: var(--shop-accent);
}

.pcgh-shop-review-stars .is-half {
	opacity: .62;
}

.pcgh-shop-reviews__meta > span {
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.5;
}

.pcgh-shop-reviews__write {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 6px;
	background: var(--shop-accent);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.pcgh-shop-reviews__write svg,
.pcgh-shop-reviews__write i {
	width: 16px;
	height: 16px;
}

.pcgh-shop-reviews__dist {
	display: grid;
	gap: 8px;
}

.pcgh-shop-reviews__dist div {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 32px;
	gap: 10px;
	align-items: center;
	color: var(--pcgh-text-2);
	font-size: 12px;
}

.pcgh-shop-reviews__dist em {
	position: relative;
	height: 7px;
	border-radius: 999px;
	background: var(--pcgh-surface-2);
	overflow: hidden;
}

.pcgh-shop-reviews__dist em i {
	position: absolute;
	inset: 0 auto 0 0;
	border-radius: inherit;
	background: var(--shop-accent);
}

.pcgh-shop-reviews__dist strong {
	color: var(--pcgh-text);
	text-align: right;
	font-weight: 900;
}

.pcgh-shop-reviews__list {
	margin: 0;
	padding: 0;
}

.pcgh-shop-reviews .pcgh-cmt-form {
	margin-top: 0;
}

.pcgh-shop-reviews__empty {
	margin: 0;
}

.pcgh-shop-reviews__closed {
	margin: 0;
	padding: 14px 16px;
	border: 1px solid var(--pcgh-border);
	border-radius: 7px;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.7;
}

.pcgh-shop-flow {
	padding: 26px 0 52px;
}

.pcgh-shop-flow-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 18px;
}

.pcgh-shop-flow-head h1 {
	margin: 0 0 8px;
	color: var(--pcgh-text);
	font-size: 30px;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: 0;
}

.pcgh-shop-flow-head p {
	margin: 0;
	color: var(--pcgh-text-2);
	font-size: 14px;
	line-height: 1.7;
}

.pcgh-shop-flow-head p strong {
	color: var(--shop-accent);
}

.pcgh-shop-flow-head a,
.pcgh-shop-summary__cta,
.pcgh-shop-empty-state a,
.pcgh-shop-checkout-success a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	height: 38px;
	padding: 0 16px;
	border-radius: 999px;
	background: var(--pcgh-surface);
	border: 1px solid var(--pcgh-border);
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.pcgh-shop-flow-head a svg,
.pcgh-shop-summary__cta svg,
.pcgh-shop-empty-state a svg,
.pcgh-shop-checkout-success a svg {
	width: 16px;
	height: 16px;
}

.pcgh-shop-flow-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
	gap: 18px;
	align-items: start;
}

.pcgh-shop-cart-panel,
.pcgh-shop-checkout-panel,
.pcgh-shop-summary__box,
.pcgh-shop-empty-state {
	border: 1px solid var(--pcgh-border);
	border-radius: var(--shop-radius);
	background: color-mix(in srgb, var(--pcgh-surface) 96%, transparent);
	box-shadow: 0 14px 34px rgba(15,23,42,.08);
}

.pcgh-shop-saved {
	display: grid;
	gap: 16px;
}

.pcgh-shop-saved-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 54px;
	padding: 0 16px;
	border: 1px solid var(--pcgh-border);
	border-radius: var(--shop-radius);
	background: color-mix(in srgb, var(--pcgh-surface) 96%, transparent);
	box-shadow: 0 12px 28px rgba(15,23,42,.06);
}

.pcgh-shop-saved-toolbar strong {
	color: var(--pcgh-text);
	font-size: 15px;
	font-weight: 900;
}

.pcgh-shop-saved-toolbar a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 34px;
	padding: 0 13px;
	border: 1px solid var(--pcgh-border);
	border-radius: 999px;
	background: var(--pcgh-surface);
	color: var(--pcgh-text);
	font-size: 12px;
	font-weight: 900;
	text-decoration: none;
}

.pcgh-shop-saved-toolbar svg,
.pcgh-shop-saved-toolbar i,
.pcgh-shop-saved-card__actions svg,
.pcgh-shop-saved-card__actions i,
.pcgh-shop-compare-product button svg,
.pcgh-shop-compare-product button i {
	width: 15px;
	height: 15px;
}

.pcgh-shop-saved-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.pcgh-shop-saved-card {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	gap: 14px;
	padding: 12px;
	border: 1px solid var(--pcgh-border);
	border-radius: var(--shop-radius);
	background: color-mix(in srgb, var(--pcgh-surface) 96%, transparent);
	box-shadow: 0 12px 28px rgba(15,23,42,.07);
}

.pcgh-shop-saved-card__image {
	display: block;
	aspect-ratio: 1 / 1;
	border-radius: 7px;
	background: var(--pcgh-surface-2);
	overflow: hidden;
}

.pcgh-shop-saved-card__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.pcgh-shop-saved-card__body {
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.pcgh-shop-saved-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	min-height: 22px;
	margin-bottom: 7px;
}

.pcgh-shop-saved-card__meta span {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	height: 22px;
	padding: 0 8px;
	border-radius: 999px;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text-3);
	font-size: 11px;
	font-weight: 800;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pcgh-shop-saved-card h3 {
	margin: 0;
	font-size: 15px;
	line-height: 1.45;
	font-weight: 900;
	letter-spacing: 0;
}

.pcgh-shop-saved-card h3 a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--pcgh-text);
	text-decoration: none;
}

.pcgh-shop-saved-card p {
	margin: 7px 0 0;
	color: var(--pcgh-text-2);
	font-size: 12px;
	line-height: 1.55;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.pcgh-shop-saved-card footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 12px;
}

.pcgh-shop-saved-card footer strong {
	color: var(--shop-accent);
	font-size: 18px;
	line-height: 1;
	font-weight: 900;
}

.pcgh-shop-saved-card footer em {
	color: var(--pcgh-text-3);
	font-size: 12px;
	font-style: normal;
	font-weight: 800;
}

.pcgh-shop-saved-card__actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin-top: 12px;
}

.pcgh-shop-saved-card__actions button {
	min-width: 0;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 0 8px;
	border: 1px solid var(--pcgh-border);
	border-radius: 6px;
	background: var(--pcgh-surface);
	color: var(--pcgh-text-2);
	font-size: 12px;
	font-weight: 900;
	cursor: pointer;
	white-space: nowrap;
}

.pcgh-shop-saved-card__actions button:hover,
.pcgh-shop-saved-card__actions button.is-active {
	border-color: color-mix(in srgb, var(--shop-accent) 40%, var(--pcgh-border));
	background: var(--shop-soft);
	color: var(--shop-accent);
}

.pcgh-shop-saved-pagination,
.pcgh-shop-saved-pagination ul {
	display: flex;
	justify-content: flex-end;
}

.pcgh-shop-saved-pagination ul {
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pcgh-shop-saved-pagination a,
.pcgh-shop-saved-pagination span {
	min-width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--pcgh-border);
	border-radius: 6px;
	background: var(--pcgh-surface);
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.pcgh-shop-saved-pagination .current {
	border-color: var(--shop-accent);
	background: var(--shop-accent);
	color: #fff;
}

.pcgh-shop-compare-scroll {
	overflow-x: auto;
	border: 1px solid var(--pcgh-border);
	border-radius: var(--shop-radius);
	background: color-mix(in srgb, var(--pcgh-surface) 96%, transparent);
	box-shadow: 0 12px 28px rgba(15,23,42,.07);
}

.pcgh-shop-compare-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
	table-layout: fixed;
}

.pcgh-shop-compare-table th,
.pcgh-shop-compare-table td {
	padding: 16px;
	border-bottom: 1px solid var(--pcgh-border);
	border-right: 1px solid var(--pcgh-border);
	vertical-align: top;
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.65;
}

.pcgh-shop-compare-table tr:last-child th,
.pcgh-shop-compare-table tr:last-child td {
	border-bottom: 0;
}

.pcgh-shop-compare-table th {
	width: 112px;
	position: sticky;
	left: 0;
	z-index: 2;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text);
	font-weight: 900;
	text-align: left;
}

.pcgh-shop-compare-table td:last-child {
	border-right: 0;
}

.pcgh-shop-compare-table ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 6px;
}

.pcgh-shop-compare-product {
	display: grid;
	gap: 10px;
}

.pcgh-shop-compare-product__image {
	display: block;
	aspect-ratio: 1.2 / 1;
	border-radius: 7px;
	background: var(--pcgh-surface-2);
	overflow: hidden;
}

.pcgh-shop-compare-product__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.pcgh-shop-compare-product__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--pcgh-text);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.45;
	text-decoration: none;
}

.pcgh-shop-compare-product button {
	width: max-content;
	max-width: 100%;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 0 10px;
	border: 1px solid var(--pcgh-border);
	border-radius: 6px;
	background: var(--pcgh-surface);
	color: var(--pcgh-text-2);
	font-size: 12px;
	font-weight: 900;
	cursor: pointer;
}

.pcgh-shop-compare-product button:hover {
	border-color: color-mix(in srgb, var(--shop-accent) 40%, var(--pcgh-border));
	background: var(--shop-soft);
	color: var(--shop-accent);
}

.pcgh-uc-shop-favorites .pcgh-shop-saved-toolbar,
.pcgh-uc-shop-favorites .pcgh-shop-saved-card,
.pcgh-uc-shop-favorites .pcgh-shop-empty-state,
.pcgh-uc-favorites .pcgh-shop-saved-toolbar,
.pcgh-uc-favorites .pcgh-shop-saved-card,
.pcgh-uc-favorites .pcgh-shop-empty-state {
	box-shadow: none;
}

.pcgh-uc-shop-favorites .pcgh-shop-saved-toolbar,
.pcgh-uc-favorites .pcgh-shop-saved-toolbar {
	min-height: 46px;
	padding: 0 0 14px;
	border-width: 0 0 1px;
	border-radius: 0;
	background: transparent;
}

@media (max-width: 1100px) {
	.pcgh-shop-saved-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.pcgh-shop-saved-toolbar {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding: 12px;
	}
	.pcgh-shop-saved-grid {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-saved-card {
		grid-template-columns: 104px minmax(0, 1fr);
		gap: 12px;
	}
	.pcgh-shop-saved-card__actions {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-saved-card__actions button {
		width: 100%;
	}
	.pcgh-shop-saved-pagination {
		justify-content: center;
	}
	.pcgh-shop-compare-table {
		min-width: 680px;
	}
	.pcgh-shop-compare-table th,
	.pcgh-shop-compare-table td {
		padding: 12px;
	}
	.pcgh-uc-shop-favorites .pcgh-shop-saved-toolbar,
	.pcgh-uc-favorites .pcgh-shop-saved-toolbar {
		padding: 0 0 12px;
	}
}

.pcgh-shop-cart-toolbar {
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 0 20px;
	border-bottom: 1px solid var(--pcgh-border);
}

.pcgh-shop-cart-toolbar strong {
	color: var(--pcgh-text);
	font-size: 16px;
	font-weight: 900;
}

.pcgh-shop-cart-toolbar button,
.pcgh-shop-cart-item__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border: 0;
	background: transparent;
	color: var(--pcgh-text-3);
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
}

.pcgh-shop-cart-toolbar button:hover,
.pcgh-shop-cart-item__remove:hover {
	color: var(--shop-accent);
}

.pcgh-shop-cart-toolbar svg,
.pcgh-shop-cart-item__remove svg {
	width: 16px;
	height: 16px;
}

.pcgh-shop-cart-list {
	display: flex;
	flex-direction: column;
}

.pcgh-shop-cart-item {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr) 118px 104px 34px;
	gap: 16px;
	align-items: center;
	padding: 18px 20px;
	border-bottom: 1px solid var(--pcgh-border);
	transition: opacity .18s ease;
}

.pcgh-shop-cart-item:last-child {
	border-bottom: 0;
}

.pcgh-shop-cart-item.is-updating {
	opacity: .68;
}

.pcgh-shop-cart-item__image {
	display: block;
	width: 96px;
	aspect-ratio: 1 / 1;
	border-radius: 7px;
	background: var(--pcgh-surface-2);
	overflow: hidden;
}

.pcgh-shop-cart-item__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.pcgh-shop-cart-item__main {
	min-width: 0;
}

.pcgh-shop-cart-item__main a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--pcgh-text);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.45;
	text-decoration: none;
}

.pcgh-shop-cart-item__main p {
	margin: 7px 0 0;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.5;
}

.pcgh-shop-cart-item__main em {
	display: block;
	margin-top: 8px;
	color: var(--pcgh-text-2);
	font-style: normal;
	font-size: 13px;
	font-weight: 800;
}

.pcgh-shop-member-price-note {
	display: block;
	margin-top: 4px;
	color: var(--pcgh-success, #16a34a);
	font-size: 12px;
	font-style: normal;
	line-height: 1.4;
}

.pcgh-shop-cart-item__qty {
	display: inline-grid;
	grid-template-columns: 34px 46px 34px;
	width: 114px;
	border: 1px solid var(--pcgh-border);
	border-radius: 5px;
	background: var(--pcgh-surface-2);
	overflow: hidden;
}

.pcgh-shop-cart-item__qty button,
.pcgh-shop-cart-item__qty input {
	height: 34px;
	border: 0;
	background: transparent;
	color: var(--pcgh-text);
	text-align: center;
	font-size: 14px;
}

.pcgh-shop-cart-item__qty button {
	cursor: pointer;
}

.pcgh-shop-cart-item__qty input {
	-moz-appearance: textfield;
}

.pcgh-shop-cart-item__qty input::-webkit-outer-spin-button,
.pcgh-shop-cart-item__qty input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.pcgh-shop-cart-item > strong {
	color: var(--shop-accent);
	font-size: 16px;
	font-weight: 900;
	text-align: right;
}

.pcgh-shop-summary {
	position: relative;
}

.pcgh-shop-summary__box {
	position: sticky;
	top: 92px;
	z-index: 4;
	padding: 20px;
}

.pcgh-shop-summary__box h2,
.pcgh-shop-checkout-panel h2,
.pcgh-shop-checkout-success h2,
.pcgh-shop-empty-state h2 {
	margin: 0 0 16px;
	color: var(--pcgh-text);
	font-size: 20px;
	line-height: 1.3;
	font-weight: 900;
}

.pcgh-shop-summary__items {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 18px;
}

.pcgh-shop-summary__items div {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
}

.pcgh-shop-summary__items span {
	width: 48px;
	aspect-ratio: 1 / 1;
	border-radius: 6px;
	background: var(--pcgh-surface-2);
	overflow: hidden;
}

.pcgh-shop-summary__items img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.pcgh-shop-summary__items strong {
	color: var(--pcgh-text);
	font-size: 13px;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pcgh-shop-summary__items em {
	color: var(--pcgh-text-3);
	font-style: normal;
	font-size: 12px;
	font-weight: 800;
}

.pcgh-shop-summary__box dl {
	margin: 0;
	border-top: 1px solid var(--pcgh-border);
}

.pcgh-shop-summary__box dl div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 13px 0;
	border-bottom: 1px solid var(--pcgh-border);
}

.pcgh-shop-summary__box dt,
.pcgh-shop-summary__box dd {
	margin: 0;
	font-size: 14px;
}

.pcgh-shop-summary__box dt {
	color: var(--pcgh-text-3);
}

.pcgh-shop-summary__box dd {
	color: var(--pcgh-text);
	font-weight: 900;
}

.pcgh-shop-summary__box .is-total dd {
	color: var(--shop-accent);
	font-size: 24px;
	line-height: 1;
}

.pcgh-shop-summary__cta {
	width: 100%;
	height: 46px;
	margin-top: 18px;
	border-color: var(--shop-accent);
	background: var(--shop-accent);
	color: #fff;
	box-shadow: 0 12px 22px color-mix(in srgb, var(--shop-accent) 24%, transparent);
}

.pcgh-shop-summary__hint {
	margin: 16px 0 0;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.7;
}

.pcgh-shop-mini-cart {
	border: 1px solid var(--pcgh-border);
	border-radius: var(--shop-radius);
	background: color-mix(in srgb, var(--pcgh-surface) 97%, transparent);
	color: var(--pcgh-text);
	box-shadow: 0 14px 34px rgba(15,23,42,.1);
	overflow: hidden;
}

.pcgh-shop-mini-cart__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 58px;
	padding: 0 18px;
	border-bottom: 1px solid var(--pcgh-border);
}

.pcgh-shop-mini-cart__head > div {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.pcgh-shop-mini-cart__head span,
.pcgh-shop-mini-cart__head button,
.pcgh-shop-mini-cart__empty span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pcgh-shop-mini-cart__head span {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--shop-soft);
	color: var(--shop-accent);
}

.pcgh-shop-mini-cart__head svg {
	width: 17px;
	height: 17px;
}

.pcgh-shop-mini-cart__head strong {
	color: var(--pcgh-text);
	font-size: 16px;
	font-weight: 900;
	white-space: nowrap;
}

.pcgh-shop-mini-cart__head em {
	color: var(--pcgh-text-3);
	font-size: 12px;
	font-style: normal;
	font-weight: 800;
	white-space: nowrap;
}

.pcgh-shop-mini-cart__head em b {
	color: var(--shop-accent);
	font-weight: 900;
}

.pcgh-shop-mini-cart__head button,
.pcgh-shop-mini-cart__remove {
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--pcgh-text-3);
	cursor: pointer;
}

.pcgh-shop-mini-cart__head button:hover,
.pcgh-shop-mini-cart__remove:hover {
	background: var(--pcgh-surface-2);
	color: var(--shop-accent);
}

.pcgh-shop-mini-cart__items {
	max-height: 420px;
	overflow: auto;
}

.pcgh-shop-mini-cart__item {
	position: relative;
	display: grid;
	grid-template-columns: 68px minmax(0,1fr) 32px;
	gap: 12px;
	align-items: start;
	padding: 14px 16px;
	border-bottom: 1px solid var(--pcgh-border);
	transition: opacity .18s ease;
}

.pcgh-shop-mini-cart__item:last-child {
	border-bottom: 0;
}

.pcgh-shop-mini-cart__item.is-updating {
	opacity: .68;
}

.pcgh-shop-mini-cart__thumb {
	width: 68px;
	aspect-ratio: 1 / 1;
	display: block;
	border-radius: 7px;
	background: var(--pcgh-surface-2);
	overflow: hidden;
}

.pcgh-shop-mini-cart__thumb img,
.pcgh-shop-mini-cart__thumb > span {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pcgh-shop-mini-cart__thumb img {
	object-fit: cover;
}

.pcgh-shop-mini-cart__thumb svg {
	width: 24px;
	height: 24px;
	color: var(--pcgh-text-3);
}

.pcgh-shop-mini-cart__main {
	min-width: 0;
}

.pcgh-shop-mini-cart__main > a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--pcgh-text);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.42;
	text-decoration: none;
}

.pcgh-shop-mini-cart__main p {
	margin: 5px 0 0;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.45;
}

.pcgh-shop-mini-cart__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 8px;
}

.pcgh-shop-mini-cart__meta em,
.pcgh-shop-mini-cart__meta strong {
	font-size: 13px;
	font-style: normal;
	font-weight: 900;
	white-space: nowrap;
}

.pcgh-shop-mini-cart__meta em {
	color: var(--pcgh-text-2);
}

.pcgh-shop-mini-cart__meta strong {
	color: var(--shop-accent);
}

.pcgh-shop-mini-cart__qty {
	display: inline-grid;
	grid-template-columns: 28px 38px 28px;
	width: 94px;
	margin-top: 10px;
	border: 1px solid var(--pcgh-border);
	border-radius: 5px;
	background: var(--pcgh-surface-2);
	overflow: hidden;
}

.pcgh-shop-mini-cart__qty button,
.pcgh-shop-mini-cart__qty input {
	height: 30px;
	border: 0;
	background: transparent;
	color: var(--pcgh-text);
	text-align: center;
	font-size: 13px;
}

.pcgh-shop-mini-cart__qty button {
	cursor: pointer;
}

.pcgh-shop-mini-cart__qty input {
	-moz-appearance: textfield;
}

.pcgh-shop-mini-cart__qty input::-webkit-outer-spin-button,
.pcgh-shop-mini-cart__qty input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.pcgh-shop-mini-cart__remove svg {
	width: 16px;
	height: 16px;
}

.pcgh-shop-mini-cart__footer {
	padding: 16px;
	border-top: 1px solid var(--pcgh-border);
	background: color-mix(in srgb, var(--pcgh-surface-2) 54%, transparent);
}

.pcgh-shop-mini-cart__totals {
	margin: 0;
}

.pcgh-shop-mini-cart__totals div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 7px 0;
}

.pcgh-shop-mini-cart__totals dt,
.pcgh-shop-mini-cart__totals dd {
	margin: 0;
	font-size: 13px;
}

.pcgh-shop-mini-cart__totals dt {
	color: var(--pcgh-text-3);
}

.pcgh-shop-mini-cart__totals dd {
	color: var(--pcgh-text);
	font-weight: 900;
}

.pcgh-shop-mini-cart__totals .is-total {
	padding-top: 10px;
	border-top: 1px solid var(--pcgh-border);
}

.pcgh-shop-mini-cart__totals .is-total dd {
	color: var(--shop-accent);
	font-size: 20px;
}

.pcgh-shop-mini-cart__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 14px;
}

.pcgh-shop-mini-cart__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 40px;
	padding: 0 12px;
	border: 1px solid var(--pcgh-border);
	border-radius: 999px;
	background: var(--pcgh-surface);
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.pcgh-shop-mini-cart__actions a.is-primary {
	border-color: var(--shop-accent);
	background: var(--shop-accent);
	color: #fff;
	box-shadow: 0 10px 20px color-mix(in srgb, var(--shop-accent) 22%, transparent);
}

.pcgh-shop-mini-cart__actions svg {
	width: 15px;
	height: 15px;
}

.pcgh-shop-mini-cart__empty {
	display: flex;
	min-height: 220px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 9px;
	padding: 28px 18px;
	text-align: center;
}

.pcgh-shop-mini-cart__empty span {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--shop-soft);
	color: var(--shop-accent);
}

.pcgh-shop-mini-cart__empty svg {
	width: 26px;
	height: 26px;
}

.pcgh-shop-mini-cart__empty strong {
	color: var(--pcgh-text);
	font-size: 16px;
	font-weight: 900;
}

.pcgh-shop-mini-cart__empty p {
	margin: 0;
	color: var(--pcgh-text-3);
	font-size: 13px;
	line-height: 1.6;
}

.pcgh-shop-mini-cart-overlay {
	position: fixed;
	inset: 0;
	z-index: 99991;
	background: rgba(15,23,42,.38);
	opacity: 0;
	transition: opacity .22s ease;
}

.pcgh-shop-mini-cart-overlay.is-open {
	opacity: 1;
}

.pcgh-shop-mini-cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 99992;
	width: min(420px, calc(100vw - 24px));
	height: 100vh;
	padding: 14px;
	background: var(--pcgh-bg);
	box-shadow: -18px 0 38px rgba(15,23,42,.22);
	transform: translateX(104%);
	transition: transform .24s ease;
}

.pcgh-shop-mini-cart-drawer.is-open {
	transform: translateX(0);
}

.pcgh-shop-mini-cart-drawer .pcgh-shop-mini-cart {
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: none;
}

.pcgh-shop-mini-cart-drawer .pcgh-shop-mini-cart__items {
	max-height: none;
	flex: 1 1 auto;
}

.pcgh-shop-mini-cart-drawer .pcgh-shop-mini-cart__footer {
	flex: 0 0 auto;
}

.pcgh-side-float__item {
	position: relative;
}

.pcgh-side-float__badge {
	position: absolute;
	top: -5px;
	right: -5px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--shop-accent, #ff3b5f);
	color: #fff;
	box-shadow: 0 6px 12px rgba(15,23,42,.22);
	font-size: 11px;
	font-style: normal;
	font-weight: 900;
	line-height: 18px;
	text-align: center;
}

.pcgh-shop-checkout-panel {
	padding: 22px;
}

.pcgh-shop-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.pcgh-shop-form-grid label {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.pcgh-shop-form-grid__wide,
.pcgh-shop-form-grid label:nth-child(4) {
	grid-column: 1 / -1;
}

.pcgh-shop-form-grid span {
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
}

.pcgh-shop-form-grid input,
.pcgh-shop-form-grid textarea {
	width: 100%;
	border: 1px solid var(--pcgh-border);
	border-radius: 6px;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.5;
	outline: 0;
}

.pcgh-shop-form-grid input {
	height: 42px;
	padding: 0 12px;
}

.pcgh-shop-form-grid textarea {
	padding: 11px 12px;
	resize: vertical;
}

.pcgh-shop-form-grid input:focus,
.pcgh-shop-form-grid textarea:focus {
	border-color: var(--shop-accent);
	box-shadow: 0 0 0 3px var(--shop-soft);
}

.pcgh-shop-payment-methods {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--pcgh-border);
}

.pcgh-shop-payment-methods h2 {
	margin-bottom: 12px;
}

.pcgh-shop-payment-methods > div {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.pcgh-shop-payment-methods label {
	min-height: 44px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 12px;
	border: 1px solid var(--pcgh-border);
	border-radius: 6px;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
}

.pcgh-shop-payment-methods input {
	width: 16px;
	height: 16px;
	accent-color: var(--shop-accent);
}

.pcgh-shop-payment-method__image {
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	object-fit: contain;
}

.pcgh-shop-payment-methods label:has(input:checked) {
	border-color: var(--shop-accent);
	background: var(--shop-soft);
	color: var(--shop-accent);
}

.pcgh-shop-points-payment {
	display: block;
	padding: 14px;
	border: 1px solid var(--pcgh-border);
	border-radius: 6px;
	background: var(--pcgh-surface-2);
}

.pcgh-shop-payment-methods > .pcgh-shop-points-payment {
	display: block;
}

.pcgh-shop-points-payment strong {
	display: block;
	color: var(--shop-accent);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.4;
}

.pcgh-shop-points-payment p {
	margin: 6px 0 0;
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.6;
}

.pcgh-shop-payment-methods p {
	margin: 10px 0 0;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.7;
}

.pcgh-shop-coupon-box {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--pcgh-border);
}

.pcgh-shop-coupon-box h2 {
	margin-bottom: 12px;
}

.pcgh-shop-coupon-box > div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 96px;
	gap: 10px;
}

.pcgh-shop-coupon-box input {
	width: 100%;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--pcgh-border);
	border-radius: 6px;
	background: var(--pcgh-surface-2);
	color: var(--pcgh-text);
	font-size: 14px;
	outline: 0;
}

.pcgh-shop-coupon-box input:focus {
	border-color: var(--shop-accent);
	box-shadow: 0 0 0 3px var(--shop-soft);
}

.pcgh-shop-coupon-box button {
	height: 42px;
	border: 1px solid var(--shop-accent);
	border-radius: 6px;
	background: var(--shop-soft);
	color: var(--shop-accent);
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
}

.pcgh-shop-coupon-box p {
	margin: 10px 0 0;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.6;
}

.pcgh-shop-checkout-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 20px;
}

.pcgh-shop-checkout-actions button {
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 24px;
	border: 0;
	border-radius: 5px;
	background: var(--shop-accent);
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	cursor: pointer;
	box-shadow: 0 12px 22px color-mix(in srgb, var(--shop-accent) 24%, transparent);
}

.pcgh-shop-checkout-actions button svg {
	width: 17px;
	height: 17px;
}

.pcgh-shop-checkout-actions p {
	margin: 0;
	color: var(--pcgh-text-3);
	font-size: 12px;
	line-height: 1.6;
}

.pcgh-shop-empty-state,
.pcgh-shop-checkout-success {
	padding: 46px 24px;
	text-align: center;
}

.pcgh-shop-empty-state > span,
.pcgh-shop-checkout-success > span {
	width: 64px;
	height: 64px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	border-radius: 50%;
	background: var(--shop-soft);
	color: var(--shop-accent);
}

.pcgh-shop-empty-state > span svg,
.pcgh-shop-checkout-success > span svg {
	width: 30px;
	height: 30px;
}

.pcgh-shop-empty-state p,
.pcgh-shop-checkout-success p {
	margin: 0 0 18px;
	color: var(--pcgh-text-2);
	font-size: 14px;
	line-height: 1.7;
}

.pcgh-shop-checkout-success {
	border: 1px solid var(--pcgh-border);
	border-radius: var(--shop-radius);
	background: color-mix(in srgb, var(--pcgh-surface) 96%, transparent);
}

.pcgh-shop-checkout-success strong {
	color: var(--shop-accent);
}

.pcgh-shop-toast {
	position: fixed;
	left: 50%;
	bottom: 34px;
	z-index: 99999;
	transform: translateX(-50%) translateY(18px);
	padding: 11px 16px;
	border-radius: 999px;
	background: rgba(15,23,42,.92);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	opacity: 0;
	pointer-events: none;
	transition: .22s ease;
}

.pcgh-shop-toast.is-show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-gallery__main,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-detail-duo figure {
	background: color-mix(in srgb, var(--pcgh-surface) 88%, #fff 4%);
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-topic:before {
	background: linear-gradient(90deg, rgba(2,6,23,.78), rgba(2,6,23,.28));
}

@media (max-width: 1180px) {
	.pcgh-shop-topics,
	.pcgh-shop-product-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.pcgh-shop-single__grid,
	.pcgh-shop-detail-grid,
	.pcgh-shop-flow-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.pcgh-shop-buybox,
	.pcgh-shop-summary__box {
		position: static;
	}
	.pcgh-shop-detail {
		grid-column: auto;
	}
}

@media (max-width: 768px) {
	.pcgh-shop-hero {
		padding-top: 28px;
	}
	.pcgh-shop-hero__head {
		display: block;
	}
	.pcgh-shop-hero__head h1 {
		font-size: 28px;
	}
	.pcgh-shop-hero__figure {
		display: none;
	}
	.pcgh-shop-topics,
	.pcgh-shop-product-row,
	.pcgh-shop-services-strip,
	.pcgh-shop-detail-duo,
	.pcgh-shop-detail-gallery {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-section-head {
		grid-template-columns: 1fr auto;
	}
	.pcgh-shop-section-head p {
		grid-column: 1 / -1;
	}
	.pcgh-shop-home-card {
		grid-template-columns: 112px minmax(0,1fr);
	}
	.pcgh-shop-services-strip div {
		padding: 15px 16px;
	}
	.pcgh-shop-gallery {
		display: flex;
		flex-direction: column-reverse;
	}
	.pcgh-shop-gallery__thumbs {
		flex-direction: row;
		overflow-x: auto;
		padding-bottom: 3px;
	}
	.pcgh-shop-gallery__thumbs button {
		flex: 0 0 64px;
		width: 64px;
	}
	.pcgh-shop-gallery__main {
		min-height: auto;
		aspect-ratio: 1 / 1;
	}
	.pcgh-shop-gallery__actions {
		grid-column: auto;
		margin-top: 0;
		padding: 10px 0 0;
		justify-content: flex-start;
	}
	.pcgh-shop-buybox {
		padding: 18px;
	}
	.pcgh-shop-buybox h1 {
		font-size: 21px;
	}
	.pcgh-shop-pricebox strong {
		font-size: 27px;
	}
	.pcgh-shop-buybox__actions,
	.pcgh-shop-buybox__services > div {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-tabs {
		gap: 18px;
		overflow-x: auto;
		padding: 0 16px;
	}
	.pcgh-shop-tabs button {
		white-space: nowrap;
	}
	.pcgh-shop-tab-panel {
		padding: 16px;
	}
	.pcgh-shop-reviews__summary {
		grid-template-columns: auto minmax(0, 1fr);
		align-items: start;
	}
	.pcgh-shop-reviews__write {
		grid-column: 1 / -1;
		width: 100%;
	}
	.pcgh-shop-reviews__dist div {
		grid-template-columns: 38px minmax(0, 1fr) 28px;
	}
	.pcgh-shop-flow-head {
		display: block;
	}
	.pcgh-shop-flow-head h1 {
		font-size: 26px;
	}
	.pcgh-shop-flow-head a {
		margin-top: 14px;
	}
	.pcgh-shop-cart-toolbar {
		height: auto;
		align-items: flex-start;
		flex-direction: column;
		padding: 16px;
	}
	.pcgh-shop-cart-item {
		grid-template-columns: 82px minmax(0,1fr) 34px;
		gap: 12px;
		padding: 16px;
	}
	.pcgh-shop-cart-item__image {
		width: 82px;
	}
	.pcgh-shop-cart-item__qty {
		grid-column: 2;
		width: 112px;
	}
	.pcgh-shop-cart-item > strong {
		grid-column: 2;
		text-align: left;
	}
	.pcgh-shop-cart-item__remove {
		grid-column: 3;
		grid-row: 1;
		width: 34px;
		height: 34px;
	}
	.pcgh-shop-mini-cart-drawer {
		width: 100vw;
		padding: 10px;
	}
	.pcgh-shop-mini-cart__item {
		grid-template-columns: 62px minmax(0,1fr) 30px;
		padding: 13px;
	}
	.pcgh-shop-mini-cart__thumb {
		width: 62px;
	}
	.pcgh-shop-mini-cart__actions {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-form-grid,
	.pcgh-shop-checkout-actions {
		grid-template-columns: 1fr;
		display: grid;
	}
	.pcgh-shop-payment-methods > div {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-checkout-actions button {
		width: 100%;
	}
	.pcgh-shop-checkout-panel {
		padding: 18px;
	}
}

.pcgh-shop-home-v2 {
	--shop-blue: #1f6fff;
	--shop-orange: #ff6a21;
	--shop-home-bg: #f7faff;
	--shop-home-card: #fff;
	--shop-home-card-2: #f7faff;
	--shop-home-border: #e5edf8;
	--shop-home-muted: #66758f;
	--shop-home-shadow: 0 14px 34px rgba(30, 91, 174, .08);
	background: linear-gradient(180deg, #fff 0, var(--shop-home-bg) 35%, #fff 100%);
	color: #101828;
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-home-v2 {
	--shop-home-bg: #0b1220;
	--shop-home-card: #111a2b;
	--shop-home-card-2: #0f1728;
	--shop-home-border: rgba(148,163,184,.18);
	--shop-home-muted: #9aa8bd;
	--shop-home-shadow: 0 16px 38px rgba(0,0,0,.28);
	background: linear-gradient(180deg, #0a1020 0, #0b1220 48%, #0a1020 100%);
	color: var(--pcgh-text);
}

.pcgh-shop-home-v2 .pcgh-container {
	max-width: 1200px;
}

.pcgh-shop-hero-v2 {
	padding: 34px 0 24px;
}

.pcgh-shop-hero-v2__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(360px, .95fr);
	gap: 16px;
	align-items: stretch;
}

.pcgh-shop-hero-v2__grid.no-slider {
	grid-template-columns: 1fr;
}

.pcgh-shop-hero-v2__grid.no-promos {
	grid-template-columns: minmax(0, 1fr);
}

.pcgh-shop-hero-slider {
	position: relative;
	min-height: 252px;
	border-radius: 8px;
	overflow: hidden;
	background: var(--shop-home-card-2);
	box-shadow: var(--shop-home-shadow);
}

.pcgh-shop-hero-slide {
	position: absolute;
	inset: 0;
	display: block;
	color: #fff;
	text-decoration: none;
	opacity: 0;
	pointer-events: none;
	transition: opacity .28s ease;
}

.pcgh-shop-hero-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.pcgh-shop-hero-slide picture,
.pcgh-shop-hero-slide img {
	width: 100%;
	height: 100%;
	display: block;
}

.pcgh-shop-hero-slide img {
	object-fit: cover;
}

.pcgh-shop-hero-slide:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(21,82,176,.58), rgba(21,82,176,.15) 48%, rgba(21,82,176,0));
	pointer-events: none;
}

.pcgh-shop-hero-slide__content {
	position: absolute;
	z-index: 2;
	left: 34px;
	top: 50%;
	width: min(45%, 330px);
	transform: translateY(-50%);
}

.pcgh-shop-hero-slide__content strong,
.pcgh-shop-hero-slide__content em,
.pcgh-shop-hero-slide__content b {
	display: block;
}

.pcgh-shop-hero-slide__content strong {
	font-size: 34px;
	line-height: 1.18;
	font-weight: 900;
	letter-spacing: 0;
	text-shadow: 0 2px 12px rgba(15,23,42,.18);
}

.pcgh-shop-hero-slide__content em {
	margin-top: 12px;
	color: rgba(255,255,255,.9);
	font-style: normal;
	font-size: 16px;
	line-height: 1.6;
}

.pcgh-shop-hero-slide__content b {
	width: max-content;
	max-width: 100%;
	height: 34px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 20px;
	padding: 0 16px;
	border-radius: 999px;
	background: #fff;
	color: #1d4ed8;
	font-size: 13px;
	font-weight: 900;
}

.pcgh-shop-hero-slide__content svg {
	width: 15px;
	height: 15px;
}

.pcgh-shop-hero-dots {
	position: absolute;
	z-index: 4;
	left: 50%;
	bottom: 12px;
	display: flex;
	gap: 6px;
	transform: translateX(-50%);
}

.pcgh-shop-hero-dots button {
	width: 7px;
	height: 7px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255,255,255,.72);
	cursor: pointer;
	transition: width .2s ease, background .2s ease;
}

.pcgh-shop-hero-dots button.is-active {
	width: 20px;
	background: #fff;
}

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

.pcgh-shop-promo-card {
	position: relative;
	min-height: 119px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 42%;
	align-items: center;
	gap: 8px;
	padding: 18px 16px;
	border: 1px solid var(--shop-home-border);
	border-radius: 8px;
	background: color-mix(in srgb, var(--shop-home-card) 96%, #f2f6ff 4%);
	color: inherit;
	text-decoration: none;
	overflow: hidden;
	box-shadow: 0 10px 26px rgba(30,91,174,.05);
}

.pcgh-shop-promo-card strong,
.pcgh-shop-promo-card em,
.pcgh-shop-promo-card b {
	display: block;
}

.pcgh-shop-promo-card strong {
	color: var(--pcgh-text);
	font-size: 18px;
	line-height: 1.25;
	font-weight: 900;
}

.pcgh-shop-promo-card em {
	margin-top: 6px;
	color: var(--shop-home-muted);
	font-style: normal;
	font-size: 12px;
	line-height: 1.5;
}

.pcgh-shop-promo-card b {
	width: max-content;
	height: 28px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 12px;
	padding: 0 12px;
	border-radius: 999px;
	background: var(--pcgh-surface);
	border: 1px solid var(--shop-home-border);
	color: #27405f;
	font-size: 12px;
	font-weight: 900;
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-promo-card b {
	color: var(--pcgh-text);
	background: rgba(255,255,255,.05);
}

.pcgh-shop-promo-card b svg {
	width: 13px;
	height: 13px;
}

.pcgh-shop-promo-card img {
	width: 100%;
	max-height: 108px;
	object-fit: contain;
	align-self: end;
	justify-self: end;
}

.pcgh-shop-promo-card i {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	align-self: center;
	font-style: normal;
}

.pcgh-shop-promo-card small {
	min-width: 0;
	padding: 5px 7px;
	border-radius: 4px;
	background: var(--shop-home-card-2);
	color: var(--pcgh-text);
	font-size: 11px;
	font-weight: 900;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pcgh-shop-category-section {
	padding: 6px 0 24px;
}

.pcgh-shop-home-v2 .pcgh-shop-section-head {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 12px;
	margin: 0 0 14px;
}

.pcgh-shop-home-v2 .pcgh-shop-section-head h2 {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0;
	color: var(--pcgh-text);
	font-size: 21px;
	line-height: 1.25;
	font-weight: 900;
}

.pcgh-shop-home-v2 .pcgh-shop-section-head h2 svg {
	width: 18px;
	height: 18px;
	color: var(--shop-orange);
}

.pcgh-shop-home-v2 .pcgh-shop-section-head p {
	margin: 0;
	color: var(--shop-home-muted);
	font-size: 12px;
}

.pcgh-shop-home-v2 .pcgh-shop-section-head a {
	color: var(--shop-home-muted);
	font-size: 12px;
	font-weight: 900;
	text-decoration: none;
}

.pcgh-shop-category-row {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.pcgh-shop-category-card {
	position: relative;
	min-height: 72px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 72px;
	align-items: center;
	gap: 8px;
	padding: 12px 10px 12px 16px;
	border: 1px solid var(--shop-home-border);
	border-radius: 8px;
	background: var(--shop-home-card);
	color: inherit;
	text-decoration: none;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(30,91,174,.04);
}

.pcgh-shop-category-card strong {
	display: block;
	color: var(--pcgh-text);
	font-size: 15px;
	line-height: 1.3;
	font-weight: 900;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pcgh-shop-category-card em {
	display: block;
	margin-top: 5px;
	color: var(--shop-home-muted);
	font-style: normal;
	font-size: 11px;
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pcgh-shop-category-card img {
	width: 72px;
	height: 58px;
	object-fit: contain;
	align-self: end;
	justify-self: end;
}

.pcgh-shop-products-section {
	padding: 0 0 34px;
}

.pcgh-shop-term {
	padding: 24px 0 42px;
}

.pcgh-shop-term .pcgh-shop-breadcrumb {
	margin-bottom: 16px;
}

.pcgh-shop-term-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 24px;
	padding: 22px;
	border: 1px solid var(--shop-home-border);
	border-radius: 8px;
	background: var(--shop-home-card);
	box-shadow: 0 10px 26px rgba(30,91,174,.05);
}

.pcgh-shop-term-head span {
	display: inline-flex;
	align-items: center;
	height: 24px;
	margin-bottom: 8px;
	padding: 0 9px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--shop-blue) 10%, var(--shop-home-card));
	color: var(--shop-blue);
	font-size: 11px;
	font-weight: 900;
}

.pcgh-shop-term-head h1 {
	margin: 0;
	color: var(--pcgh-text);
	font-size: 30px;
	line-height: 1.22;
	font-weight: 900;
	letter-spacing: 0;
}

.pcgh-shop-term-head div div {
	margin-top: 8px;
	color: var(--shop-home-muted);
	font-size: 14px;
	line-height: 1.7;
}

.pcgh-shop-term-head div div p {
	margin: 0;
}

.pcgh-shop-term-head > a {
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex: 0 0 auto;
	padding: 0 14px;
	border: 1px solid var(--shop-home-border);
	border-radius: 999px;
	background: var(--shop-home-card);
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.pcgh-shop-term-head > a svg,
.pcgh-shop-term-head > a i {
	width: 16px;
	height: 16px;
}

.pcgh-shop-products-head {
	margin-top: 6px;
}

.pcgh-shop-products-ajax {
	position: relative;
}

.pcgh-shop-products-ajax.is-loading {
	pointer-events: none;
}

.pcgh-shop-products-ajax.is-loading [data-pcgh-products-result] {
	opacity: .55;
}

.pcgh-shop-products-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 18px;
}

.pcgh-shop-products-cats {
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	overflow-x: auto;
	scrollbar-width: none;
}

.pcgh-shop-products-cats::-webkit-scrollbar {
	display: none;
}

.pcgh-shop-products-cats a {
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	padding: 0 14px;
	border: 1px solid var(--shop-home-border);
	border-radius: 6px;
	background: var(--shop-home-card);
	color: var(--shop-home-muted);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
}

.pcgh-shop-products-cats a:hover,
.pcgh-shop-products-cats a.is-active {
	border-color: color-mix(in srgb, var(--shop-blue) 44%, var(--shop-home-border));
	background: color-mix(in srgb, var(--shop-blue) 10%, var(--shop-home-card));
	color: var(--shop-blue);
}

.pcgh-shop-products-toolbar label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	color: var(--shop-home-muted);
	font-size: 12px;
	font-weight: 900;
}

.pcgh-shop-products-toolbar select {
	height: 34px;
	min-width: 138px;
	padding: 0 34px 0 12px;
	border: 1px solid var(--shop-home-border);
	border-radius: 6px;
	background: var(--shop-home-card);
	color: var(--pcgh-text);
	font-size: 12px;
	font-weight: 800;
}

.pcgh-shop-home-v2 .pcgh-shop-product-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.pcgh-shop-home-v2 .pcgh-shop-home-card {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-height: 0;
	padding: 12px;
	border: 1px solid var(--shop-home-border);
	border-radius: 8px;
	background: var(--shop-home-card);
	box-shadow: 0 10px 26px rgba(30,91,174,.06);
	overflow: hidden;
}

.pcgh-shop-home-v2 .pcgh-shop-home-card__img {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 7px;
	background: var(--shop-home-card-2);
	overflow: hidden;
}

.pcgh-shop-home-v2 .pcgh-shop-home-card__img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.pcgh-shop-home-v2 .pcgh-shop-home-card__body {
	min-width: 0;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 12px 0 0;
}

.pcgh-shop-home-v2 .pcgh-shop-home-card__title {
	color: var(--pcgh-text);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.42;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.pcgh-shop-home-v2 .pcgh-shop-home-card__body p {
	margin: 6px 0 0;
	color: var(--shop-home-muted);
	font-size: 12px;
	line-height: 1.45;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pcgh-shop-home-v2 .pcgh-shop-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 10px 0 0;
}

.pcgh-shop-home-v2 .pcgh-shop-card-tags span {
	display: inline-flex;
	align-items: center;
	min-height: 23px;
	padding: 0 7px;
	border: 1px solid color-mix(in srgb,var(--shop-green,#36ad6a) 30%,var(--shop-home-border));
	border-radius: 4px;
	background: color-mix(in srgb,var(--shop-green,#36ad6a) 8%,var(--shop-home-card));
	color: var(--shop-green,#36ad6a);
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
}

.pcgh-shop-home-v2 .pcgh-shop-card-tags span:nth-child(even) {
	border-color: color-mix(in srgb,var(--shop-orange) 36%,var(--shop-home-border));
	background: color-mix(in srgb,var(--shop-orange) 8%,var(--shop-home-card));
	color: var(--shop-orange);
}

.pcgh-shop-home-v2 .pcgh-shop-home-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 14px;
}

.pcgh-shop-home-v2 .pcgh-shop-home-card__foot strong {
	color: var(--shop-orange);
	font-size: 18px;
	line-height: 1;
	font-weight: 900;
}

.pcgh-shop-home-v2 .pcgh-shop-home-card__foot div {
	display: flex;
	gap: 8px;
}

.pcgh-shop-home-v2 .pcgh-shop-home-card__foot button {
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--shop-home-border);
	border-radius: 50%;
	background: var(--shop-home-card);
	color: #62718a;
	cursor: pointer;
}

.pcgh-shop-home-v2 .pcgh-shop-home-card__foot button svg {
	width: 15px;
	height: 15px;
}

.pcgh-shop-home-v2 .pcgh-shop-home-card__foot button:hover,
.pcgh-shop-home-v2 .pcgh-shop-home-card__foot button.is-active {
	border-color: color-mix(in srgb, var(--shop-blue) 38%, var(--shop-home-border));
	background: color-mix(in srgb, var(--shop-blue) 10%, var(--shop-home-card));
	color: var(--shop-blue);
}

.pcgh-shop-pagination {
	display: flex;
	justify-content: flex-end;
	margin-top: 18px;
}

.pcgh-shop-pagination ul {
	display: flex;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pcgh-shop-pagination a,
.pcgh-shop-pagination span {
	min-width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--shop-home-border);
	border-radius: 6px;
	background: var(--shop-home-card);
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.pcgh-shop-pagination .current {
	border-color: var(--shop-blue);
	background: var(--shop-blue);
	color: #fff;
}

.pcgh-shop-home-v2 .pcgh-shop-services-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin-top: 32px;
	border: 1px solid var(--shop-home-border);
	border-radius: 8px;
	background: var(--shop-home-card);
	box-shadow: 0 8px 22px rgba(30,91,174,.04);
}

.pcgh-shop-home-v2 .pcgh-shop-services-strip div {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	grid-template-rows: auto auto;
	gap: 2px 12px;
	align-items: center;
	padding: 16px 22px;
}

.pcgh-shop-home-v2 .pcgh-shop-services-strip span {
	grid-row: 1 / 3;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--shop-home-card-2);
	color: #111827;
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-home-v2 .pcgh-shop-services-strip span {
	color: var(--pcgh-text);
}

.pcgh-shop-home-v2 .pcgh-shop-services-strip svg {
	width: 22px;
	height: 22px;
}

.pcgh-shop-home-v2 .pcgh-shop-services-strip strong {
	color: var(--pcgh-text);
	font-size: 14px;
	font-weight: 900;
}

.pcgh-shop-home-v2 .pcgh-shop-services-strip em {
	color: var(--shop-home-muted);
	font-size: 11px;
	font-style: normal;
}

.pcgh-shop-home-v2 .pcgh-shop-empty {
	margin: 0;
	padding: 34px 18px;
	border: 1px solid var(--shop-home-border);
	border-radius: 8px;
	background: var(--shop-home-card);
	text-align: center;
	color: var(--shop-home-muted);
}

@media (max-width: 1180px) {
	.pcgh-shop-hero-v2__grid {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-hero-slider {
		min-height: 280px;
	}
	.pcgh-shop-category-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.pcgh-shop-home-v2 .pcgh-shop-product-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.pcgh-shop-hero-v2 {
		padding: 20px 0 18px;
	}
	.pcgh-shop-hero-slider {
		min-height: 220px;
	}
	.pcgh-shop-hero-slide__content {
		left: 22px;
		width: min(62%, 280px);
	}
	.pcgh-shop-hero-slide__content strong {
		font-size: 25px;
	}
	.pcgh-shop-hero-slide__content em {
		font-size: 13px;
	}
	.pcgh-shop-promo-grid,
	.pcgh-shop-category-row,
	.pcgh-shop-home-v2 .pcgh-shop-product-row,
	.pcgh-shop-home-v2 .pcgh-shop-services-strip {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-home-v2 .pcgh-shop-section-head {
		grid-template-columns: 1fr auto;
	}
	.pcgh-shop-home-v2 .pcgh-shop-section-head p {
		grid-column: 1 / -1;
	}
	.pcgh-shop-products-toolbar {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.pcgh-shop-term-head {
		align-items: flex-start;
		flex-direction: column;
		padding: 18px;
	}
	.pcgh-shop-term-head h1 {
		font-size: 25px;
	}
	.pcgh-shop-products-toolbar label,
	.pcgh-shop-products-toolbar select {
		width: 100%;
	}
	.pcgh-shop-products-cats {
		margin-inline: -4px;
		padding-inline: 4px;
	}
	.pcgh-shop-promo-card {
		min-height: 104px;
	}
	.pcgh-shop-category-card {
		grid-template-columns: minmax(0, 1fr) 82px;
	}
	.pcgh-shop-home-v2 .pcgh-shop-home-card {
		display: flex;
	}
	.pcgh-shop-pagination {
		justify-content: center;
	}
	.pcgh-shop-home-v2 .pcgh-shop-services-strip div {
		padding: 15px 16px;
	}
}

.pcgh-shop-order-detail {
	--shop-accent: #1f6fff;
	--shop-soft: rgba(31,111,255,.1);
	--shop-order-blue: #1f6fff;
	--shop-order-orange: #ff6a21;
	--shop-order-card: #fff;
	--shop-order-card-2: #f7faff;
	--shop-order-border: #e3ebf8;
	--shop-order-muted: #6f7c91;
	--shop-order-shadow: 0 10px 28px rgba(37,91,167,.06);
	background: var(--pcgh-bg);
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-order-detail {
	--shop-order-card: color-mix(in srgb, var(--pcgh-surface) 94%, #0f172a 6%);
	--shop-order-card-2: color-mix(in srgb, var(--pcgh-surface-2) 88%, #1f6fff 12%);
	--shop-order-border: var(--pcgh-border);
	--shop-order-muted: var(--pcgh-text-3);
	--shop-order-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.pcgh-shop-order-detail .pcgh-container {
	max-width: 1200px;
}

.pcgh-shop-order-card,
.pcgh-shop-order-status-card {
	border: 1px solid var(--shop-order-border);
	border-radius: 8px;
	background: var(--shop-order-card);
	box-shadow: var(--shop-order-shadow);
}

.pcgh-shop-order-status-card {
	display: grid;
	grid-template-columns: minmax(230px, 300px) minmax(0, 1fr) minmax(190px, 232px);
	gap: 28px;
	align-items: center;
	margin-bottom: 18px;
	padding: 34px 26px;
}

.pcgh-shop-order-status-card__main {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	min-width: 0;
}

.pcgh-shop-order-status-card__icon {
	width: 58px;
	height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: color-mix(in srgb, var(--shop-order-blue) 12%, #fff);
	color: var(--shop-order-blue);
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-order-status-card__icon {
	background: color-mix(in srgb, var(--shop-order-blue) 18%, transparent);
}

.pcgh-shop-order-status-card__icon svg {
	width: 30px;
	height: 30px;
}

.pcgh-shop-order-status-card h1 {
	margin: 0 0 8px;
	color: var(--shop-order-blue);
	font-size: 26px;
	line-height: 1.18;
	font-weight: 900;
	letter-spacing: 0;
}

.pcgh-shop-order-status-card.is-payment-refunded .pcgh-shop-order-status-card__icon {
	background: color-mix(in srgb, #10b981 12%, transparent);
	color: #10b981;
}

.pcgh-shop-order-status-card.is-payment-refunded h1,
.pcgh-shop-order-status-card.is-payment-refunded em strong {
	color: #10b981;
}

.pcgh-shop-order-status-card p,
.pcgh-shop-order-status-card em {
	display: block;
	margin: 0;
	color: var(--shop-order-muted);
	font-size: 13px;
	font-style: normal;
	line-height: 1.6;
}

.pcgh-shop-order-status-card em strong {
	color: var(--shop-order-blue);
	font-weight: 900;
}

.pcgh-shop-order-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pcgh-shop-order-steps li {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 8px;
	color: var(--shop-order-muted);
	text-align: center;
}

.pcgh-shop-order-steps li:not(:last-child):after {
	content: "";
	position: absolute;
	top: 13px;
	left: calc(50% + 18px);
	right: calc(-50% + 18px);
	height: 2px;
	background: var(--shop-order-border);
}

.pcgh-shop-order-steps li.is-line-done:after {
	background: var(--shop-order-blue);
}

.pcgh-shop-order-steps span {
	position: relative;
	z-index: 1;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--shop-order-border);
	border-radius: 50%;
	background: var(--shop-order-card);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
}

.pcgh-shop-order-steps li.is-done span {
	border-color: var(--shop-order-blue);
	background: var(--shop-order-blue);
}

.pcgh-shop-order-steps strong {
	color: var(--pcgh-text);
	font-size: 13px;
	line-height: 1.2;
	font-weight: 900;
}

.pcgh-shop-order-steps em {
	min-height: 16px;
	color: var(--shop-order-muted);
	font-size: 11px;
	font-style: normal;
	line-height: 1.3;
}

.pcgh-shop-order-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.pcgh-shop-order-action {
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	border: 1px solid var(--shop-order-border);
	border-radius: 6px;
	background: var(--shop-order-card);
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}

.pcgh-shop-order-action.is-primary {
	border-color: var(--shop-order-blue);
	background: var(--shop-order-blue);
	color: #fff;
	box-shadow: 0 10px 18px color-mix(in srgb, var(--shop-order-blue) 22%, transparent);
}

.pcgh-shop-order-action.is-disabled {
	opacity: .45;
	cursor: not-allowed;
	box-shadow: none;
}

.pcgh-shop-order-info-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 16px;
}

.pcgh-shop-payment-panel {
	margin-bottom: 16px;
}

.pcgh-shop-auto-delivery {
	margin-bottom: 16px;
	padding: 18px;
}

.pcgh-shop-auto-delivery header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.pcgh-shop-auto-delivery header h2 {
	margin: 0;
	color: var(--pcgh-text);
	font-size: 18px;
	line-height: 1.25;
	font-weight: 900;
}

.pcgh-shop-auto-delivery header p {
	margin: 6px 0 0;
	color: var(--shop-order-muted);
	font-size: 13px;
	line-height: 1.5;
}

.pcgh-shop-auto-delivery header span {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: color-mix(in srgb, var(--shop-order-blue) 12%, transparent);
	color: var(--shop-order-blue);
}

.pcgh-shop-auto-delivery__list {
	display: grid;
	gap: 12px;
}

.pcgh-shop-auto-delivery__item {
	display: grid;
	grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
	gap: 14px;
	padding: 14px;
	border: 1px solid var(--shop-order-border);
	border-radius: 8px;
	background: var(--shop-order-card-2);
}

.pcgh-shop-auto-delivery__item strong,
.pcgh-shop-auto-delivery__item em,
.pcgh-shop-auto-delivery__item small {
	display: block;
}

.pcgh-shop-auto-delivery__item strong {
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.35;
	font-weight: 900;
}

.pcgh-shop-auto-delivery__item em,
.pcgh-shop-auto-delivery__item small {
	margin-top: 6px;
	color: var(--shop-order-muted);
	font-size: 12px;
	font-style: normal;
	line-height: 1.45;
}

.pcgh-shop-auto-delivery__item pre {
	min-width: 0;
	max-height: 260px;
	margin: 0;
	padding: 12px;
	overflow: auto;
	border: 1px solid var(--shop-order-border);
	border-radius: 6px;
	background: var(--shop-order-card);
	color: var(--pcgh-text);
	font-size: 13px;
	line-height: 1.7;
	white-space: pre-wrap;
	word-break: break-word;
}

.pcgh-shop-payment-panel__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}

.pcgh-shop-payment-panel__head p {
	margin: 6px 0 0;
	color: var(--shop-order-muted);
	font-size: 13px;
	line-height: 1.5;
}

.pcgh-shop-payment-panel__head small {
	color: var(--shop-order-muted);
	font-size: 12px;
	font-weight: 600;
}

.pcgh-shop-payment-panel__head > strong {
	color: var(--shop-order-orange);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.1;
	white-space: nowrap;
}

.pcgh-shop-payment-instructions {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	margin-bottom: 16px;
	padding: 16px;
	border: 1px solid var(--shop-order-border);
	border-radius: 8px;
	background: var(--shop-order-card-2);
}

.pcgh-shop-payment-instructions.has-qr {
	grid-template-columns: minmax(0, 1fr) minmax(118px, 148px);
}

.pcgh-shop-payment-instructions > div {
	min-width: 0;
}

.pcgh-shop-payment-instructions strong {
	display: block;
	margin-bottom: 8px;
	color: var(--pcgh-text);
	font-size: 14px;
	font-weight: 900;
}

.pcgh-shop-payment-instructions p {
	margin: 0;
	color: var(--shop-order-muted);
	font-size: 13px;
	line-height: 1.8;
	word-break: break-word;
}

.pcgh-shop-payment-link {
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
	padding: 0 16px;
	border-radius: 6px;
	background: var(--shop-order-blue);
	color: #fff !important;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
}

.pcgh-shop-payment-tools {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
}

.pcgh-shop-payment-tools button {
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border: 1px solid var(--shop-order-border);
	border-radius: 6px;
	background: var(--pcgh-surface);
	color: var(--pcgh-text);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
}

.pcgh-shop-payment-tools button:hover {
	border-color: var(--shop-order-blue);
	color: var(--shop-order-blue);
}

.pcgh-shop-payment-tools button:disabled {
	cursor: wait;
	opacity: .65;
}

.pcgh-shop-payment-tools span {
	color: var(--shop-order-muted);
	font-size: 12px;
	line-height: 1.5;
}

.pcgh-shop-payment-instructions figure {
	margin: 0;
	text-align: center;
}

.pcgh-shop-payment-instructions img {
	width: 118px;
	height: 118px;
	object-fit: cover;
	border: 1px solid var(--shop-order-border);
	border-radius: 8px;
	background: #fff;
}

.pcgh-shop-payment-instructions figcaption {
	margin-top: 6px;
	color: var(--shop-order-muted);
	font-size: 12px;
	line-height: 1.3;
}

.pcgh-shop-payment-proof-view {
	display: grid;
	gap: 10px;
	margin: 0 0 16px;
	padding: 0;
}

.pcgh-shop-payment-proof-view div {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 12px;
}

.pcgh-shop-payment-proof-view dt,
.pcgh-shop-payment-proof-view dd {
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
}

.pcgh-shop-payment-proof-view dt {
	color: var(--shop-order-muted);
}

.pcgh-shop-payment-proof-view dd {
	color: var(--pcgh-text);
	word-break: break-word;
}

.pcgh-shop-payment-proof-form {
	display: grid;
	gap: 14px;
}

.pcgh-shop-payment-proof-form label {
	display: grid;
	gap: 8px;
}

.pcgh-shop-payment-proof-form span {
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
}

.pcgh-shop-payment-proof-form textarea {
	width: 100%;
	min-height: 98px;
	padding: 12px 14px;
	border: 1px solid var(--shop-order-border);
	border-radius: 8px;
	background: var(--pcgh-surface);
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.6;
	resize: vertical;
}

.pcgh-shop-payment-proof-form textarea:focus {
	outline: none;
	border-color: var(--shop-order-blue);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--shop-order-blue) 14%, transparent);
}

.pcgh-shop-payment-proof-form__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.pcgh-shop-payment-proof-form__actions button {
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 18px;
	border: 0;
	border-radius: 6px;
	background: var(--shop-order-blue);
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
	box-shadow: 0 10px 18px color-mix(in srgb, var(--shop-order-blue) 22%, transparent);
}

.pcgh-shop-payment-proof-form__actions button svg {
	width: 17px;
	height: 17px;
}

.pcgh-shop-payment-proof-form__actions p {
	margin: 0;
	color: var(--shop-order-muted);
	font-size: 12px;
	line-height: 1.5;
}

.pcgh-shop-payment-success {
	margin-top: 14px;
	padding: 14px 16px;
	border: 1px solid color-mix(in srgb, #15b87a 30%, var(--shop-order-border));
	border-radius: 8px;
	background: color-mix(in srgb, #15b87a 10%, var(--shop-order-card));
}

.pcgh-shop-payment-success strong {
	display: block;
	color: #0f9f6e;
	font-size: 14px;
	font-weight: 900;
}

.pcgh-shop-payment-success p {
	margin: 4px 0 0;
	color: var(--shop-order-muted);
	font-size: 13px;
}

.pcgh-shop-order-card {
	padding: 20px;
}

.pcgh-shop-order-card header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
}

.pcgh-shop-order-card h2,
.pcgh-shop-order-note h2 {
	margin: 0;
	color: var(--pcgh-text);
	font-size: 17px;
	line-height: 1.3;
	font-weight: 900;
	letter-spacing: 0;
}

.pcgh-shop-order-address__name {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
	color: var(--pcgh-text);
	font-size: 14px;
}

.pcgh-shop-order-address__name strong {
	font-size: 16px;
	font-weight: 900;
}

.pcgh-shop-order-address p,
.pcgh-shop-order-address__text,
.pcgh-shop-order-note p {
	margin: 0;
	min-height: 20px;
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.75;
}

.pcgh-shop-order-extra-fields {
	display: grid;
	gap: 8px;
	margin: 12px 0 0;
	padding-top: 12px;
	border-top: 1px solid var(--pcgh-border);
}

.pcgh-shop-order-extra-fields div {
	display: grid;
	grid-template-columns: 84px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
}

.pcgh-shop-order-extra-fields dt,
.pcgh-shop-order-extra-fields dd {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
}

.pcgh-shop-order-extra-fields dt {
	color: var(--shop-order-muted);
}

.pcgh-shop-order-extra-fields dd {
	color: var(--pcgh-text);
	font-weight: 700;
	word-break: break-word;
}

.pcgh-shop-order-detail-list {
	display: grid;
	gap: 12px;
	margin: 0;
}

.pcgh-shop-order-detail-list div {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	min-height: 18px;
}

.pcgh-shop-order-detail-list dt,
.pcgh-shop-order-detail-list dd {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
}

.pcgh-shop-order-detail-list dt {
	color: var(--shop-order-muted);
}

.pcgh-shop-order-detail-list dd {
	min-height: 20px;
	color: var(--pcgh-text);
	font-weight: 700;
	word-break: break-word;
}

.pcgh-shop-order-note {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	margin-bottom: 16px;
	padding: 16px 20px;
}

.pcgh-shop-order-products {
	margin-bottom: 16px;
	padding: 0;
	overflow: hidden;
}

.pcgh-shop-order-products__head,
.pcgh-shop-order-product {
	display: grid;
	grid-template-columns: minmax(300px, 1fr) 140px 110px 80px 110px 100px;
	gap: 18px;
	align-items: center;
	min-width: 860px;
}

.pcgh-shop-order-products__head {
	height: 54px;
	padding: 0 20px;
	border-bottom: 1px solid var(--shop-order-border);
	color: #2f3b54;
	font-size: 13px;
	font-weight: 900;
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-order-products__head {
	color: var(--pcgh-text);
}

.pcgh-shop-order-products__body {
	overflow-x: auto;
}

.pcgh-shop-order-product {
	padding: 18px 20px;
	border-bottom: 1px solid var(--shop-order-border);
	color: var(--pcgh-text-2);
	font-size: 13px;
}

.pcgh-shop-order-product:last-child {
	border-bottom: 0;
}

.pcgh-shop-order-product__info {
	display: grid;
	grid-template-columns: 116px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	min-width: 0;
}

.pcgh-shop-order-product__img {
	display: block;
	width: 116px;
	aspect-ratio: 1.5 / 1;
	border-radius: 6px;
	background: var(--shop-order-card-2);
	overflow: hidden;
}

.pcgh-shop-order-product__img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.pcgh-shop-order-product__info a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--pcgh-text);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.45;
	text-decoration: none;
}

.pcgh-shop-order-product__info em {
	display: block;
	margin-top: 8px;
	color: var(--shop-order-muted);
	font-size: 12px;
	font-style: normal;
}

.pcgh-shop-order-product__info .pcgh-shop-order-product__meta {
	display: block;
	margin-top: 6px;
	color: var(--shop-order-muted);
	font-size: 12px;
	line-height: 1.55;
}

.pcgh-shop-order-product > span,
.pcgh-shop-order-product > strong {
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.4;
}

.pcgh-shop-order-product > strong {
	color: var(--shop-order-orange);
	font-weight: 900;
}

.pcgh-shop-order-product__actions {
	display: grid;
	gap: 7px;
	justify-items: start;
}

.pcgh-shop-order-product__actions a,
.pcgh-shop-order-product__actions button {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--shop-order-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none;
	cursor: pointer;
}

.pcgh-shop-order-product__actions a:hover,
.pcgh-shop-order-product__actions button:hover {
	color: var(--shop-order-blue);
}

.pcgh-shop-order-product__service-state {
	color: var(--shop-order-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
}

.pcgh-shop-order-amounts {
	display: flex;
	justify-content: flex-end;
	padding: 18px 22px 24px;
	border-top: 1px solid var(--shop-order-border);
}

.pcgh-shop-order-amounts dl {
	width: min(280px, 100%);
	margin: 0;
}

.pcgh-shop-order-amounts div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 5px 0;
}

.pcgh-shop-order-amounts dt,
.pcgh-shop-order-amounts dd {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
}

.pcgh-shop-order-amounts dt {
	color: var(--shop-order-muted);
}

.pcgh-shop-order-amounts dd {
	color: var(--pcgh-text);
	font-weight: 800;
}

.pcgh-shop-order-amounts .is-total {
	margin-top: 8px;
	padding-top: 12px;
	border-top: 1px solid var(--shop-order-border);
}

.pcgh-shop-order-amounts .is-total dt,
.pcgh-shop-order-amounts .is-total dd {
	color: var(--shop-order-orange);
	font-size: 17px;
	font-weight: 900;
}

.pcgh-shop-order-bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 18px;
}

.pcgh-shop-order-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin: -6px 0 16px;
	color: var(--shop-order-muted);
	font-size: 12px;
}

.pcgh-shop-order-tracking__status {
	margin: 5px 0 0;
	color: var(--shop-order-blue);
	font-size: 12px;
	font-weight: 700;
}

.pcgh-shop-order-tracking__refresh {
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0 11px;
	border: 1px solid var(--shop-order-border);
	border-radius: 6px;
	background: var(--shop-order-card);
	color: var(--pcgh-text-2);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.pcgh-shop-order-tracking__refresh:hover {
	border-color: var(--shop-order-blue);
	color: var(--shop-order-blue);
}

.pcgh-shop-order-tracking__refresh svg {
	width: 15px;
	height: 15px;
}

.pcgh-shop-order-tracking__refresh.is-loading svg {
	animation: pcgh-shop-tracking-spin .8s linear infinite;
}

.pcgh-shop-order-tracking__message {
	min-height: 18px;
	margin: -8px 0 10px;
	color: var(--shop-order-muted);
	font-size: 12px;
}

@keyframes pcgh-shop-tracking-spin {
	to { transform: rotate(360deg); }
}

.pcgh-shop-order-tracking ol {
	position: relative;
	display: grid;
	gap: 17px;
	margin: 0;
	padding: 0 0 0 22px;
	list-style: none;
}

.pcgh-shop-order-tracking li {
	position: relative;
	display: grid;
	grid-template-columns: 138px minmax(0, 1fr);
	gap: 10px 18px;
	color: var(--pcgh-text-2);
	font-size: 13px;
}

.pcgh-shop-order-tracking li:before {
	content: "";
	position: absolute;
	left: -22px;
	top: 5px;
	width: 10px;
	height: 10px;
	border: 2px solid var(--shop-order-border);
	border-radius: 50%;
	background: var(--shop-order-card);
}

.pcgh-shop-order-tracking li:not(:last-child):after {
	content: "";
	position: absolute;
	left: -17px;
	top: 20px;
	bottom: -18px;
	width: 1px;
	background: var(--shop-order-border);
}

.pcgh-shop-order-tracking li.is-current:before {
	border-color: var(--shop-order-blue);
	background: var(--shop-order-blue);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--shop-order-blue) 12%, transparent);
}

.pcgh-shop-order-tracking time {
	color: var(--shop-order-muted);
	font-size: 12px;
}

.pcgh-shop-order-tracking strong {
	color: var(--shop-order-blue);
	font-size: 13px;
	font-weight: 900;
}

.pcgh-shop-order-tracking em {
	grid-column: 2;
	color: var(--shop-order-muted);
	font-size: 12px;
	font-style: normal;
}

.pcgh-shop-order-notices {
	margin-bottom: 18px;
	padding: 20px;
}

.pcgh-shop-order-notices ol {
	position: relative;
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0 0 0 22px;
	list-style: none;
}

.pcgh-shop-order-notices li {
	position: relative;
	display: grid;
	grid-template-columns: 138px minmax(0, 1fr);
	gap: 10px 18px;
	color: var(--pcgh-text-2);
	font-size: 13px;
}

.pcgh-shop-order-notices li:before {
	content: "";
	position: absolute;
	left: -22px;
	top: 7px;
	width: 10px;
	height: 10px;
	border: 2px solid var(--shop-order-border);
	border-radius: 50%;
	background: var(--shop-order-card);
}

.pcgh-shop-order-notices li:not(:last-child):after {
	content: "";
	position: absolute;
	left: -17px;
	top: 22px;
	bottom: -16px;
	width: 1px;
	background: var(--shop-order-border);
}

.pcgh-shop-order-notices li.is-current:before {
	border-color: var(--shop-order-blue);
	background: var(--shop-order-blue);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--shop-order-blue) 12%, transparent);
}

.pcgh-shop-order-notices li > div:first-child {
	display: grid;
	align-content: start;
	gap: 6px;
}

.pcgh-shop-order-notices time {
	color: var(--shop-order-muted);
	font-size: 12px;
}

.pcgh-shop-order-notices span {
	width: max-content;
	max-width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 23px;
	padding: 0 9px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--shop-order-blue) 9%, transparent);
	color: var(--shop-order-blue);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.pcgh-shop-order-notices strong {
	display: block;
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.45;
	font-weight: 900;
}

.pcgh-shop-order-notices p {
	margin: 5px 0 0;
	color: var(--shop-order-muted);
	font-size: 12px;
	line-height: 1.6;
}

.pcgh-shop-order-notices .is-refund span,
.pcgh-shop-order-notices .is-service.is-current span {
	background: color-mix(in srgb, #10b981 12%, transparent);
	color: #10b981;
}

.pcgh-shop-order-empty-line {
	margin: 0;
	padding: 18px 20px;
	color: var(--shop-order-muted);
	font-size: 13px;
	line-height: 1.7;
}

.pcgh-shop-order-detail #pcgh-shop-order-service .pcgh-shop-services-strip {
	margin-top: 0;
}

.pcgh-shop-checkout-success > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

@media (max-width: 1180px) {
	.pcgh-shop-order-status-card {
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.pcgh-shop-order-actions {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.pcgh-shop-order-info-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.pcgh-shop-order-status-card {
		padding: 24px 18px;
	}
	.pcgh-shop-order-status-card__main {
		grid-template-columns: 50px minmax(0, 1fr);
	}
	.pcgh-shop-order-status-card__icon {
		width: 50px;
		height: 50px;
	}
	.pcgh-shop-order-status-card h1 {
		font-size: 23px;
	}
	.pcgh-shop-order-steps {
		overflow-x: auto;
		padding-bottom: 4px;
	}
	.pcgh-shop-order-steps li {
		min-width: 92px;
	}
	.pcgh-shop-order-actions,
	.pcgh-shop-order-info-grid,
	.pcgh-shop-order-bottom {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-payment-panel__head,
	.pcgh-shop-payment-proof-form__actions {
		align-items: stretch;
		flex-direction: column;
	}
	.pcgh-shop-payment-panel__head > strong {
		white-space: normal;
	}
	.pcgh-shop-auto-delivery__item {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-payment-instructions {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-payment-instructions figure {
		text-align: left;
	}
	.pcgh-shop-payment-tools {
		align-items: stretch;
	}
	.pcgh-shop-payment-tools button {
		flex: 1 1 120px;
	}
	.pcgh-shop-payment-proof-view div {
		grid-template-columns: 1fr;
		gap: 4px;
	}
	.pcgh-shop-payment-proof-form__actions button {
		width: 100%;
	}
	.pcgh-shop-order-card {
		padding: 17px;
	}
	.pcgh-shop-order-note {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.pcgh-shop-order-products {
		padding: 0;
	}
	.pcgh-shop-order-products__head,
	.pcgh-shop-order-product {
		grid-template-columns: minmax(250px, 1fr) 120px 96px 64px 100px 92px;
		min-width: 740px;
	}
	.pcgh-shop-order-product__info {
		grid-template-columns: 92px minmax(0, 1fr);
	}
	.pcgh-shop-order-product__img {
		width: 92px;
	}
	.pcgh-shop-order-tracking li {
		grid-template-columns: 1fr;
		gap: 4px;
	}
	.pcgh-shop-order-tracking em {
		grid-column: auto;
	}
	.pcgh-shop-order-notices li {
		grid-template-columns: 1fr;
		gap: 6px;
	}
	.pcgh-shop-order-notices li > div:first-child {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
}

.pcgh-shop-orders,
.pcgh-uc-shop-orders {
	--shop-order-blue: #1f6fff;
	--shop-order-orange: #ff6a21;
	--shop-order-card: #fff;
	--shop-order-card-2: #f7faff;
	--shop-order-border: #e3ebf8;
	--shop-order-muted: #6f7c91;
	--shop-order-shadow: 0 10px 28px rgba(37,91,167,.06);
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-orders,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-uc-shop-orders {
	--shop-order-card: color-mix(in srgb, var(--pcgh-surface) 94%, #0f172a 6%);
	--shop-order-card-2: color-mix(in srgb, var(--pcgh-surface-2) 88%, #1f6fff 12%);
	--shop-order-border: var(--pcgh-border);
	--shop-order-muted: var(--pcgh-text-3);
	--shop-order-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.pcgh-shop-orders .pcgh-container {
	max-width: 1200px;
}

.pcgh-shop-orders-panel {
	display: grid;
	gap: 16px;
}

.pcgh-shop-orders-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 12px;
	border: 1px solid var(--shop-order-border);
	border-radius: 8px;
	background: var(--shop-order-card);
	box-shadow: var(--shop-order-shadow);
}

.pcgh-shop-orders-tabs a {
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 14px;
	border: 1px solid transparent;
	border-radius: 6px;
	background: var(--shop-order-card-2);
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.pcgh-shop-orders-tabs a small {
	min-width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 6px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--shop-order-blue) 10%, transparent);
	color: var(--shop-order-blue);
	font-size: 11px;
	line-height: 1;
}

.pcgh-shop-orders-tabs a.is-active {
	border-color: var(--shop-order-blue);
	background: var(--shop-order-blue);
	color: #fff;
}

.pcgh-shop-orders-tabs a.is-active small {
	background: rgba(255,255,255,.2);
	color: #fff;
}

.pcgh-shop-orders-list {
	display: grid;
	gap: 14px;
}

.pcgh-shop-order-list-card {
	border: 1px solid var(--shop-order-border);
	border-radius: 8px;
	background: var(--shop-order-card);
	box-shadow: var(--shop-order-shadow);
	overflow: hidden;
}

.pcgh-shop-order-list-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--shop-order-border);
	background: color-mix(in srgb, var(--shop-order-card-2) 70%, transparent);
}

.pcgh-shop-order-list-card__head div {
	min-width: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 16px;
}

.pcgh-shop-order-list-card__head strong {
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.4;
}

.pcgh-shop-order-list-card__head time {
	color: var(--shop-order-muted);
	font-size: 12px;
}

.pcgh-shop-order-list-card__head > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 26px;
	padding: 0 10px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--shop-order-blue) 10%, transparent);
	color: var(--shop-order-blue);
	font-size: 12px;
	font-weight: 900;
	white-space: nowrap;
}

.pcgh-shop-order-list-card.is-cancelled .pcgh-shop-order-list-card__head > span {
	background: color-mix(in srgb, var(--shop-order-muted) 14%, transparent);
	color: var(--shop-order-muted);
}

.pcgh-shop-order-list-card.is-pending.is-payment-unpaid .pcgh-shop-order-list-card__head > span {
	background: color-mix(in srgb, var(--shop-accent) 10%, transparent);
	color: var(--shop-accent);
}

.pcgh-shop-order-list-card.is-pending.is-payment-awaiting .pcgh-shop-order-list-card__head > span {
	background: color-mix(in srgb, var(--shop-accent-2) 12%, transparent);
	color: var(--shop-accent-2);
}

.pcgh-shop-order-list-card.is-shipping .pcgh-shop-order-list-card__head > span {
	background: color-mix(in srgb, var(--shop-order-blue) 12%, transparent);
	color: var(--shop-order-blue);
}

.pcgh-shop-order-list-card.is-completed .pcgh-shop-order-list-card__head > span {
	background: color-mix(in srgb, #10b981 12%, transparent);
	color: #10b981;
}

.pcgh-shop-order-list-card.is-payment-refunded .pcgh-shop-order-list-card__head > span {
	background: color-mix(in srgb, #10b981 12%, transparent);
	color: #10b981;
}

.pcgh-shop-order-list-card__body {
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr) 150px 190px;
	gap: 16px;
	align-items: center;
	padding: 18px;
}

.pcgh-shop-order-list-card__image {
	display: block;
	width: 104px;
	aspect-ratio: 1.35 / 1;
	border-radius: 6px;
	background: var(--shop-order-card-2);
	overflow: hidden;
}

.pcgh-shop-order-list-card__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.pcgh-shop-order-list-card__product {
	min-width: 0;
}

.pcgh-shop-order-list-card__product > a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--pcgh-text);
	font-size: 15px;
	line-height: 1.45;
	font-weight: 900;
	text-decoration: none;
}

.pcgh-shop-order-list-card__product p,
.pcgh-shop-order-list-card__product em {
	display: block;
	margin: 7px 0 0;
	color: var(--shop-order-muted);
	font-size: 12px;
	font-style: normal;
	line-height: 1.5;
}

.pcgh-shop-order-list-card__service {
	width: max-content;
	max-width: 100%;
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	margin-top: 8px;
	padding: 0 9px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--shop-order-blue) 9%, transparent);
	color: var(--shop-order-blue);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.25;
}

.pcgh-shop-order-list-card__amount {
	display: grid;
	gap: 5px;
	justify-items: end;
}

.pcgh-shop-order-list-card__amount small {
	color: var(--shop-order-muted);
	font-size: 12px;
}

.pcgh-shop-order-list-card__amount strong {
	color: var(--shop-order-orange);
	font-size: 18px;
	line-height: 1.2;
	font-weight: 900;
}

.pcgh-shop-order-list-card__amount em {
	color: #10b981;
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
	line-height: 1.35;
}

.pcgh-shop-order-list-card__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.pcgh-shop-order-list-card__actions a,
.pcgh-shop-order-list-card__actions button {
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	border: 1px solid var(--shop-order-border);
	border-radius: 6px;
	background: var(--shop-order-card);
	color: var(--pcgh-text);
	font-size: 12px;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}

.pcgh-shop-order-list-card__actions .is-primary {
	border-color: var(--shop-order-blue);
	background: var(--shop-order-blue);
	color: #fff;
}

.pcgh-shop-order-list-card__actions a:hover,
.pcgh-shop-order-list-card__actions button:hover {
	border-color: color-mix(in srgb, var(--shop-order-blue) 45%, var(--shop-order-border));
	color: var(--shop-order-blue);
}

.pcgh-shop-order-list-card__actions .is-primary:hover {
	color: #fff;
}

.pcgh-shop-orders-pagination {
	display: flex;
	justify-content: flex-end;
}

.pcgh-shop-orders-pagination ul {
	display: flex;
	gap: 8px;
	margin: 2px 0 0;
	padding: 0;
	list-style: none;
}

.pcgh-shop-orders-pagination a,
.pcgh-shop-orders-pagination span {
	min-width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--shop-order-border);
	border-radius: 6px;
	background: var(--shop-order-card);
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.pcgh-shop-orders-pagination .current {
	border-color: var(--shop-order-blue);
	background: var(--shop-order-blue);
	color: #fff;
}

.pcgh-shop-orders #pcgh-shop-orders-service .pcgh-shop-services-strip,
.pcgh-uc-shop-orders #pcgh-shop-orders-service .pcgh-shop-services-strip {
	margin-top: 2px;
}

.pcgh-uc-shop-orders .pcgh-shop-orders-panel {
	gap: 14px;
}

.pcgh-uc-shop-orders .pcgh-shop-orders-tabs,
.pcgh-uc-shop-orders .pcgh-shop-order-list-card {
	box-shadow: none;
}

.pcgh-uc-shop-orders .pcgh-shop-orders-tabs {
	padding: 0 0 14px;
	border-width: 0 0 1px;
	border-radius: 0;
	background: transparent;
}

.pcgh-uc-shop-orders .pcgh-shop-order-list-card {
	border-radius: 0;
	border-width: 0 0 1px;
	background: transparent;
}

.pcgh-uc-shop-orders .pcgh-shop-order-list-card:last-child {
	border-bottom: 0;
}

.pcgh-uc-shop-orders .pcgh-shop-order-list-card__head {
	padding: 14px 0;
	background: transparent;
}

.pcgh-uc-shop-orders .pcgh-shop-order-list-card__body {
	padding: 16px 0;
}

.pcgh-uc-shop-orders .pcgh-shop-empty-state {
	box-shadow: none;
}

@media (max-width: 1024px) {
	.pcgh-shop-order-list-card__body {
		grid-template-columns: 96px minmax(0, 1fr) 130px;
	}
	.pcgh-shop-order-list-card__actions {
		grid-column: 2 / -1;
		grid-template-columns: repeat(4, max-content);
		justify-content: end;
	}
}

@media (max-width: 768px) {
	.pcgh-shop-orders-tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding: 10px;
	}
	.pcgh-shop-orders-tabs a {
		flex: 0 0 auto;
	}
	.pcgh-shop-order-list-card__head {
		align-items: flex-start;
	}
	.pcgh-shop-order-list-card__body {
		grid-template-columns: 86px minmax(0, 1fr);
		align-items: start;
	}
	.pcgh-shop-order-list-card__image {
		width: 86px;
	}
	.pcgh-shop-order-list-card__amount {
		grid-column: 1 / -1;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-top: 12px;
		border-top: 1px solid var(--shop-order-border);
	}
	.pcgh-shop-order-list-card__actions {
		grid-column: 1 / -1;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		justify-content: stretch;
	}
	.pcgh-shop-orders-pagination {
		justify-content: center;
	}
	.pcgh-uc-shop-orders .pcgh-shop-orders-tabs {
		padding: 0 0 12px;
	}
}

.pcgh-shop-services-center .pcgh-container {
	max-width: 1200px;
}

.pcgh-shop-services-panel {
	display: grid;
	gap: 16px;
}

.pcgh-shop-services-tabs {
	margin-bottom: 0;
}

.pcgh-shop-services-list {
	display: grid;
	gap: 14px;
}

.pcgh-shop-service-list-card {
	border: 1px solid var(--shop-order-border);
	border-radius: 8px;
	background: var(--shop-order-card);
	box-shadow: var(--shop-order-shadow);
	overflow: hidden;
}

.pcgh-shop-service-list-card header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--shop-order-border);
	background: color-mix(in srgb, var(--shop-order-card-2) 70%, transparent);
}

.pcgh-shop-service-list-card header strong {
	display: block;
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.4;
	font-weight: 900;
}

.pcgh-shop-service-list-card header time {
	display: block;
	margin-top: 4px;
	color: var(--shop-order-muted);
	font-size: 12px;
	line-height: 1.4;
}

.pcgh-shop-service-list-card__body {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr) minmax(260px, 360px);
	gap: 16px;
	align-items: center;
	padding: 16px 18px;
}

.pcgh-shop-service-list-card__image {
	display: block;
	width: 112px;
	aspect-ratio: 1.25 / 1;
	border-radius: 7px;
	background: var(--shop-order-card-2);
	overflow: hidden;
}

.pcgh-shop-service-list-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pcgh-shop-service-list-card__main {
	min-width: 0;
}

.pcgh-shop-service-list-card__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--pcgh-text);
	font-size: 15px;
	line-height: 1.45;
	font-weight: 900;
	text-decoration: none;
}

.pcgh-shop-service-list-card__title:hover {
	color: var(--shop-order-blue);
}

.pcgh-shop-service-list-card__main p,
.pcgh-shop-service-list-card__main em,
.pcgh-shop-service-list-card__main span {
	display: block;
	margin: 6px 0 0;
	color: var(--shop-order-muted);
	font-size: 12px;
	font-style: normal;
	line-height: 1.45;
}

.pcgh-shop-service-list-card__main span {
	color: var(--shop-order-orange);
	font-weight: 900;
}

.pcgh-shop-service-list-card__badges,
.pcgh-shop-service-record__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 10px;
}

.pcgh-shop-service-list-card__badges small,
.pcgh-shop-service-record__badges small {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 0 9px;
	border: 1px solid var(--shop-order-border);
	border-radius: 999px;
	background: var(--shop-order-card-2);
	color: var(--pcgh-text-2);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.pcgh-shop-service-list-card__badges small.is-warning,
.pcgh-shop-service-record__badges small.is-warning {
	border-color: color-mix(in srgb, var(--shop-order-orange) 34%, var(--shop-order-border));
	background: color-mix(in srgb, var(--shop-order-orange) 10%, transparent);
	color: var(--shop-order-orange);
}

.pcgh-shop-service-list-card__badges small.is-info,
.pcgh-shop-service-record__badges small.is-info {
	border-color: color-mix(in srgb, var(--shop-order-blue) 32%, var(--shop-order-border));
	background: color-mix(in srgb, var(--shop-order-blue) 9%, transparent);
	color: var(--shop-order-blue);
}

.pcgh-shop-service-list-card__badges small.is-success,
.pcgh-shop-service-record__badges small.is-success {
	border-color: color-mix(in srgb, #10b981 32%, var(--shop-order-border));
	background: color-mix(in srgb, #10b981 10%, transparent);
	color: #10b981;
}

.pcgh-shop-service-list-card__badges small.is-danger,
.pcgh-shop-service-record__badges small.is-danger {
	border-color: color-mix(in srgb, #ef4444 32%, var(--shop-order-border));
	background: color-mix(in srgb, #ef4444 9%, transparent);
	color: #ef4444;
}

.pcgh-shop-service-list-card__badges small.is-muted,
.pcgh-shop-service-record__badges small.is-muted {
	color: var(--shop-order-muted);
}

.pcgh-shop-service-progress {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pcgh-shop-service-progress li {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 8px;
	min-width: 0;
	color: var(--shop-order-muted);
	text-align: center;
}

.pcgh-shop-service-progress li:not(:last-child):after {
	content: "";
	position: absolute;
	top: 9px;
	left: calc(50% + 12px);
	right: calc(-50% + 12px);
	height: 2px;
	background: var(--shop-order-border);
}

.pcgh-shop-service-progress li.is-done:not(:last-child):after {
	background: color-mix(in srgb, var(--shop-order-blue) 70%, var(--shop-order-border));
}

.pcgh-shop-service-progress > li > span {
	position: relative;
	z-index: 1;
	width: 20px;
	height: 20px;
	border: 2px solid var(--shop-order-border);
	border-radius: 999px;
	background: var(--shop-order-card);
}

.pcgh-shop-service-progress li.is-done > span {
	border-color: var(--shop-order-blue);
	background: var(--shop-order-blue);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--shop-order-blue) 10%, transparent);
}

.pcgh-shop-service-progress li.is-current:not(.is-done) > span {
	border-color: var(--shop-order-orange);
	background: var(--shop-order-card);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--shop-order-orange) 12%, transparent);
}

.pcgh-shop-service-progress li.is-current.is-done > span {
	box-shadow: 0 0 0 5px color-mix(in srgb, var(--shop-order-blue) 16%, transparent);
}

.pcgh-shop-service-progress strong {
	display: block;
	color: var(--pcgh-text);
	font-size: 12px;
	line-height: 1.35;
	font-weight: 900;
}

.pcgh-shop-service-progress li.is-current:not(.is-done) strong {
	color: var(--shop-order-orange);
}

.pcgh-shop-service-progress time {
	display: block;
	margin-top: 3px;
	color: var(--shop-order-muted);
	font-size: 11px;
	line-height: 1.3;
}

.pcgh-shop-service-list-card footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	flex-wrap: wrap;
	padding: 12px 18px 16px;
	border-top: 1px solid var(--shop-order-border);
}

.pcgh-shop-service-list-card footer a,
.pcgh-shop-service-list-card footer button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 14px;
	border: 1px solid var(--shop-order-border);
	border-radius: 6px;
	background: var(--shop-order-card);
	color: var(--pcgh-text);
	font-size: 12px;
	font-weight: 900;
	text-decoration: none;
	cursor: pointer;
}

.pcgh-shop-service-list-card footer a:hover,
.pcgh-shop-service-list-card footer button:hover {
	border-color: color-mix(in srgb, var(--shop-order-blue) 45%, var(--shop-order-border));
	color: var(--shop-order-blue);
}

.pcgh-shop-service-list-card footer .is-primary {
	border-color: var(--shop-order-blue);
	background: var(--shop-order-blue);
	color: #fff;
}

.pcgh-shop-service-list-card footer .is-primary:hover {
	color: #fff;
}

.pcgh-shop-service-list-card footer .is-danger {
	border-color: color-mix(in srgb, #ef4444 38%, var(--shop-order-border));
	color: #ef4444;
}

@media (max-width: 920px) {
	.pcgh-shop-service-list-card__body {
		grid-template-columns: 96px minmax(0, 1fr);
	}
	.pcgh-shop-service-list-card__progress {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.pcgh-shop-service-list-card header,
	.pcgh-shop-service-list-card footer {
		align-items: stretch;
		flex-direction: column;
	}
	.pcgh-shop-service-list-card__body {
		grid-template-columns: 82px minmax(0, 1fr);
		padding: 14px;
	}
	.pcgh-shop-service-list-card__image {
		width: 82px;
	}
	.pcgh-shop-service-progress {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.pcgh-shop-service-progress li {
		grid-template-columns: 20px minmax(0, 1fr);
		justify-items: start;
		text-align: left;
	}
	.pcgh-shop-service-progress li:not(:last-child):after {
		top: 22px;
		left: 9px;
		right: auto;
		width: 2px;
		height: calc(100% - 12px);
	}
}

.pcgh-shop-service-page {
	--shop-order-blue: #1f6fff;
	--shop-order-orange: #ff6a21;
	--shop-order-card: #fff;
	--shop-order-card-2: #f7faff;
	--shop-order-border: #e3ebf8;
	--shop-order-muted: #6f7c91;
	--shop-order-shadow: 0 10px 28px rgba(37,91,167,.06);
	background: var(--pcgh-bg);
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-service-page {
	--shop-order-card: color-mix(in srgb, var(--pcgh-surface) 94%, #0f172a 6%);
	--shop-order-card-2: color-mix(in srgb, var(--pcgh-surface-2) 88%, #1f6fff 12%);
	--shop-order-border: var(--pcgh-border);
	--shop-order-muted: var(--pcgh-text-3);
	--shop-order-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.pcgh-shop-service-page .pcgh-container {
	max-width: 1200px;
}

.pcgh-shop-service-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 16px;
	align-items: start;
}

.pcgh-shop-service-form {
	display: grid;
	gap: 22px;
	padding: 22px;
}

.pcgh-shop-service-block h2,
.pcgh-shop-service-aside h2,
.pcgh-shop-service-records h2,
.pcgh-shop-order-service-records h2 {
	margin: 0 0 16px;
	color: var(--pcgh-text);
	font-size: 18px;
	line-height: 1.3;
	font-weight: 900;
}

.pcgh-shop-service-items {
	display: grid;
	gap: 10px;
}

.pcgh-shop-service-item {
	position: relative;
	display: grid;
	grid-template-columns: 22px 92px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding: 12px;
	border: 1px solid var(--shop-order-border);
	border-radius: 8px;
	background: var(--shop-order-card-2);
	cursor: pointer;
}

.pcgh-shop-service-item input {
	width: 16px;
	height: 16px;
	accent-color: var(--shop-order-blue);
}

.pcgh-shop-service-item:has(input:checked) {
	border-color: var(--shop-order-blue);
	background: color-mix(in srgb, var(--shop-order-blue) 8%, var(--shop-order-card));
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--shop-order-blue) 20%, transparent);
}

.pcgh-shop-service-item.is-disabled {
	opacity: .62;
	cursor: not-allowed;
}

.pcgh-shop-service-item__image {
	width: 92px;
	aspect-ratio: 1.35 / 1;
	border-radius: 6px;
	background: var(--shop-order-card);
	overflow: hidden;
}

.pcgh-shop-service-item__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.pcgh-shop-service-item__body {
	min-width: 0;
}

.pcgh-shop-service-item__body strong {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.45;
	font-weight: 900;
}

.pcgh-shop-service-item__body em,
.pcgh-shop-service-item__body small {
	display: block;
	margin-top: 5px;
	color: var(--shop-order-muted);
	font-size: 12px;
	font-style: normal;
	line-height: 1.35;
}

.pcgh-shop-service-fields {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.pcgh-shop-service-fields label {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.pcgh-shop-service-fields__wide {
	grid-column: 1 / -1;
}

.pcgh-shop-service-fields span {
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
}

.pcgh-shop-service-fields input,
.pcgh-shop-service-fields select,
.pcgh-shop-service-fields textarea {
	width: 100%;
	border: 1px solid var(--shop-order-border);
	border-radius: 6px;
	background: var(--shop-order-card-2);
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.5;
	outline: 0;
}

.pcgh-shop-service-fields input,
.pcgh-shop-service-fields select {
	height: 42px;
	padding: 0 12px;
}

.pcgh-shop-service-fields textarea {
	padding: 11px 12px;
	resize: vertical;
}

.pcgh-shop-service-fields input:focus,
.pcgh-shop-service-fields select:focus,
.pcgh-shop-service-fields textarea:focus {
	border-color: var(--shop-order-blue);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--shop-order-blue) 10%, transparent);
}

.pcgh-shop-service-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-top: 18px;
	border-top: 1px solid var(--shop-order-border);
}

.pcgh-shop-service-actions button {
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 22px;
	border: 0;
	border-radius: 6px;
	background: var(--shop-order-blue);
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
	box-shadow: 0 12px 22px color-mix(in srgb, var(--shop-order-blue) 24%, transparent);
}

.pcgh-shop-service-actions button svg {
	width: 17px;
	height: 17px;
}

.pcgh-shop-service-actions p {
	margin: 0;
	color: var(--shop-order-muted);
	font-size: 12px;
	line-height: 1.6;
}

.pcgh-shop-service-aside {
	position: sticky;
	top: 92px;
	padding: 20px;
}

.pcgh-shop-service-records,
.pcgh-shop-order-service-records {
	margin-bottom: 16px;
	padding: 20px;
}

.pcgh-shop-service-record-list {
	display: grid;
	gap: 10px;
}

.pcgh-shop-service-record {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 12px;
	align-items: center;
	padding: 12px;
	border: 1px solid var(--shop-order-border);
	border-radius: 7px;
	background: var(--shop-order-card-2);
}

.pcgh-shop-service-record strong {
	display: block;
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.45;
	font-weight: 900;
}

.pcgh-shop-service-record strong a {
	color: inherit;
	text-decoration: none;
}

.pcgh-shop-service-record strong a:hover {
	color: var(--shop-order-blue);
}

.pcgh-shop-service-record span,
.pcgh-shop-service-record p {
	display: block;
	margin: 5px 0 0;
	color: var(--shop-order-muted);
	font-size: 12px;
	line-height: 1.5;
}

.pcgh-shop-service-record em {
	color: var(--shop-order-muted);
	font-size: 12px;
	font-style: normal;
}

.pcgh-shop-service-record__refund {
	color: #10b981 !important;
	font-weight: 800;
}

.pcgh-shop-service-record__note {
	color: var(--pcgh-text-2) !important;
}

.pcgh-shop-service-record__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 8px;
	min-width: 0;
}

.pcgh-shop-service-record__actions a,
.pcgh-shop-service-record__actions button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 11px;
	border: 1px solid var(--shop-order-border);
	border-radius: 6px;
	background: var(--shop-order-card);
	color: var(--pcgh-text);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
}

.pcgh-shop-service-record__actions .is-primary {
	border-color: var(--shop-order-blue);
	background: var(--shop-order-blue);
	color: #fff;
}

.pcgh-shop-service-record__actions .is-danger {
	border-color: color-mix(in srgb, #ef4444 38%, var(--shop-order-border));
	color: #ef4444;
}

.pcgh-shop-service-record__actions a:hover,
.pcgh-shop-service-record__actions button:hover {
	border-color: color-mix(in srgb, var(--shop-order-blue) 45%, var(--shop-order-border));
	color: var(--shop-order-blue);
}

.pcgh-shop-service-record__actions .is-primary:hover {
	color: #fff;
}

.pcgh-shop-service-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: max-content;
	min-height: 24px;
	padding: 0 9px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--shop-order-blue, #1f6fff) 10%, transparent);
	color: var(--shop-order-blue, #1f6fff);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.pcgh-shop-service-badge.is-approved,
.pcgh-shop-service-badge.is-completed {
	background: color-mix(in srgb, #10b981 12%, transparent);
	color: #10b981;
}

.pcgh-shop-service-badge.is-rejected,
.pcgh-shop-service-badge.is-cancelled {
	background: color-mix(in srgb, #ef4444 10%, transparent);
	color: #ef4444;
}

.pcgh-shop-service-success {
	grid-column: 1 / -1;
}

@media (max-width: 1024px) {
	.pcgh-shop-service-layout {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-service-aside {
		position: static;
	}
}

@media (max-width: 768px) {
	.pcgh-shop-service-form,
	.pcgh-shop-service-aside,
	.pcgh-shop-service-records,
	.pcgh-shop-order-service-records {
		padding: 17px;
	}
	.pcgh-shop-service-item {
		grid-template-columns: 20px 76px minmax(0, 1fr);
	}
	.pcgh-shop-service-item__state {
		grid-column: 2 / -1;
	}
	.pcgh-shop-service-item__image {
		width: 76px;
	}
	.pcgh-shop-service-fields {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-service-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.pcgh-shop-service-actions button {
		width: 100%;
	}
	.pcgh-shop-service-record {
		grid-template-columns: 1fr;
		align-items: start;
	}
	.pcgh-shop-service-record__actions {
		justify-content: flex-start;
	}
}

.pcgh-shop-service-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 16px;
	align-items: start;
}

.pcgh-shop-service-detail-main {
	display: grid;
	gap: 16px;
	min-width: 0;
}

.pcgh-shop-service-detail-card {
	padding: 20px;
}

.pcgh-shop-service-detail-card > header,
.pcgh-shop-service-status-detail > header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.pcgh-shop-service-detail-card h2,
.pcgh-shop-service-status-detail h2,
.pcgh-shop-service-detail-aside h2 {
	margin: 0;
	color: var(--pcgh-text);
	font-size: 18px;
	line-height: 1.3;
	font-weight: 900;
	letter-spacing: 0;
}

.pcgh-shop-service-status-detail header p {
	margin: 7px 0 0;
	color: var(--shop-order-muted);
	font-size: 12px;
	line-height: 1.5;
}

.pcgh-shop-service-status-detail .pcgh-shop-service-progress {
	padding: 12px;
	border: 1px solid var(--shop-order-border);
	border-radius: 8px;
	background: var(--shop-order-card-2);
}

.pcgh-shop-service-flowline {
	position: relative;
	display: grid;
	gap: 12px;
	margin: 0 0 16px;
	padding: 0 0 0 20px;
	list-style: none;
}

.pcgh-shop-service-flowline li {
	position: relative;
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 10px;
	color: var(--pcgh-text-2);
}

.pcgh-shop-service-flowline li > span {
	position: relative;
	z-index: 1;
	width: 10px;
	height: 10px;
	margin-top: 5px;
	border: 2px solid var(--shop-order-border);
	border-radius: 50%;
	background: var(--shop-order-card);
}

.pcgh-shop-service-flowline li:not(:last-child):after {
	content: "";
	position: absolute;
	left: 4px;
	top: 18px;
	bottom: -16px;
	width: 1px;
	background: var(--shop-order-border);
}

.pcgh-shop-service-flowline li.is-done > span {
	border-color: var(--shop-order-blue);
	background: var(--shop-order-blue);
}

.pcgh-shop-service-flowline li.is-current > span {
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--shop-order-blue) 12%, transparent);
}

.pcgh-shop-service-flowline li.is-danger > span {
	border-color: #ef4444;
	background: #ef4444;
	box-shadow: 0 0 0 4px color-mix(in srgb, #ef4444 12%, transparent);
}

.pcgh-shop-service-flowline li.is-success > span {
	border-color: #10b981;
	background: #10b981;
}

.pcgh-shop-service-flowline li.is-muted > span {
	border-color: var(--shop-order-muted);
	background: var(--shop-order-muted);
}

.pcgh-shop-service-flowline strong {
	display: block;
	color: var(--pcgh-text);
	font-size: 13px;
	line-height: 1.45;
	font-weight: 900;
}

.pcgh-shop-service-flowline p {
	margin: 4px 0 0;
	color: var(--shop-order-muted);
	font-size: 12px;
	line-height: 1.55;
}

.pcgh-shop-service-flowline time {
	display: block;
	margin-top: 4px;
	color: var(--shop-order-muted);
	font-size: 12px;
	line-height: 1.4;
}

.pcgh-shop-service-timeline {
	position: relative;
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0 0 0 22px;
	list-style: none;
}

.pcgh-shop-service-timeline li {
	position: relative;
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	gap: 10px 16px;
	color: var(--pcgh-text-2);
	font-size: 13px;
}

.pcgh-shop-service-timeline li:before {
	content: "";
	position: absolute;
	left: -22px;
	top: 7px;
	width: 10px;
	height: 10px;
	border: 2px solid var(--shop-order-border);
	border-radius: 50%;
	background: var(--shop-order-card);
}

.pcgh-shop-service-timeline li:not(:last-child):after {
	content: "";
	position: absolute;
	left: -17px;
	top: 22px;
	bottom: -16px;
	width: 1px;
	background: var(--shop-order-border);
}

.pcgh-shop-service-timeline li.is-current:before {
	border-color: var(--shop-order-blue);
	background: var(--shop-order-blue);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--shop-order-blue) 12%, transparent);
}

.pcgh-shop-service-timeline li > div:first-child {
	display: grid;
	align-content: start;
	gap: 6px;
}

.pcgh-shop-service-timeline time {
	color: var(--shop-order-muted);
	font-size: 12px;
}

.pcgh-shop-service-timeline span {
	width: max-content;
	max-width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 23px;
	padding: 0 9px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--shop-order-blue) 9%, transparent);
	color: var(--shop-order-blue);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.pcgh-shop-service-timeline strong {
	display: block;
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.45;
	font-weight: 900;
}

.pcgh-shop-service-timeline p {
	margin: 5px 0 0;
	color: var(--shop-order-muted);
	font-size: 12px;
	line-height: 1.6;
}

.pcgh-shop-service-timeline .is-refund span,
.pcgh-shop-service-timeline .is-service.is-current span {
	background: color-mix(in srgb, #10b981 12%, transparent);
	color: #10b981;
}

.pcgh-shop-service-detail-product {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 12px;
	border: 1px solid var(--shop-order-border);
	border-radius: 8px;
	background: var(--shop-order-card-2);
}

.pcgh-shop-service-detail-product > div {
	min-width: 0;
}

.pcgh-shop-service-detail-product a:not(.pcgh-shop-service-list-card__image) {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--pcgh-text);
	font-size: 15px;
	line-height: 1.45;
	font-weight: 900;
	text-decoration: none;
}

.pcgh-shop-service-detail-product a:not(.pcgh-shop-service-list-card__image):hover {
	color: var(--shop-order-blue);
}

.pcgh-shop-service-detail-product p,
.pcgh-shop-service-detail-product em {
	display: block;
	margin: 6px 0 0;
	color: var(--shop-order-muted);
	font-size: 12px;
	font-style: normal;
	line-height: 1.45;
}

.pcgh-shop-service-evidence {
	display: grid;
	gap: 12px;
	margin-top: 14px;
}

.pcgh-shop-service-evidence p,
.pcgh-shop-service-evidence pre {
	margin: 0;
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.75;
}

.pcgh-shop-service-evidence pre {
	max-height: 220px;
	padding: 12px;
	overflow: auto;
	border: 1px solid var(--shop-order-border);
	border-radius: 7px;
	background: var(--shop-order-card-2);
	white-space: pre-wrap;
	word-break: break-word;
}

.pcgh-shop-service-evidence__images {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
	gap: 10px;
	max-width: 520px;
}

.pcgh-shop-service-evidence__images a {
	display: block;
	aspect-ratio: 1 / 1;
	border: 1px solid var(--shop-order-border);
	border-radius: 7px;
	background: var(--shop-order-card-2);
	overflow: hidden;
}

.pcgh-shop-service-evidence__images img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pcgh-shop-service-admin-reply {
	margin-top: 16px;
	padding: 14px;
	border: 1px solid color-mix(in srgb, var(--shop-order-orange) 28%, var(--shop-order-border));
	border-radius: 8px;
	background: color-mix(in srgb, var(--shop-order-orange) 8%, var(--shop-order-card));
}

.pcgh-shop-service-admin-reply strong {
	display: block;
	margin-bottom: 6px;
	color: var(--shop-order-orange);
	font-size: 13px;
	line-height: 1.4;
	font-weight: 900;
}

.pcgh-shop-service-admin-reply p {
	margin: 0;
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.7;
}

.pcgh-shop-service-supplement-list {
	display: grid;
	gap: 12px;
}

.pcgh-shop-service-supplement-list article {
	padding: 14px;
	border: 1px solid var(--shop-order-border);
	border-radius: 8px;
	background: var(--shop-order-card-2);
}

.pcgh-shop-service-supplement-list time {
	display: block;
	margin-bottom: 10px;
	color: var(--shop-order-muted);
	font-size: 12px;
	line-height: 1.4;
}

.pcgh-shop-service-refund-card > header span,
.pcgh-shop-service-return-card > header span,
.pcgh-shop-service-followup-card > header span {
	width: max-content;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 0 9px;
	border-radius: 999px;
	background: color-mix(in srgb, #10b981 12%, transparent);
	color: #10b981;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.pcgh-shop-service-refund-card.is-failed > header span,
.pcgh-shop-service-followup-card > header span.is-pending {
	background: color-mix(in srgb, #ef4444 10%, transparent);
	color: #ef4444;
}

.pcgh-shop-service-refund-card.is-refunded > header span,
.pcgh-shop-service-followup-card > header span.is-done {
	background: color-mix(in srgb, #10b981 12%, transparent);
	color: #10b981;
}

.pcgh-shop-service-return-form {
	display: grid;
	gap: 12px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--shop-order-border);
}

.pcgh-shop-service-return-form > div {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.pcgh-shop-service-return-form label,
.pcgh-shop-service-supplement-form {
	display: grid;
	gap: 12px;
}

.pcgh-shop-service-return-form label {
	gap: 8px;
}

.pcgh-shop-service-supplement-form {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--shop-order-border);
}

.pcgh-shop-service-return-form label,
.pcgh-shop-service-supplement-form label {
	display: grid;
	gap: 8px;
}

.pcgh-shop-service-return-form span,
.pcgh-shop-service-supplement-form span {
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
}

.pcgh-shop-service-return-form input,
.pcgh-shop-service-return-form select,
.pcgh-shop-service-return-form textarea,
.pcgh-shop-service-supplement-form textarea {
	width: 100%;
	border: 1px solid var(--shop-order-border);
	border-radius: 6px;
	background: var(--shop-order-card-2);
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.55;
	outline: 0;
}

.pcgh-shop-service-return-form input,
.pcgh-shop-service-return-form select {
	height: 40px;
	padding: 0 12px;
}

.pcgh-shop-service-return-form textarea,
.pcgh-shop-service-supplement-form textarea {
	padding: 11px 12px;
	resize: vertical;
}

.pcgh-shop-service-return-form input:focus,
.pcgh-shop-service-return-form select:focus,
.pcgh-shop-service-return-form textarea:focus,
.pcgh-shop-service-supplement-form textarea:focus {
	border-color: var(--shop-order-blue);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--shop-order-blue) 10%, transparent);
}

.pcgh-shop-service-return-tracking {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--shop-order-border);
}

.pcgh-shop-service-return-tracking__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.pcgh-shop-service-return-tracking__head > div,
.pcgh-shop-service-return-tracking__head strong,
.pcgh-shop-service-return-tracking__head span {
	display: block;
}

.pcgh-shop-service-return-tracking__head strong {
	color: var(--pcgh-text);
	font-size: 14px;
}

.pcgh-shop-service-return-tracking__head span,
.pcgh-shop-service-return-tracking > p {
	margin: 4px 0 0;
	color: var(--shop-order-muted);
	font-size: 12px;
}

.pcgh-shop-service-return-tracking__head button {
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0 11px;
	border: 1px solid var(--shop-order-border);
	border-radius: 6px;
	background: var(--shop-order-card);
	color: var(--pcgh-text-2);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.pcgh-shop-service-return-tracking__head button:hover {
	border-color: var(--shop-order-blue);
	color: var(--shop-order-blue);
}

.pcgh-shop-service-return-tracking__head button svg {
	width: 15px;
	height: 15px;
}

.pcgh-shop-service-return-tracking ol {
	display: grid;
	gap: 12px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.pcgh-shop-service-return-tracking li {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr);
	gap: 5px 14px;
	padding-left: 14px;
	border-left: 2px solid var(--shop-order-border);
}

.pcgh-shop-service-return-tracking li.is-current {
	border-left-color: var(--shop-order-blue);
}

.pcgh-shop-service-return-tracking time,
.pcgh-shop-service-return-tracking em {
	color: var(--shop-order-muted);
	font-size: 12px;
	font-style: normal;
}

.pcgh-shop-service-return-tracking li strong {
	color: var(--pcgh-text-2);
	font-size: 13px;
}

.pcgh-shop-service-return-tracking li em {
	grid-column: 2;
}

.pcgh-shop-service-return-form button,
.pcgh-shop-service-supplement-form button {
	justify-self: start;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 18px;
	border: 0;
	border-radius: 6px;
	background: var(--shop-order-blue);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
	box-shadow: 0 10px 18px color-mix(in srgb, var(--shop-order-blue) 22%, transparent);
}

.pcgh-shop-service-return-form button svg,
.pcgh-shop-service-supplement-form button svg {
	width: 16px;
	height: 16px;
}

.pcgh-shop-service-feedback-card > header span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 0 9px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--shop-order-blue) 10%, transparent);
	color: var(--shop-order-blue);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.pcgh-shop-service-feedback-summary {
	display: grid;
	gap: 12px;
	padding: 14px;
	border: 1px solid var(--shop-order-border);
	border-radius: 8px;
	background: var(--shop-order-card-2);
}

.pcgh-shop-service-feedback-score {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.pcgh-shop-service-feedback-score strong {
	color: var(--pcgh-text);
	font-size: 16px;
	font-weight: 950;
	line-height: 1.2;
}

.pcgh-shop-service-feedback-tags,
.pcgh-shop-service-feedback-checks {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pcgh-shop-service-feedback-tags span,
.pcgh-shop-service-feedback-checks span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 0 10px;
	border: 1px solid var(--shop-order-border);
	border-radius: 999px;
	background: var(--shop-order-card);
	color: var(--pcgh-text-2);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.pcgh-shop-service-feedback-summary p {
	margin: 0;
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.75;
}

.pcgh-shop-service-feedback-summary time {
	color: var(--shop-order-muted);
	font-size: 12px;
	line-height: 1.4;
}

.pcgh-shop-service-feedback-form {
	display: grid;
	gap: 12px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--shop-order-border);
}

.pcgh-shop-service-feedback-rating {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
}

.pcgh-shop-service-feedback-rating label,
.pcgh-shop-service-feedback-checks label {
	cursor: pointer;
}

.pcgh-shop-service-feedback-rating input,
.pcgh-shop-service-feedback-checks input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.pcgh-shop-service-feedback-rating span {
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	border: 1px solid var(--shop-order-border);
	border-radius: 7px;
	background: var(--shop-order-card-2);
	color: var(--pcgh-text-2);
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.pcgh-shop-service-feedback-rating svg,
.pcgh-shop-service-feedback-rating i {
	width: 15px;
	height: 15px;
}

.pcgh-shop-service-feedback-rating input:checked + span,
.pcgh-shop-service-feedback-checks input:checked + span {
	border-color: color-mix(in srgb, var(--shop-order-orange) 45%, var(--shop-order-border));
	background: color-mix(in srgb, var(--shop-order-orange) 10%, var(--shop-order-card));
	color: var(--shop-order-orange);
}

.pcgh-shop-service-feedback-field {
	display: grid;
	gap: 8px;
}

.pcgh-shop-service-feedback-field > span {
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
}

.pcgh-shop-service-feedback-form input[type="text"],
.pcgh-shop-service-feedback-form textarea {
	width: 100%;
	border: 1px solid var(--shop-order-border);
	border-radius: 6px;
	background: var(--shop-order-card-2);
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.55;
	outline: 0;
}

.pcgh-shop-service-feedback-form input[type="text"] {
	height: 40px;
	padding: 0 12px;
}

.pcgh-shop-service-feedback-form textarea {
	padding: 11px 12px;
	resize: vertical;
}

.pcgh-shop-service-feedback-form input[type="text"]:focus,
.pcgh-shop-service-feedback-form textarea:focus {
	border-color: var(--shop-order-blue);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--shop-order-blue) 10%, transparent);
}

.pcgh-shop-service-feedback-form button {
	justify-self: start;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 18px;
	border: 0;
	border-radius: 6px;
	background: var(--shop-order-blue);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
	box-shadow: 0 10px 18px color-mix(in srgb, var(--shop-order-blue) 22%, transparent);
}

.pcgh-shop-service-feedback-form button svg,
.pcgh-shop-service-feedback-form button i {
	width: 16px;
	height: 16px;
}

.pcgh-shop-service-detail-aside {
	position: sticky;
	top: 92px;
	padding: 20px;
}

.pcgh-shop-service-detail-actions {
	display: grid;
	gap: 10px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--shop-order-border);
}

.pcgh-shop-service-detail-actions a,
.pcgh-shop-service-detail-actions button {
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	border: 1px solid var(--shop-order-border);
	border-radius: 6px;
	background: var(--shop-order-card);
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
}

.pcgh-shop-service-detail-actions .is-primary {
	border-color: var(--shop-order-blue);
	background: var(--shop-order-blue);
	color: #fff;
	box-shadow: 0 10px 18px color-mix(in srgb, var(--shop-order-blue) 22%, transparent);
}

.pcgh-shop-service-detail-actions button {
	border-color: color-mix(in srgb, #ef4444 35%, var(--shop-order-border));
	color: #ef4444;
}

.pcgh-shop-service-detail-actions a:hover,
.pcgh-shop-service-detail-actions button:hover {
	border-color: var(--shop-order-blue);
	color: var(--shop-order-blue);
}

.pcgh-shop-service-detail-actions .is-primary:hover {
	color: #fff;
}

@media (max-width: 1024px) {
	.pcgh-shop-service-detail-layout {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-service-detail-aside {
		position: static;
	}
}

@media (max-width: 640px) {
	.pcgh-shop-order-tracking header,
	.pcgh-shop-service-return-tracking__head {
		align-items: flex-start;
	}
	.pcgh-shop-service-return-tracking li {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-service-return-tracking li em {
		grid-column: 1;
	}
	.pcgh-shop-service-detail-card,
	.pcgh-shop-service-detail-aside {
		padding: 16px;
	}
	.pcgh-shop-service-detail-card > header,
	.pcgh-shop-service-status-detail > header {
		align-items: flex-start;
		flex-direction: column;
	}
	.pcgh-shop-service-detail-product {
		grid-template-columns: 82px minmax(0, 1fr);
	}
	.pcgh-shop-service-detail-product .pcgh-shop-service-list-card__image {
		width: 82px;
	}
	.pcgh-shop-service-status-detail .pcgh-shop-service-progress {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-service-timeline li {
		grid-template-columns: 1fr;
		gap: 6px;
	}
	.pcgh-shop-service-timeline li > div:first-child {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.pcgh-shop-service-evidence__images {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		max-width: none;
	}
	.pcgh-shop-service-return-form > div {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-service-return-form button,
	.pcgh-shop-service-supplement-form button,
	.pcgh-shop-service-feedback-form button {
		width: 100%;
		justify-self: stretch;
	}
	.pcgh-shop-service-feedback-rating {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Product detail v2 */
.pcgh-shop-single-v2 {
	--shop-accent: #ff1f35;
	--shop-accent-2: #ff7a1a;
	--shop-soft: rgba(255,31,53,.08);
	--shop-card: #fff;
	--shop-card-2: #f7f8fb;
	--shop-line: #eceff5;
	--shop-muted: #667085;
	--shop-muted-2: #98a2b3;
	--shop-shadow: 0 16px 38px rgba(15,23,42,.05);
	padding: 22px 0 46px;
	background: var(--pcgh-bg);
}

.pcgh-shop-single-v2 .pcgh-container {
	max-width: var(--pcgh-container-w);
}

.pcgh-shop-single-v2 .pcgh-shop-breadcrumb {
	margin-bottom: 18px;
}

.pcgh-shop-single-v2__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) clamp(430px, 35%, 540px);
	grid-template-areas:
		"gallery aside"
		"details aside";
	gap: clamp(22px, 2.5vw, 40px);
	align-items: start;
}

.pcgh-shop-single-v2__aside {
	grid-area: aside;
	position: sticky;
	top: var(--shop-detail-sticky-top, 92px);
	align-self: start;
	padding-right: 2px;
	overflow: visible;
	scrollbar-width: thin;
}

.pcgh-shop-single-v2__main {
	display: contents;
	min-width: 0;
}

.pcgh-shop-main-card,
.pcgh-shop-aside-card {
	border: 1px solid var(--shop-line);
	border-radius: 8px;
	background: var(--shop-card);
	box-shadow: var(--shop-shadow);
}

.pcgh-shop-main-card {
	min-width: 0;
	overflow: hidden;
}

.pcgh-shop-hero-gallery {
	--pcgh-shop-thumb-column: 112px;
	--pcgh-shop-gallery-gap: 16px;
	grid-area: gallery;
	display: grid;
	grid-template-columns: var(--pcgh-shop-thumb-column) minmax(0, 1fr);
	gap: var(--pcgh-shop-gallery-gap);
	align-items: start;
	container-type: inline-size;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	overflow: visible;
}

.pcgh-shop-hero-gallery.no-thumbs {
	grid-template-columns: minmax(0, 1fr);
}

.pcgh-shop-hero-gallery__thumbrail {
	display: grid;
	grid-template-rows: minmax(28px, 30px) minmax(0, 1fr) minmax(28px, 30px);
	gap: 8px;
	align-self: start;
	width: 100%;
	height: var(--pcgh-shop-media-main-height, calc(100cqw - var(--pcgh-shop-thumb-column) - var(--pcgh-shop-gallery-gap)));
	max-height: var(--pcgh-shop-media-main-height, calc(100cqw - var(--pcgh-shop-thumb-column) - var(--pcgh-shop-gallery-gap)));
	box-sizing: border-box;
	min-width: 0;
	min-height: 0;
	overflow: hidden;
}

.pcgh-shop-hero-gallery__thumbnav {
	width: 100%;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border: 1px solid var(--shop-line);
	border-radius: 7px;
	background: var(--shop-card);
	color: var(--shop-muted);
	cursor: pointer;
	box-shadow: none;
}

.pcgh-shop-hero-gallery__thumbnav:hover:not(:disabled) {
	border-color: color-mix(in srgb, var(--shop-accent) 38%, var(--shop-line));
	color: var(--shop-accent);
}

.pcgh-shop-hero-gallery__thumbnav:disabled {
	opacity: .42;
	cursor: not-allowed;
}

.pcgh-shop-hero-gallery__thumbnav svg,
.pcgh-shop-hero-gallery__thumbnav i {
	width: 18px;
	height: 18px;
}

.pcgh-shop-hero-gallery__thumbs {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
	min-height: 0;
	height: 100%;
	max-height: none;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0;
	overscroll-behavior: contain;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.pcgh-shop-hero-gallery__thumbs::-webkit-scrollbar {
	display: none;
}

.pcgh-shop-hero-gallery__thumbs button {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	flex: 0 0 auto;
	box-sizing: border-box;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 8px;
	background: transparent;
	cursor: pointer;
	box-shadow: none;
	overflow: hidden;
}

.pcgh-shop-hero-gallery__thumbs button.is-active {
	border-color: var(--shop-accent);
}

.pcgh-shop-hero-gallery__thumbs button.is-video {
	background: #111827;
}

.pcgh-shop-hero-gallery__video-mark {
	position: absolute;
	inset: auto 6px 6px 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 3px;
	min-height: 22px;
	border-radius: 999px;
	background: rgba(17, 24, 39, 0.78);
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
}

.pcgh-shop-hero-gallery__video-mark svg,
.pcgh-shop-hero-gallery__video-mark i {
	width: 12px;
	height: 12px;
}

.pcgh-shop-hero-gallery__thumbs img,
.pcgh-shop-hero-gallery__main img,
.pcgh-shop-hero-gallery__main video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.pcgh-shop-hero-gallery__body {
	min-width: 0;
	border: 1px solid var(--shop-line);
	border-radius: 8px;
	background: var(--shop-card);
	box-shadow: var(--shop-shadow);
	overflow: hidden;
}

.pcgh-shop-hero-gallery__main {
	position: relative;
	aspect-ratio: 1 / 1;
	display: grid;
	place-items: center;
	box-sizing: border-box;
	padding: clamp(14px, 2vw, 24px);
	background: #fff;
	overflow: hidden;
}

.pcgh-shop-hero-gallery__main img {
	background: #fff;
	border-radius: 6px;
}

.pcgh-shop-hero-gallery__main video {
	border-radius: 6px;
	background: #050505;
}

.pcgh-shop-hero-gallery__main [hidden] {
	display: none !important;
}

.pcgh-shop-hero-gallery__counter {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 2;
	min-width: 46px;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(17, 24, 39, 0.62);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
}

.pcgh-shop-hero-gallery__actions {
	min-height: 48px;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 0 14px;
	border-top: 1px solid var(--shop-line);
	color: var(--shop-muted);
	font-size: 12px;
	font-weight: 800;
}

.pcgh-shop-hero-gallery__actions button,
.pcgh-shop-hero-gallery__actions a,
.pcgh-shop-hero-gallery__actions span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-decoration: none;
	cursor: pointer;
}

.pcgh-shop-hero-gallery__actions a {
	margin-left: auto;
}

.pcgh-shop-hero-gallery__actions button.is-active {
	color: var(--shop-accent);
}

.pcgh-shop-hero-gallery__actions svg,
.pcgh-shop-hero-gallery__actions i {
	width: 15px;
	height: 15px;
}

.pcgh-shop-single-v2__sticky {
	display: grid;
	gap: 14px;
}

body.admin-bar .pcgh-shop-single-v2 {
	--shop-detail-sticky-top: 124px;
}

.pcgh-shop-single-v2 .pcgh-shop-tabs {
	gap: 42px;
	padding: 0 30px;
	border-bottom: 1px solid var(--shop-line);
	background: var(--shop-card);
}

.pcgh-shop-single-v2 .pcgh-shop-detail-card {
	grid-area: details;
}

.pcgh-shop-single-v2 .pcgh-shop-tabs button {
	height: 60px;
	color: var(--pcgh-text);
	font-size: 16px;
	font-weight: 900;
}

.pcgh-shop-single-v2 .pcgh-shop-tabs button:after {
	height: 3px;
}

.pcgh-shop-single-v2 .pcgh-shop-tabs button.is-active {
	color: var(--shop-accent);
}

.pcgh-shop-single-v2 .pcgh-shop-tabs button.is-active:after {
	background: var(--shop-accent);
}

.pcgh-shop-single-v2 .pcgh-shop-tab-panel {
	padding: 16px;
}

.pcgh-shop-detail-overview {
	display: grid;
	gap: 16px;
}

.pcgh-shop-detail-media {
	display: grid;
	gap: 12px;
}

.pcgh-shop-detail-media__main {
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	background: var(--shop-card-2);
	overflow: hidden;
}

.pcgh-shop-detail-media__main img,
.pcgh-shop-detail-media__thumbs img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.pcgh-shop-detail-media__thumbs {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 2px;
}

.pcgh-shop-detail-media__thumbs button {
	flex: 0 0 68px;
	width: 68px;
	aspect-ratio: 1 / 1;
	padding: 2px;
	border: 2px solid transparent;
	border-radius: 7px;
	background: var(--shop-card-2);
	cursor: pointer;
	overflow: hidden;
}

.pcgh-shop-detail-media__thumbs button.is-active {
	border-color: var(--shop-accent);
}

.pcgh-shop-detail-summary {
	margin: 0;
	padding: 14px 16px;
	border-radius: 7px;
	background: var(--shop-card-2);
	color: var(--pcgh-text-2);
	font-size: 14px;
	line-height: 1.75;
}

.pcgh-shop-single-v2 .pcgh-shop-detail-duo:empty {
	display: none;
}

.pcgh-shop-single-v2 .pcgh-shop-content {
	margin-top: 0;
}

.pcgh-shop-single-v2 .pcgh-shop-buybox {
	position: static;
	top: auto;
	z-index: auto;
	padding: 18px;
	border-color: var(--shop-line);
	border-radius: 8px;
	background: var(--shop-card);
	box-shadow: var(--shop-shadow);
}

.pcgh-shop-single-v2 .pcgh-shop-buybox__tags {
	margin-bottom: 12px;
	gap: 8px;
}

.pcgh-shop-single-v2 .pcgh-shop-buybox__tags span {
	min-height: 24px;
	display: inline-flex;
	align-items: center;
	padding: 0 9px;
	border-radius: 5px;
	background: var(--shop-soft);
	color: var(--shop-accent);
	font-size: 12px;
	font-weight: 900;
}

.pcgh-shop-single-v2 .pcgh-shop-buybox h1 {
	margin: 0;
	color: var(--pcgh-text);
	font-size: 23px;
	line-height: 1.35;
	font-weight: 950;
}

.pcgh-shop-buybox__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 10px;
}

.pcgh-shop-buybox__chips span {
	min-height: 24px;
	display: inline-flex;
	align-items: center;
	padding: 0 8px;
	border-radius: 4px;
	background: var(--shop-card-2);
	color: var(--shop-muted);
	font-size: 12px;
	font-weight: 800;
}

.pcgh-shop-single-v2 .pcgh-shop-buybox__sub {
	margin: 10px 0 0;
	color: var(--shop-muted);
	font-size: 13px;
	line-height: 1.65;
}

.pcgh-shop-single-v2 .pcgh-shop-pricebox {
	display: grid;
	gap: 10px;
	margin: 16px -6px 16px;
	padding: 16px 14px;
	border: 1px solid color-mix(in srgb, var(--shop-accent) 10%, var(--shop-line));
	border-radius: 7px;
	background: color-mix(in srgb, var(--shop-accent) 5%, var(--shop-card));
}

.pcgh-shop-single-v2 .pcgh-shop-pricebox div {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 10px;
}

.pcgh-shop-single-v2 .pcgh-shop-pricebox strong {
	color: var(--shop-accent);
	font-size: 34px;
	line-height: 1;
	font-weight: 950;
}

.pcgh-shop-single-v2 .pcgh-shop-pricebox del {
	color: var(--shop-muted-2);
	font-size: 13px;
}

.pcgh-shop-pricebox__discount {
	margin-left: auto;
	min-height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	border-radius: 6px;
	background: var(--shop-accent);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
}

.pcgh-shop-single-v2 .pcgh-shop-pricebox__meta {
	gap: 8px;
}

.pcgh-shop-single-v2 .pcgh-shop-pricebox__meta span {
	min-height: 25px;
	display: inline-flex;
	align-items: center;
	padding: 0 9px;
	border-radius: 4px;
	background: rgba(255,31,53,.1);
	color: var(--shop-accent);
	font-size: 12px;
	font-weight: 900;
}

.pcgh-shop-single-v2 .pcgh-shop-pricebox__meta em {
	margin-left: 0;
	color: var(--shop-muted);
	font-size: 12px;
	font-style: normal;
	font-weight: 800;
}

.pcgh-shop-single-v2 .pcgh-shop-delivery,
.pcgh-shop-single-v2 .pcgh-shop-option,
.pcgh-shop-single-v2 .pcgh-shop-qty {
	grid-template-columns: 1fr;
	gap: 10px;
	margin: 18px 0;
}

.pcgh-shop-single-v2 .pcgh-shop-delivery small,
.pcgh-shop-single-v2 .pcgh-shop-option small,
.pcgh-shop-single-v2 .pcgh-shop-qty > small {
	color: var(--shop-muted);
	font-size: 15px;
	line-height: 1.4;
}

.pcgh-shop-single-v2 .pcgh-shop-delivery p {
	color: var(--pcgh-text-2);
	font-size: 13px;
}

.pcgh-shop-single-v2 .pcgh-shop-option__choices {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.pcgh-shop-single-v2 .pcgh-shop-option__choices button {
	width: auto;
	max-width: 100%;
	min-width: 0;
	min-height: 46px;
	gap: 10px;
	justify-content: flex-start;
	padding: 6px 14px;
	border-color: var(--shop-line);
	border-radius: 9px;
	background: var(--shop-card);
	color: var(--pcgh-text);
	font-size: 14px;
	font-weight: 850;
}

.pcgh-shop-single-v2 .pcgh-shop-option__choices button.has-badge {
	padding-top: 13px;
	padding-right: 22px;
}

.pcgh-shop-single-v2 .pcgh-shop-option__badge {
	min-height: 17px;
	padding: 0 6px;
	border-radius: 0 8px 0 6px;
	font-size: 10px;
	line-height: 17px;
}

.pcgh-shop-single-v2 .pcgh-shop-option__choices button.has-image {
	min-width: 138px;
	padding: 5px 14px 5px 5px;
}

.pcgh-shop-single-v2 .pcgh-shop-option__choices button.has-image.has-badge {
	padding-top: 12px;
	padding-right: 22px;
}

.pcgh-shop-single-v2 .pcgh-shop-option__choices button img {
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	padding: 2px;
	border-radius: 5px;
}

.pcgh-shop-single-v2 .pcgh-shop-option__choices .pcgh-shop-option__name {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pcgh-shop-single-v2 .pcgh-shop-option__choices button.is-active {
	border-color: var(--shop-accent);
	background: color-mix(in srgb, var(--shop-accent) 5%, var(--shop-card));
	color: var(--shop-accent);
	box-shadow: 0 0 0 1px var(--shop-accent);
}

.pcgh-shop-single-v2 .pcgh-shop-qty > .pcgh-shop-qty__control {
	display: flex;
	grid-template-columns: none;
	width: auto;
	align-items: center;
	gap: 12px;
	border: 0;
	border-radius: 0;
	background: transparent;
	overflow: visible;
}

.pcgh-shop-single-v2 .pcgh-shop-qty [data-pcgh-shop-qty] {
	display: inline-grid;
	grid-template-columns: 34px 48px 34px;
	width: max-content;
	border: 1px solid var(--shop-line);
	border-radius: 6px;
	background: var(--shop-card-2);
	overflow: hidden;
}

.pcgh-shop-single-v2 .pcgh-shop-qty span {
	color: var(--shop-muted);
	font-size: 13px;
}

.pcgh-shop-single-v2 .pcgh-shop-buybox__actions {
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 18px 0 10px;
}

.pcgh-shop-single-v2 .pcgh-shop-buybox__actions button {
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid var(--shop-accent);
	border-radius: 6px;
	background: var(--shop-accent);
	color: #fff;
	font-size: 16px;
	box-shadow: none;
}

.pcgh-shop-single-v2 .pcgh-shop-buybox__actions button:first-child {
	background: var(--shop-card);
	color: var(--shop-accent);
}

.pcgh-shop-single-v2 .pcgh-shop-buybox__actions svg,
.pcgh-shop-single-v2 .pcgh-shop-buybox__actions i {
	width: 20px;
	height: 20px;
}

.pcgh-shop-buybox__state {
	margin: 0 0 10px;
	padding: 10px 12px;
	border: 1px solid color-mix(in srgb, var(--shop-accent) 18%, var(--shop-line));
	border-radius: 6px;
	background: color-mix(in srgb, var(--shop-accent) 7%, var(--shop-card));
	color: var(--shop-accent);
	font-size: 13px;
	line-height: 1.6;
	font-weight: 800;
}

.pcgh-shop-buybox__state[hidden] {
	display: none;
}

.pcgh-shop-buybox__tools {
	display: flex;
	justify-content: center;
	gap: 18px;
	padding-top: 8px;
}

.pcgh-shop-buybox__tools button {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border: 0;
	background: transparent;
	color: var(--shop-muted);
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
}

.pcgh-shop-buybox__tools button.is-active {
	color: var(--shop-accent);
}

.pcgh-shop-buybox__tools svg,
.pcgh-shop-buybox__tools i {
	width: 15px;
	height: 15px;
}

.pcgh-shop-single-v2 .pcgh-shop-buybox--jd {
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	height: min(660px, calc(100vh - var(--shop-detail-sticky-top, 92px) - 18px));
	min-height: 470px;
	padding: 0;
	border-radius: 8px;
	overflow: hidden;
}

.pcgh-shop-buybox--jd .pcgh-shop-buybox__promo {
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 0 18px;
	background: linear-gradient(90deg, #fa1234 0%, #ff1634 58%, #f60d2c 100%);
	color: #fff;
}

.pcgh-shop-buybox--jd .pcgh-shop-buybox__promo strong {
	font-size: 20px;
	line-height: 1;
	font-style: italic;
	font-weight: 950;
	letter-spacing: 0;
}

.pcgh-shop-buybox--jd .pcgh-shop-buybox__promo span {
	font-size: 13px;
	font-weight: 950;
	white-space: nowrap;
}

.pcgh-shop-buybox--jd .pcgh-shop-buybox__promo--image {
	min-height: 0;
	display: block;
	padding: 0;
	background: transparent;
	line-height: 0;
	overflow: hidden;
}

.pcgh-shop-buybox--jd .pcgh-shop-buybox__promo--image img {
	width: 100%;
	aspect-ratio: 1910 / 241;
	display: block;
	object-fit: cover;
}

.pcgh-shop-buybox--jd .pcgh-shop-buybox__scroll {
	min-height: 0;
	padding: 16px 15px 14px;
	background: var(--shop-card);
	overflow-y: auto;
	scrollbar-width: thin;
}

.pcgh-shop-buybox--jd .pcgh-shop-buybox__titlebar {
	display: block;
}

.pcgh-shop-buybox--jd .pcgh-shop-buybox__titlebar h1 {
	font-size: clamp(18px, 1.42vw, 22px);
	line-height: 1.3;
	font-weight: 950;
	letter-spacing: 0;
}

.pcgh-shop-buybox__fav {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 5px;
	border: 0;
	background: transparent;
	color: var(--shop-muted);
	font-size: 13px;
	line-height: 1;
	font-weight: 800;
	cursor: pointer;
	white-space: nowrap;
}

.pcgh-shop-buybox__fav.is-active {
	color: var(--shop-accent);
}

.pcgh-shop-buybox__fav svg,
.pcgh-shop-buybox__fav i {
	width: 20px;
	height: 20px;
}

.pcgh-shop-buybox--jd .pcgh-shop-buybox__sub {
	margin: 5px 0 0;
	font-size: 12px;
	line-height: 1.55;
}

.pcgh-shop-buybox--jd .pcgh-shop-pricebox {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 10px;
	margin: 12px 0 10px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.pcgh-shop-buybox--jd .pcgh-shop-pricebox__line {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	flex-wrap: wrap;
	row-gap: 5px;
}

.pcgh-shop-buybox--jd .pcgh-shop-pricebox strong {
	color: var(--shop-accent);
	font-size: clamp(35px, 2.9vw, 42px);
	line-height: 1;
	font-weight: 1000;
	letter-spacing: 0;
	white-space: nowrap;
}

.pcgh-shop-buybox--jd .pcgh-shop-pricebox strong.is-currency-price::first-letter {
	font-size: .62em;
	line-height: 1;
}

.pcgh-shop-buybox--jd .pcgh-shop-pricebox del {
	padding-bottom: 0;
	color: var(--shop-muted-2);
	font-size: 18px;
	line-height: 1;
	font-weight: 850;
	text-decoration-thickness: 2px;
	text-decoration-color: currentColor;
	white-space: nowrap;
}

.pcgh-shop-buybox--jd .pcgh-shop-pricebox__discount {
	flex: 0 0 auto;
	min-height: 28px;
	margin: 0;
	padding: 0 7px;
	border-radius: 2px;
	background: #ff1838;
	color: #fff;
	font-size: 15px;
	line-height: 28px;
	font-weight: 950;
}

.pcgh-shop-buybox--jd .pcgh-shop-pricebox__stats {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 6px;
	color: var(--shop-muted);
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.pcgh-shop-buybox--jd .pcgh-shop-pricebox__stats span + span {
	padding-left: 12px;
	border-left: 1px solid var(--shop-line);
}

.pcgh-shop-jd-row {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) auto;
	align-items: start;
	gap: 8px 16px;
	margin: 11px 0;
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.65;
}

.pcgh-shop-jd-row > small,
.pcgh-shop-buybox--jd .pcgh-shop-option > small {
	color: var(--shop-muted);
	font-size: 14px;
	line-height: 1.65;
	font-weight: 500;
}

.pcgh-shop-jd-row p {
	margin: 0;
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.65;
}

.pcgh-shop-jd-row > svg,
.pcgh-shop-jd-row > i {
	width: 18px;
	height: 18px;
	margin-top: 5px;
	color: var(--shop-muted);
}

.pcgh-shop-jd-row--benefit div {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.pcgh-shop-jd-row--benefit span {
	min-height: 25px;
	display: inline-flex;
	align-items: center;
	padding: 0 10px;
	border-radius: 5px;
	background: color-mix(in srgb, var(--shop-accent) 8%, var(--shop-card));
	color: var(--shop-accent);
	font-size: 12px;
	font-weight: 850;
}

.pcgh-shop-jd-rank {
	width: max-content;
	max-width: 100%;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 34px;
	margin: 4px 0 8px;
	padding: 0 12px;
	border-radius: 6px;
	background: #fff3e7;
	color: #c46b12;
	font-size: 13px;
	font-weight: 950;
}

.pcgh-shop-jd-rank svg,
.pcgh-shop-jd-rank i {
	width: 17px;
	height: 17px;
}

.pcgh-shop-service-panel--jd {
	margin: 12px 0 8px;
	color: var(--pcgh-text);
}

.pcgh-shop-service-panel--jd h2 {
	margin: 0 0 10px;
	color: var(--shop-muted);
	font-size: 14px;
	line-height: 1.65;
	font-weight: 500;
	letter-spacing: 0;
}

.pcgh-shop-service-panel__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 13px 15px;
}

.pcgh-shop-service-panel__item {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	gap: 7px;
	min-width: 0;
}

.pcgh-shop-service-panel__icon {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--pcgh-text);
}

.pcgh-shop-service-panel__icon svg,
.pcgh-shop-service-panel__icon i {
	width: 27px;
	height: 27px;
	stroke-width: 2.1;
}

.pcgh-shop-service-panel__text {
	min-width: 0;
	display: grid;
	gap: 4px;
}

.pcgh-shop-service-panel__text strong {
	color: var(--pcgh-text);
	font-size: 13px;
	line-height: 1.25;
	font-weight: 950;
	letter-spacing: 0;
	word-break: break-word;
}

.pcgh-shop-service-panel__text small {
	color: var(--shop-muted);
	font-size: 11px;
	line-height: 1.4;
	font-weight: 500;
	word-break: break-word;
}

.pcgh-shop-buybox--jd .pcgh-shop-option {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	align-items: start;
	gap: 8px 16px;
	margin: 11px 0;
}

.pcgh-shop-buybox--jd .pcgh-shop-option__choices {
	gap: 8px;
}

.pcgh-shop-buybox--jd .pcgh-shop-option__choices button {
	min-height: 39px;
	border-radius: 6px;
	background: var(--shop-card-2);
	font-size: 13px;
	font-weight: 850;
}

.pcgh-shop-buybox--jd .pcgh-shop-option__choices button.has-badge {
	padding-top: 12px;
	padding-right: 20px;
}

.pcgh-shop-buybox--jd .pcgh-shop-option__badge {
	min-height: 16px;
	padding: 0 5px;
	border-radius: 0 6px 0 5px;
	font-size: 9px;
	line-height: 16px;
}

.pcgh-shop-buybox--jd .pcgh-shop-option__choices button.has-image {
	min-width: 138px;
	padding-right: 13px;
}

.pcgh-shop-buybox--jd .pcgh-shop-option__choices button.has-image.has-badge {
	padding-right: 20px;
}

.pcgh-shop-buybox--jd .pcgh-shop-option__choices button.is-active {
	background: color-mix(in srgb, var(--shop-accent) 4%, var(--shop-card));
}

.pcgh-shop-buybox--jd .pcgh-shop-buybox__state {
	margin: 10px 0 0 88px;
}

.pcgh-shop-buybox--jd .pcgh-shop-buybox__dock {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-height: 68px;
	padding: 8px 10px;
	border-top: 1px solid var(--shop-line);
	background: var(--shop-card);
	box-shadow: 0 -10px 28px rgba(15,23,42,.05);
}

.pcgh-shop-buybox--jd .pcgh-shop-qty {
	margin: 0;
}

.pcgh-shop-buybox--jd .pcgh-shop-qty > small {
	display: none;
}

.pcgh-shop-buybox--jd .pcgh-shop-qty > .pcgh-shop-qty__control {
	display: grid;
	gap: 5px;
}

.pcgh-shop-buybox--jd .pcgh-shop-qty [data-pcgh-shop-qty] {
	display: inline-grid;
	grid-template-columns: 38px 42px 38px;
	align-items: center;
	justify-content: center;
	justify-self: center;
	column-gap: 8px;
	width: max-content;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.pcgh-shop-buybox--jd .pcgh-shop-qty [data-pcgh-shop-qty] button {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--shop-line);
	border-radius: 5px;
	background: var(--shop-card-2);
	color: var(--pcgh-text);
	font-size: 20px;
}

.pcgh-shop-buybox--jd .pcgh-shop-qty [data-pcgh-shop-qty] input {
	width: 42px;
	height: 38px;
	display: block;
	box-sizing: border-box;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--pcgh-text);
	font-size: 17px;
	font-weight: 850;
	line-height: 38px;
	text-align: center;
	caret-color: var(--pcgh-text);
	appearance: textfield;
	-moz-appearance: textfield;
}

.pcgh-shop-buybox--jd .pcgh-shop-qty [data-pcgh-shop-qty] input::-webkit-outer-spin-button,
.pcgh-shop-buybox--jd .pcgh-shop-qty [data-pcgh-shop-qty] input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.pcgh-shop-buybox--jd .pcgh-shop-qty [data-pcgh-shop-qty] input:focus {
	border-radius: 4px;
	background: color-mix(in srgb, var(--shop-accent) 7%, transparent);
}

.pcgh-shop-buybox--jd .pcgh-shop-qty span {
	font-size: 12px;
	line-height: 1.2;
	text-align: center;
}

.pcgh-shop-buybox--jd .pcgh-shop-buybox__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin: 0;
}

.pcgh-shop-buybox--jd .pcgh-shop-buybox__actions button {
	height: 45px;
	border: 0;
	border-radius: 6px;
	background: #ff3d55;
	color: #fff;
	font-size: 17px;
	font-weight: 950;
	letter-spacing: 0;
}

.pcgh-shop-buybox--jd .pcgh-shop-buybox__actions button:first-child {
	background: #ff3d55;
	color: #fff;
}

.pcgh-shop-service-card {
	padding: 18px;
}

.pcgh-shop-service-card h2,
.pcgh-shop-single-v2 .pcgh-shop-side-recs h2 {
	margin: 0 0 14px;
	color: var(--pcgh-text);
	font-size: 16px;
	line-height: 1.35;
	font-weight: 950;
}

.pcgh-shop-service-card > div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 12px;
}

.pcgh-shop-service-card span {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 2px 9px;
	align-items: center;
	min-width: 0;
}

.pcgh-shop-service-card svg,
.pcgh-shop-service-card i {
	grid-row: 1 / 3;
	width: 24px;
	height: 24px;
	color: var(--pcgh-text);
}

.pcgh-shop-service-card em {
	color: var(--pcgh-text);
	font-size: 13px;
	line-height: 1.35;
	font-style: normal;
	font-weight: 900;
}

.pcgh-shop-service-card small {
	color: var(--shop-muted);
	font-size: 11px;
	line-height: 1.45;
}

.pcgh-shop-single-v2 .pcgh-shop-side-recs {
	padding: 18px;
}

.pcgh-shop-single-v2 .pcgh-shop-side-rec {
	grid-template-columns: 74px minmax(0, 1fr) 30px;
	gap: 5px 12px;
	padding: 8px;
	border-color: var(--shop-line);
	border-radius: 7px;
	background: var(--shop-card);
}

.pcgh-shop-single-v2 .pcgh-shop-side-rec > span {
	width: 74px;
	background: var(--shop-card-2);
}

.pcgh-shop-single-v2 .pcgh-shop-side-rec strong {
	font-size: 13px;
	font-weight: 850;
}

.pcgh-shop-single-v2 .pcgh-shop-side-rec em {
	color: var(--pcgh-text);
	font-size: 13px;
}

.pcgh-shop-single-v2 .pcgh-shop-side-rec i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: var(--shop-card-2);
	color: var(--shop-muted);
}

.pcgh-shop-reviews-v2 {
	gap: 14px;
}

.pcgh-shop-reviews-v2 .pcgh-shop-reviews__summary {
	grid-template-columns: 150px 130px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	padding: 18px;
	border-color: var(--shop-line);
	border-radius: 8px;
	background: var(--shop-card);
}

.pcgh-shop-reviews-v2 .pcgh-shop-reviews__summary h2 {
	grid-column: 1 / -1;
	margin: 0 0 6px;
	color: var(--pcgh-text);
	font-size: 16px;
	line-height: 1.35;
	font-weight: 950;
}

.pcgh-shop-reviews-v2 .pcgh-shop-reviews__score {
	display: grid;
	justify-items: start;
	gap: 6px;
	min-width: 0;
	color: var(--shop-accent);
}

.pcgh-shop-reviews-v2 .pcgh-shop-reviews__score strong {
	font-size: 42px;
	line-height: 1;
	font-weight: 950;
}

.pcgh-shop-reviews-v2 .pcgh-shop-reviews__score small {
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
}

.pcgh-shop-single-v2 .pcgh-shop-review-stars {
	color: #ff7a1a;
}

.pcgh-shop-single-v2 .pcgh-shop-review-stars span {
	width: 17px;
	height: 17px;
}

.pcgh-shop-single-v2 .pcgh-shop-review-stars svg,
.pcgh-shop-single-v2 .pcgh-shop-review-stars i {
	width: 17px;
	height: 17px;
}

.pcgh-shop-single-v2 .pcgh-shop-review-stars .is-on svg,
.pcgh-shop-single-v2 .pcgh-shop-review-stars .is-on i,
.pcgh-shop-single-v2 .pcgh-shop-review-stars .is-half svg,
.pcgh-shop-single-v2 .pcgh-shop-review-stars .is-half i {
	fill: currentColor;
	stroke: currentColor;
}

.pcgh-shop-reviews-v2 .pcgh-shop-reviews__meta {
	position: relative;
	display: grid;
	gap: 8px;
	padding-left: 26px;
	border-left: 1px solid var(--shop-line);
}

.pcgh-shop-reviews-v2 .pcgh-shop-reviews__meta span {
	color: var(--shop-muted);
	font-size: 13px;
	font-weight: 800;
}

.pcgh-shop-reviews-v2 .pcgh-shop-reviews__meta strong {
	color: var(--pcgh-text);
	font-size: 28px;
	line-height: 1;
	font-weight: 950;
}

.pcgh-shop-reviews-v2 .pcgh-shop-reviews__dist {
	gap: 7px;
}

.pcgh-shop-reviews-v2 .pcgh-shop-reviews__dist > strong {
	margin-bottom: 2px;
	color: var(--pcgh-text);
	font-size: 13px;
	font-weight: 900;
}

.pcgh-shop-reviews-v2 .pcgh-shop-reviews__dist div {
	grid-template-columns: 34px minmax(0, 1fr) 42px;
	gap: 10px;
	color: var(--shop-muted);
	font-size: 12px;
}

.pcgh-shop-reviews-v2 .pcgh-shop-reviews__dist em {
	height: 6px;
	background: var(--shop-card-2);
}

.pcgh-shop-reviews-v2 .pcgh-shop-reviews__dist em i {
	background: var(--shop-accent);
}

.pcgh-shop-reviews-v2 .pcgh-shop-reviews__dist b {
	color: var(--shop-muted);
	text-align: right;
	font-weight: 800;
}

.pcgh-shop-reviews__toolbar {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 42px;
}

.pcgh-shop-reviews__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	min-width: 0;
}

.pcgh-shop-reviews__filters a,
.pcgh-shop-reviews__pagination a,
.pcgh-shop-reviews__pagination span {
	min-height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 13px;
	border: 1px solid var(--shop-line);
	border-radius: 6px;
	background: var(--shop-card-2);
	color: var(--pcgh-text-2);
	font-size: 13px;
	font-weight: 850;
	text-decoration: none;
}

.pcgh-shop-reviews__filters a.is-active,
.pcgh-shop-reviews__pagination .is-active {
	border-color: var(--shop-accent);
	background: var(--shop-soft);
	color: var(--shop-accent);
}

.pcgh-shop-reviews__current {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-left: auto;
	color: var(--shop-muted);
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.pcgh-shop-reviews__current input {
	width: 15px;
	height: 15px;
	margin: 0;
	accent-color: var(--shop-accent);
}

.pcgh-shop-reviews__sort {
	position: relative;
	flex: 0 0 auto;
}

.pcgh-shop-reviews__sort button {
	min-width: 112px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border: 1px solid var(--shop-line);
	border-radius: 6px;
	background: var(--shop-card);
	color: var(--pcgh-text-2);
	font-size: 13px;
	font-weight: 850;
	cursor: pointer;
}

.pcgh-shop-reviews__sort svg,
.pcgh-shop-reviews__sort i {
	width: 15px;
	height: 15px;
}

.pcgh-shop-reviews__sort > div {
	position: absolute;
	right: 0;
	top: calc(100% + 6px);
	z-index: 20;
	display: none;
	min-width: 126px;
	padding: 6px;
	border: 1px solid var(--shop-line);
	border-radius: 7px;
	background: var(--shop-card);
	box-shadow: 0 16px 34px rgba(15,23,42,.12);
}

.pcgh-shop-reviews__sort:hover > div,
.pcgh-shop-reviews__sort:focus-within > div {
	display: grid;
}

.pcgh-shop-reviews__sort a {
	padding: 8px 10px;
	border-radius: 5px;
	color: var(--pcgh-text-2);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.pcgh-shop-reviews__sort a.is-active,
.pcgh-shop-reviews__sort a:hover {
	background: var(--shop-soft);
	color: var(--shop-accent);
}

.pcgh-shop-reviews-v2 .pcgh-shop-reviews__list {
	display: grid;
	gap: 0;
	list-style: none;
}

.pcgh-shop-review-card {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 14px;
	margin: 0;
	padding: 22px 4px;
	border-top: 1px solid var(--shop-line);
}

.pcgh-shop-review-card:first-child {
	border-top: 0;
	padding-top: 8px;
}

.pcgh-shop-review-card__avatar-img,
.pcgh-shop-review-card__avatar img {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.pcgh-shop-review-card__body {
	min-width: 0;
}

.pcgh-shop-review-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 7px;
}

.pcgh-shop-review-card__head > div {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	min-width: 0;
}

.pcgh-shop-review-card__head strong {
	color: var(--pcgh-text);
	font-size: 14px;
	line-height: 1.35;
	font-weight: 950;
}

.pcgh-shop-review-card__head time {
	flex: 0 0 auto;
	color: var(--shop-muted);
	font-size: 12px;
	font-weight: 800;
}

.pcgh-shop-review-card__badges {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.pcgh-shop-review-card__level,
.pcgh-shop-review-card__badges .pcgh-level-badge,
.pcgh-shop-review-card__badges .pcgh-vip-badge {
	min-height: 20px;
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	font-size: 11px;
	line-height: 1;
}

.pcgh-shop-review-card__rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.pcgh-shop-review-card__rating span:last-child {
	color: var(--shop-muted);
	font-size: 12px;
	font-weight: 800;
}

.pcgh-shop-review-card__content {
	color: var(--pcgh-text-2);
	font-size: 14px;
	line-height: 1.75;
}

.pcgh-shop-review-card__content p {
	margin: 0 0 6px;
}

.pcgh-shop-review-card__variant {
	margin: 6px 0 10px;
	color: var(--shop-muted);
	font-size: 12px;
	line-height: 1.6;
}

.pcgh-shop-review-card__media {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 10px 0;
}

.pcgh-shop-review-card__media a {
	position: relative;
	width: 86px;
	height: 66px;
	border-radius: 6px;
	background: var(--shop-card-2);
	overflow: hidden;
}

.pcgh-shop-review-card__media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.pcgh-shop-review-card__media .is-video {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	color: #fff;
	background: rgba(15,23,42,.7);
	text-decoration: none;
	font-size: 12px;
	font-weight: 900;
}

.pcgh-shop-review-card__append,
.pcgh-shop-review-card__replies {
	margin-top: 10px;
	padding: 10px 12px;
	border-radius: 7px;
	background: var(--shop-card-2);
	color: var(--pcgh-text-2);
	font-size: 13px;
	line-height: 1.65;
}

.pcgh-shop-review-card__append strong {
	color: var(--shop-accent);
}

.pcgh-shop-review-card__append p,
.pcgh-shop-review-card__replies p {
	margin: 0;
}

.pcgh-shop-review-card__foot {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 10px;
	color: var(--shop-muted);
	font-size: 12px;
	font-weight: 800;
}

.pcgh-shop-review-card__foot span,
.pcgh-shop-review-card__foot a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: inherit;
	text-decoration: none;
}

.pcgh-shop-review-card__foot svg,
.pcgh-shop-review-card__foot i {
	width: 14px;
	height: 14px;
}

.pcgh-shop-reviews__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.pcgh-shop-reviews__pagination span.is-disabled {
	opacity: .46;
}

.pcgh-shop-reviews__pagination .is-ellipsis {
	border-color: transparent;
	background: transparent;
	padding: 0 4px;
	min-width: 0;
}

.pcgh-shop-reviews-v2 .pcgh-shop-review-form,
.pcgh-shop-reviews-v2 .pcgh-comments__login-required,
.pcgh-shop-reviews-v2 .pcgh-shop-reviews__closed {
	margin-top: 12px;
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-single-v2 {
	--shop-card: color-mix(in srgb, var(--pcgh-surface) 94%, #020617 6%);
	--shop-card-2: color-mix(in srgb, var(--pcgh-surface-2) 88%, #020617 12%);
	--shop-line: rgba(148,163,184,.16);
	--shop-muted: #9aa4b2;
	--shop-muted-2: #7b8797;
	--shop-soft: rgba(255,71,87,.14);
	--shop-shadow: 0 16px 40px rgba(0,0,0,.22);
	background: var(--pcgh-bg);
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-single-v2 .pcgh-shop-pricebox {
	background: color-mix(in srgb, var(--shop-accent) 9%, var(--shop-card));
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-single-v2 .pcgh-shop-buybox__actions button:first-child {
	background: transparent;
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-single-v2 .pcgh-shop-buybox--jd .pcgh-shop-pricebox {
	background: transparent;
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-single-v2 .pcgh-shop-buybox--jd .pcgh-shop-buybox__dock {
	box-shadow: 0 -10px 28px rgba(0,0,0,.24);
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-single-v2 .pcgh-shop-buybox--jd .pcgh-shop-buybox__actions button,
html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-single-v2 .pcgh-shop-buybox--jd .pcgh-shop-buybox__actions button:first-child {
	background: #ff3d55;
	color: #fff;
}

html:not([data-pcgh-theme-resolved="light"]) .pcgh-shop-jd-rank {
	background: color-mix(in srgb, #c46b12 16%, var(--shop-card));
	color: #f6b36d;
}

@media (max-width: 1180px) {
	.pcgh-shop-single-v2__layout {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"gallery"
			"aside"
			"details";
	}
	.pcgh-shop-single-v2__aside,
	.pcgh-shop-single-v2__sticky,
	.pcgh-shop-hero-gallery {
		position: static;
		max-height: none;
		overflow: visible;
	}
	.pcgh-shop-single-v2 .pcgh-shop-buybox--jd {
		height: auto;
		min-height: 0;
		max-height: none;
	}
	.pcgh-shop-hero-gallery {
		--pcgh-shop-thumb-column: 96px;
	}
	.pcgh-shop-buybox--jd .pcgh-shop-buybox__scroll {
		overflow: visible;
	}
}

@media (max-width: 768px) {
	.pcgh-shop-single-v2 {
		padding-top: 14px;
		padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
	}
	.pcgh-shop-hero-gallery {
		--pcgh-shop-thumb-column: clamp(58px, 18vw, 76px);
		--pcgh-shop-gallery-gap: 10px;
	}
	.pcgh-shop-hero-gallery__body {
		order: 0;
	}
	.pcgh-shop-hero-gallery__thumbrail {
		order: 0;
		grid-template-rows: 28px minmax(0, 1fr) 28px;
		gap: 6px;
		width: 100%;
	}
	.pcgh-shop-hero-gallery__thumbs {
		order: 0;
		flex-direction: column;
		overflow-x: hidden;
		overflow-y: auto;
		padding: 0;
	}
	.pcgh-shop-hero-gallery__thumbnav,
	.pcgh-shop-hero-gallery__thumbs button {
		width: 100%;
	}
	.pcgh-shop-hero-gallery__thumbnav {
		height: 28px;
		border-radius: 6px;
	}
	.pcgh-shop-hero-gallery__thumbnav svg,
	.pcgh-shop-hero-gallery__thumbnav i {
		width: 16px;
		height: 16px;
	}
	.pcgh-shop-hero-gallery__main {
		aspect-ratio: 1 / 1;
	}
	.pcgh-shop-hero-gallery__counter {
		right: 10px;
	}
	.pcgh-shop-hero-gallery__counter {
		bottom: 10px;
	}
	.pcgh-shop-hero-gallery__actions {
		gap: 12px;
		flex-wrap: wrap;
		padding: 10px 12px;
	}
	.pcgh-shop-hero-gallery__actions a {
		margin-left: 0;
	}
	.pcgh-shop-single-v2 .pcgh-shop-tabs {
		gap: 24px;
		padding: 0 16px;
		overflow-x: auto;
	}
	.pcgh-shop-single-v2 .pcgh-shop-tabs button {
		height: 54px;
		font-size: 15px;
		white-space: nowrap;
	}
	.pcgh-shop-single-v2 .pcgh-shop-tab-panel {
		padding: 14px;
	}
	.pcgh-shop-reviews-v2 .pcgh-shop-reviews__summary {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.pcgh-shop-reviews-v2 .pcgh-shop-reviews__meta {
		padding-left: 0;
		border-left: 0;
	}
	.pcgh-shop-reviews__toolbar {
		align-items: stretch;
		flex-direction: column;
	}
	.pcgh-shop-reviews__current {
		margin-left: 0;
	}
	.pcgh-shop-reviews__sort,
	.pcgh-shop-reviews__sort button {
		width: 100%;
	}
	.pcgh-shop-review-card {
		grid-template-columns: 46px minmax(0, 1fr);
		gap: 10px;
		padding: 18px 0;
	}
	.pcgh-shop-review-card__avatar-img,
	.pcgh-shop-review-card__avatar img {
		width: 42px;
		height: 42px;
	}
	.pcgh-shop-review-card__head {
		display: grid;
		gap: 6px;
	}
	.pcgh-shop-review-card__media a {
		width: 72px;
		height: 56px;
	}
	.pcgh-shop-single-v2 .pcgh-shop-buybox__actions,
	.pcgh-shop-service-card > div {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-buybox--jd .pcgh-shop-buybox__promo {
		min-height: 48px;
		padding: 0 16px;
	}
	.pcgh-shop-buybox--jd .pcgh-shop-buybox__promo--image {
		min-height: 0;
		padding: 0;
	}
	.pcgh-shop-buybox--jd .pcgh-shop-buybox__promo strong {
		font-size: 19px;
	}
	.pcgh-shop-buybox--jd .pcgh-shop-buybox__promo span {
		font-size: 12px;
	}
	.pcgh-shop-buybox--jd .pcgh-shop-buybox__scroll {
		padding: 16px 14px 14px;
	}
	.pcgh-shop-buybox--jd .pcgh-shop-buybox__titlebar {
		gap: 10px;
	}
	.pcgh-shop-buybox--jd .pcgh-shop-buybox__titlebar h1 {
		font-size: 18px;
	}
	.pcgh-shop-buybox--jd .pcgh-shop-pricebox {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.pcgh-shop-buybox--jd .pcgh-shop-pricebox__stats {
		padding-bottom: 0;
		white-space: normal;
	}
	.pcgh-shop-jd-row,
	.pcgh-shop-buybox--jd .pcgh-shop-option {
		grid-template-columns: 72px minmax(0, 1fr);
		gap: 8px 14px;
	}
	.pcgh-shop-jd-row > svg,
	.pcgh-shop-jd-row > i {
		display: none;
	}
	.pcgh-shop-buybox--jd .pcgh-shop-buybox__state {
		margin-left: 86px;
	}
	.pcgh-shop-single-v2 .pcgh-shop-buybox--jd .pcgh-shop-buybox__dock {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 999;
		grid-template-columns: 118px minmax(0, 1fr);
		min-height: 72px;
		padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
		border-radius: 0;
	}
	.pcgh-shop-buybox--jd .pcgh-shop-buybox__actions {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}
	.pcgh-shop-buybox--jd .pcgh-shop-buybox__actions button {
		height: 44px;
		font-size: 16px;
	}
	.pcgh-shop-buybox--jd .pcgh-shop-qty [data-pcgh-shop-qty] {
		grid-template-columns: 34px 36px 34px;
		column-gap: 6px;
	}
	.pcgh-shop-buybox--jd .pcgh-shop-qty [data-pcgh-shop-qty] button {
		width: 34px;
		height: 34px;
		font-size: 18px;
	}
	.pcgh-shop-buybox--jd .pcgh-shop-qty [data-pcgh-shop-qty] input {
		width: 36px;
		height: 34px;
		font-size: 15px;
		line-height: 34px;
	}
	.pcgh-shop-single-v2 .pcgh-shop-delivery,
	.pcgh-shop-single-v2 .pcgh-shop-option,
	.pcgh-shop-single-v2 .pcgh-shop-qty {
		grid-template-columns: 1fr;
		gap: 6px;
	}
	.pcgh-shop-single-v2 .pcgh-shop-delivery small,
	.pcgh-shop-single-v2 .pcgh-shop-option small,
	.pcgh-shop-single-v2 .pcgh-shop-qty > small {
		line-height: 1.4;
	}
	.pcgh-shop-single-v2 .pcgh-shop-buybox--jd .pcgh-shop-option {
		grid-template-columns: 72px minmax(0, 1fr);
		gap: 8px 14px;
	}
	.pcgh-shop-single-v2 .pcgh-shop-buybox--jd .pcgh-shop-qty {
		display: block;
		margin: 0;
	}
	.pcgh-shop-single-v2 .pcgh-shop-buybox--jd .pcgh-shop-buybox__actions {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.pcgh-shop-service-panel__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

/* Final checkout/cart layout overrides kept at the end to beat legacy cart rules. */
.pcgh-shop-cart .pcgh-shop-cart-item {
	display: grid;
	grid-template-columns: 58px minmax(280px, 1fr) 120px 128px 130px 82px;
	align-items: center;
	gap: 0;
	padding: 18px 20px;
}

.pcgh-shop-cart .pcgh-shop-cart-item__product {
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-width: 0;
}

.pcgh-shop-cart .pcgh-shop-cart-item__main em {
	display: none;
}

.pcgh-shop-cart .pcgh-shop-cart-item__price {
	display: block;
	color: var(--pcgh-text);
	font-size: 14px;
	font-style: normal;
	font-weight: 900;
	text-align: center;
}

.pcgh-shop-cart .pcgh-shop-cart-item__qty {
	grid-column: auto;
	justify-self: center;
	width: 114px;
}

.pcgh-shop-cart .pcgh-shop-cart-item > strong {
	grid-column: auto;
	color: var(--shop-accent);
	text-align: center;
}

.pcgh-shop-cart .pcgh-shop-cart-item__remove {
	grid-column: auto;
	grid-row: auto;
	justify-self: center;
	width: auto;
	height: 34px;
	padding: 0 10px;
	border-radius: 5px;
}

.pcgh-shop-checkout .pcgh-shop-checkout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 18px;
	align-items: start;
}

.pcgh-shop-checkout .pcgh-shop-checkout-product__info {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-width: 0;
}

.pcgh-shop-checkout .pcgh-shop-checkout-product__img {
	float: none;
	margin: 0;
}

.pcgh-shop-checkout .pcgh-shop-checkout-aside {
	position: sticky;
	top: 92px;
}

@media (max-width: 1180px) {
	.pcgh-shop-cart .pcgh-shop-cart-item {
		grid-template-columns: 46px minmax(220px, 1fr) 96px 116px 110px 68px;
	}
	.pcgh-shop-checkout .pcgh-shop-checkout-grid {
		grid-template-columns: 1fr;
	}
	.pcgh-shop-checkout .pcgh-shop-checkout-aside {
		position: static;
	}
}

@media (max-width: 820px) {
	.pcgh-shop-cart .pcgh-shop-cart-item {
		min-width: 760px;
	}
	.pcgh-shop-cart .pcgh-shop-cart-item__remove {
		width: auto;
	}
	.pcgh-shop-checkout .pcgh-shop-checkout-product__info {
		grid-template-columns: 64px minmax(0, 1fr);
	}
}
