:root {
	--gc-background: #fffaf7;
	--gc-card: #fffefd;
	--gc-secondary: #f9ecee;
	--gc-muted: #f4e4e4;
	--gc-accent: #f2c8d9;
	--gc-foreground: #3d292c;
	--gc-muted-foreground: #7e6669;
	--gc-primary: #e88eb7;
	--gc-pink: #e88eb7;
	--gc-primary-dark: #cf6f9a;
	--gc-add-to-cart: #f7acd0;
	--gc-hero: #f6dce3;
	--gc-border: #eddadd;
	--gc-success: #267a45;
	--gc-danger: #e93e48;
	--gc-radius: 16px;
	--gc-shadow: 0 12px 34px rgba(61, 41, 44, 0.1);
	--gc-container: 1480px;
	--gc-mobile-nav: 64px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.gc-site {
	margin: 0;
	background: var(--gc-background);
	color: var(--gc-foreground);
	font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.gc-site img {
	display: block;
	height: auto;
	max-width: 100%;
}

body.gc-site a {
	color: inherit;
	text-decoration: none;
}

body.gc-site button,
body.gc-site input,
body.gc-site select,
body.gc-site textarea {
	font: inherit;
}

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

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 99999;
	display: block;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--gc-card);
	color: var(--gc-foreground);
}

.gc-container {
	width: min(calc(100% - 48px), var(--gc-container));
	margin-inline: auto;
}

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

.gc-content-page {
	padding-block: clamp(40px, 7vw, 100px);
}

.gc-content-page h1 {
	margin-top: 0;
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.1;
}

.gc-icon {
	width: 22px;
	height: 22px;
}

.gc-eyebrow {
	margin: 0 0 6px;
	color: var(--gc-muted-foreground);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gc-announcement {
	position: relative;
	z-index: 100;
	display: flex;
	min-height: 46px;
	align-items: center;
	overflow: hidden;
	padding: 0 54px 0 0;
	background: var(--gc-foreground);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
}

.gc-announcement-track {
	display: flex;
	width: max-content;
	min-width: 100%;
	align-items: center;
	animation: gc-announcement-scroll 28s linear infinite;
}

.gc-announcement-message-group {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
}

.gc-announcement-message {
	display: inline-block;
	margin-right: clamp(64px, 8vw, 148px);
	padding-block: 10px;
}

.gc-announcement:hover .gc-announcement-track,
.gc-announcement:focus-within .gc-announcement-track { animation-play-state: paused; }

@keyframes gc-announcement-scroll {
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.gc-announcement { overflow-x: auto; }
	.gc-announcement-track { width: auto; min-width: max-content; animation: none; }
	.gc-announcement-message-group[aria-hidden="true"] { display: none; }
}

.gc-announcement button {
	position: absolute;
	right: 20px;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font-size: 24px;
	line-height: 1;
	opacity: 0.75;
}

.gc-header {
	position: sticky;
	top: 0;
	z-index: 90;
	border-bottom: 1px solid var(--gc-border);
	background: rgba(255, 250, 247, 0.96);
	backdrop-filter: blur(12px);
}

.gc-header-main {
	display: grid;
	width: min(calc(100% - 72px), 1820px);
	height: 78px;
	margin-inline: auto;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
}

.gc-header-search {
	max-width: 385px;
}

.gc-header-search-area {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 24px;
}

.gc-header-social {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 18px;
}

.gc-header-social a {
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	color: #7b7b7b;
	transition: color 0.2s ease, transform 0.2s ease;
}

.gc-header-social a:hover,
.gc-header-social a:focus-visible {
	color: var(--gc-primary-dark);
	transform: translateY(-1px);
}

.gc-header-social .gc-icon {
	width: 23px;
	height: 23px;
}

.gc-mobile-header-search {
	display: none;
}

.gc-header-search form,
.gc-mobile-search {
	display: flex;
	height: 48px;
	align-items: center;
	gap: 12px;
	padding-inline: 18px;
	border: 1px solid var(--gc-border);
	border-radius: 14px;
	background: var(--gc-card);
}

.gc-header-search input,
.gc-mobile-search input {
	width: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--gc-foreground);
}

.gc-header-search input::placeholder,
.gc-mobile-search input::placeholder {
	color: var(--gc-muted-foreground);
}

.gc-header-brand {
	justify-self: center;
}

.gc-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--gc-primary) !important;
	font-size: clamp(20px, 2vw, 25px);
	font-weight: 800;
	letter-spacing: -0.04em;
	white-space: nowrap;
}

.gc-brand img,
.custom-logo {
	width: auto;
	max-height: 42px;
}

.gc-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.gc-header-actions > a,
.gc-menu-toggle {
	position: relative;
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 24px;
	background: var(--gc-card);
	color: var(--gc-foreground);
	cursor: pointer;
	transition: background 0.2s ease;
}

.gc-header-actions > a:hover,
.gc-menu-toggle:hover {
	background: var(--gc-secondary);
	color: var(--gc-primary);
}

.gc-header-actions > .gc-signup-link {
	width: auto;
	height: 40px;
	padding: 0 18px;
	border: 1px solid var(--gc-border);
	border-radius: 999px;
	background: var(--gc-card);
	color: var(--gc-foreground);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.gc-header-actions > .gc-signup-link:hover {
	border-color: var(--gc-primary);
	background: var(--gc-primary);
	color: var(--gc-foreground);
}

.gc-cart-count {
	position: absolute;
	top: 1px;
	right: 0;
	display: flex;
	width: 19px;
	height: 19px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--gc-foreground);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
}

.gc-menu-toggle {
	display: none;
}

.gc-desktop-nav {
	display: flex;
	min-height: 58px;
	align-items: center;
	gap: 42px;
	padding-inline: 38px;
	border-top: 1px solid var(--gc-border);
	border-bottom: 1px solid var(--gc-border);
	background: var(--gc-background);
}

.gc-desktop-nav > a,
.gc-nav-item > a {
	display: flex;
	min-height: 58px;
	align-items: center;
	gap: 7px;
	color: var(--gc-muted-foreground);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

.gc-desktop-nav > .gc-desktop-nav-sale {
	color: var(--gc-primary);
	font-weight: 700;
}

.gc-desktop-nav > a:hover,
.gc-nav-item:hover > a,
.gc-desktop-nav > a:focus-visible,
.gc-nav-item:focus-within > a {
	color: var(--gc-primary);
}

.gc-home-banners {
	position: relative;
	overflow: hidden;
	background: #fffefd;
}

.gc-home-banner {
	position: relative;
	display: grid;
	min-height: clamp(340px, 29vw, 560px);
	place-items: center;
	padding: clamp(54px, 8vw, 120px) max(24px, calc((100vw - 1320px) / 2));
	background-color: #d8b3ba;
	background-image: linear-gradient(90deg, rgba(61, 41, 44, 0.28), rgba(61, 41, 44, 0.06)), var(--gc-banner-desktop);
	/* Keep the original artwork proportions; anchor branded copy at the top. */
	background-position: center top;
	background-size: cover;
	color: #fffefd;
	text-align: center;
}

.gc-home-banner-link {
	position: absolute;
	z-index: 1;
	inset: 0;
}

.gc-home-banner-link:focus-visible {
	outline: 3px solid #fffefd;
	outline-offset: -6px;
}

.gc-home-banner[hidden] {
	display: none;
}

.gc-home-banner-controls {
	position: absolute;
	z-index: 2;
	bottom: 22px;
	left: 50%;
	display: flex;
	align-items: center;
	gap: 12px;
	transform: translateX(-50%);
}

.gc-home-banner-dots button {
	border: 0;
	background: rgba(255, 254, 253, 0.94);
	color: var(--gc-foreground);
	cursor: pointer;
}

.gc-home-banner-dots {
	display: flex;
	gap: 8px;
}

.gc-home-banner-dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	border-radius: 50%;
	opacity: 0.55;
}

.gc-home-banner-dots button[aria-selected="true"] {
	opacity: 1;
	transform: scale(1.2);
}

.gc-home-banner-copy {
	position: relative;
	z-index: 2;
	max-width: 800px;
	pointer-events: none;
}

.gc-home-banner h2 {
	margin: 0;
	font-size: clamp(2.3rem, 5vw, 5.25rem);
	line-height: 1;
	letter-spacing: -0.055em;
}

.gc-home-banner p {
	max-width: 620px;
	margin: 22px auto 30px;
	font-size: clamp(1rem, 1.6vw, 1.3rem);
}

.gc-home-banner .gc-button {
	border-color: #fffefd;
	background: #fffefd;
	color: var(--gc-foreground);
}

@media (max-width: 640px) {
	.gc-home-banner {
		min-height: 0;
		aspect-ratio: 16 / 9;
		padding: 22px 16px 52px;
		background-image: linear-gradient(90deg, rgba(61, 41, 44, 0.32), rgba(61, 41, 44, 0.12)), var(--gc-banner-mobile);
	}

	.gc-home-banner h2 {
		font-size: clamp(1.35rem, 7vw, 2rem);
	}

	.gc-home-banner p {
		margin: 6px auto 10px;
		font-size: 0.75rem;
	}

	.gc-home-banner .gc-button {
		min-height: 34px;
		padding: 7px 14px;
		font-size: 0.75rem;
	}

	.gc-home-banner-controls {
		bottom: 10px;
		gap: 8px;
	}

}

.gc-nav-item {
	position: relative;
}

.gc-submenu {
	position: absolute;
	top: calc(100% - 1px);
	left: -18px;
	display: grid;
	min-width: 220px;
	padding: 12px;
	border: 1px solid var(--gc-border);
	border-radius: 0 0 14px 14px;
	background: var(--gc-card);
	box-shadow: var(--gc-shadow);
	opacity: 0;
	pointer-events: none;
	transform: translateY(7px);
	transition: 0.2s ease;
}

.gc-nav-item:hover .gc-submenu,
.gc-nav-item:focus-within .gc-submenu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.gc-submenu a {
	padding: 10px 12px;
	border-radius: 8px;
	color: var(--gc-foreground);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.gc-submenu a:hover {
	background: var(--gc-secondary);
	color: var(--gc-primary-dark);
}

.gc-mobile-menu {
	position: fixed;
	z-index: 100001;
	inset: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) min(100%, 420px);
	background: rgba(36, 31, 28, 0.48);
}

.gc-mobile-menu[hidden] {
	display: none;
}

.gc-mobile-menu-backdrop {
	border: 0;
	background: transparent;
	cursor: pointer;
}

.gc-mobile-menu-panel {
	display: flex;
	min-width: 0;
	flex-direction: column;
	background: var(--gc-card);
	box-shadow: -16px 0 44px rgba(0, 0, 0, 0.18);
	overflow-y: auto;
}

.gc-mobile-menu-promo {
	padding: 9px 18px;
	background: var(--gc-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	text-align: center;
}

.gc-mobile-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border-bottom: 1px solid var(--gc-border);
}

.gc-menu-close {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: var(--gc-secondary);
	cursor: pointer;
}

.gc-mobile-search {
	margin: 16px 20px;
	padding: 0;
	border: 1px solid var(--gc-border);
	border-radius: 10px;
	background: var(--gc-background);
}

.gc-mobile-search input {
	min-width: 0;
	height: 44px;
	border: 0;
	background: transparent;
}

.gc-mobile-menu-nav {
	border-top: 1px solid var(--gc-border);
}

.gc-mobile-menu-nav a {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr) 20px;
	gap: 12px;
	align-items: center;
	min-height: 52px;
	padding: 12px 20px;
	border-bottom: 1px solid var(--gc-border);
	color: var(--gc-primary-dark);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.gc-mobile-menu-nav a .gc-icon:first-child {
	width: 18px;
	height: 18px;
	color: var(--gc-muted-foreground);
}

.gc-mobile-menu-nav a .gc-icon:last-child {
	width: 16px;
	height: 16px;
	justify-self: end;
}

.gc-mobile-menu-nav .gc-mobile-menu-home {
	grid-template-columns: 24px minmax(0, 1fr);
}

.gc-mobile-account-link {
	display: block;
	margin: auto 20px 20px;
	padding: 13px 18px;
	border: 1px solid var(--gc-primary);
	border-radius: 999px;
	color: var(--gc-primary-dark);
	font-size: 14px;
	font-weight: 800;
	text-align: center;
}

body.gc-menu-open {
	overflow: hidden;
}

/* Home */
.gc-home-hero {
	padding-block: clamp(32px, 5vw, 72px);
	border-bottom: 1px solid var(--gc-border);
	background: linear-gradient(125deg, var(--gc-background) 0%, var(--gc-background) 42%, var(--gc-hero) 100%);
}

.gc-home-hero-inner {
	display: grid;
	grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.5fr);
	align-items: center;
	gap: clamp(44px, 7vw, 100px);
}

.gc-home-hero-media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 1px solid var(--gc-border);
	border-radius: 28px;
	background: #fdf1f3;
	box-shadow: 0 18px 45px rgba(83, 49, 55, 0.09);
}

.gc-home-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.gc-home-hero-copy h1 {
	max-width: 820px;
	margin: 20px 0;
	font-size: clamp(2.8rem, 5.4vw, 5.4rem);
	line-height: 1.03;
	letter-spacing: -0.045em;
}

.gc-home-hero-copy > p:not(.gc-eyebrow) {
	max-width: 760px;
	margin: 0;
	color: rgba(36, 31, 28, 0.76);
	font-size: clamp(18px, 2vw, 25px);
	line-height: 1.45;
}

.gc-button,
body.gc-site .button,
body.gc-site button.button,
body.gc-site input.button,
body.gc-site #respond input#submit {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 13px 28px;
	border: 1px solid var(--gc-primary);
	border-radius: 999px;
	background: var(--gc-primary);
	color: var(--gc-foreground);
	cursor: pointer;
	font-weight: 700;
	line-height: 1.2;
	transition: 0.2s ease;
}

.gc-button:hover,
body.gc-site .button:hover,
body.gc-site button.button:hover,
body.gc-site input.button:hover {
	border-color: var(--gc-primary);
	background: var(--gc-primary);
	color: var(--gc-foreground);
	transform: translateY(-1px);
}

.gc-home-hero .gc-button {
	margin-top: 36px;
	border-color: var(--gc-primary);
	background: var(--gc-primary);
}

.gc-home-section {
	padding-block: clamp(32px, 5vw, 72px);
}

.gc-home-featured {
	padding-block: clamp(32px, 5vw, 72px);
	background: #fffefd;
}

.gc-feature-cards {
	display: grid;
	gap: clamp(10px, 1.2vw, 18px);
}

.gc-feature-card-row {
	display: grid;
	grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
	gap: clamp(10px, 1.2vw, 18px);
}

.gc-feature-card-row--2 {
	grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
}

.gc-feature-card {
	display: flex;
	min-height: clamp(490px, 45vw, 800px);
	align-items: flex-end;
	overflow: hidden;
	border-radius: 28px;
	background-image: linear-gradient(0deg, rgba(20, 16, 14, 0.74), rgba(20, 16, 14, 0.04) 65%), var(--gc-feature-card-image);
	background-position: center;
	background-size: cover;
	color: #fff;
}

.gc-feature-card-content { width: 100%; padding: clamp(28px, 3.5vw, 58px); }
.gc-feature-card-eyebrow { margin: 0 0 14px; font-size: 14px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.gc-feature-card h2 { max-width: 640px; margin: 0; font-size: clamp(2rem, 3.5vw, 4rem); font-weight: 500; line-height: 1.04; letter-spacing: -0.045em; }
.gc-feature-card-description { max-width: 620px; margin: 18px 0 0; font-size: clamp(16px, 1.3vw, 21px); line-height: 1.45; }
.gc-feature-card-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.gc-feature-card-tags span { padding: 9px 15px; border: 1px solid rgba(255, 255, 255, 0.55); border-radius: 999px; font-size: 14px; font-weight: 700; }
.gc-feature-card-arrow { display: inline-flex; width: 66px; height: 66px; align-items: center; justify-content: center; margin-top: 28px; border-radius: 50%; font-size: 30px; line-height: 1; transition: transform 0.2s ease; }
.gc-feature-card-arrow:hover { transform: translateX(4px); }
.gc-feature-card-arrow--light { background: #fff; color: var(--gc-foreground); }
.gc-feature-card-arrow--pink { background: var(--gc-primary); color: var(--gc-foreground); }

@media (max-width: 767px) {
	.gc-feature-cards {
		display: flex;
		gap: 14px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.gc-feature-cards::-webkit-scrollbar { display: none; }
	.gc-feature-card-row { display: contents; }
	.gc-feature-card { height: 330px; min-height: 330px; flex: 0 0 82vw; border-radius: 22px; scroll-snap-align: start; }
	.gc-feature-card-content { padding: 28px 24px; }
	.gc-feature-card-tags { gap: 8px; margin-top: 18px; }
	.gc-feature-card-tags span { padding: 7px 11px; font-size: 12px; }
	.gc-feature-card-arrow { width: 54px; height: 54px; margin-top: 22px; font-size: 25px; }
}

.gc-home-section h2 {
	margin: 0;
	font-size: clamp(1.8rem, 4vw, 3rem);
	line-height: 1.15;
	letter-spacing: -0.04em;
}

.gc-home-categories {
	display: flex;
	margin-top: 34px;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.gc-home-categories::-webkit-scrollbar {
	display: none;
}

.gc-home-category {
	position: relative;
	display: block;
	flex: 0 0 calc((100% - 48px) / 3);
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 50%;
	background: #fdf3f4;
	box-shadow: 0 12px 28px rgba(83, 49, 55, 0.08);
	scroll-snap-align: start;
}

.gc-home-category img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.45s ease;
}

.gc-home-category::after {
	position: absolute;
	inset: 30% 0 0;
	background: linear-gradient(transparent, rgba(61, 41, 44, 0.58));
	content: "";
}

.gc-home-category strong {
	position: absolute;
	z-index: 1;
	right: 24px;
	bottom: 22px;
	left: 24px;
	color: #fffefd;
	font-size: clamp(20px, 2vw, 30px);
}

.gc-home-category:hover img {
	transform: scale(1.04);
}

.gc-editorial {
	display: grid;
	min-height: 520px;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	border-radius: 28px;
	background: #f9ecee;
}

.gc-editorial-copy {
	display: flex;
	max-width: 820px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(42px, 7vw, 90px);
}

.gc-editorial-copy h2 {
	margin: 0 0 24px;
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.12;
	letter-spacing: -0.045em;
}

.gc-editorial-copy p {
	margin: 0;
	color: var(--gc-muted-foreground);
	font-size: clamp(17px, 2vw, 23px);
}

.gc-editorial-copy .gc-button {
	margin-top: 34px;
	border-color: var(--gc-primary);
	background: var(--gc-primary);
}

.gc-editorial-media {
	overflow: hidden;
	background: #fff6f4;
}

.gc-editorial-media img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
}

.gc-values {
	display: grid;
	margin-top: 34px;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.gc-value {
	padding: 28px;
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius);
	background: var(--gc-card);
	box-shadow: 0 10px 26px rgba(83, 49, 55, 0.05);
	text-align: center;
}

.gc-value h3 {
	margin: 0 0 8px;
	font-size: 18px;
}

.gc-value p {
	margin: 0;
	color: var(--gc-muted-foreground);
	font-size: 14px;
}

/* Shop */
.gc-commerce-main {
	width: 100%;
}

.gc-shop-hero {
	position: relative;
	display: flex;
	height: clamp(260px, 24vw, 420px);
	align-items: center;
	isolation: isolate;
	overflow: hidden;
	padding-block: 0;
	border-bottom: 1px solid var(--gc-border);
	background-color: #f9ecee;
	background-image: var(--gc-shop-banner-image, linear-gradient(120deg, #fffaf7 0%, #f9ecee 58%, #f6dce3 100%));
	background-position: center;
	background-size: cover;
	color: #fff;
	text-shadow: 0 2px 18px rgba(61, 41, 44, 0.46);
}

.gc-shop-hero::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: rgba(61, 41, 44, var(--gc-shop-banner-overlay, 0.35));
	content: "";
}

.gc-shop-hero .gc-container {
	position: relative;
	z-index: 1;
}

.woocommerce .woocommerce-breadcrumb {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 13px;
}

.gc-shop-hero h1 {
	margin: 0;
	color: var(--gc-shop-banner-heading-color, #fffefd);
	font-size: clamp(2.2rem, 5vw, 4rem);
	line-height: 1.1;
	letter-spacing: -0.05em;
}

.gc-shop-hero p {
	max-width: 580px;
	margin: 16px 0 0;
	color: var(--gc-shop-banner-description-color, #fffefd);
	font-size: 18px;
}

.gc-category-strip {
	padding-block: 18px 22px;
	background: var(--gc-background);
}

.gc-category-circles {
	display: flex;
	max-width: none;
	gap: clamp(24px, 4vw, 72px);
	margin-top: 22px;
	padding-bottom: 8px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.gc-category-circles::-webkit-scrollbar {
	display: none;
}

.gc-category-circle {
	width: clamp(190px, 17vw, 320px);
	flex: 0 0 clamp(190px, 17vw, 320px);
	min-width: 0;
	scroll-snap-align: start;
	text-align: center;
}

.gc-category-circle-image {
	display: block;
	width: 100%;
	margin-inline: auto;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 50%;
	background: #e2dddd;
	box-shadow: 0 9px 22px rgba(83, 49, 55, 0.08);
	transition: 0.25s ease;
}

.gc-category-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.gc-category-circle strong {
	display: block;
	margin-top: 18px;
	font-size: clamp(16px, 1.25vw, 21px);
	color: var(--gc-foreground);
}

.gc-category-circle:hover .gc-category-circle-image {
	transform: translateY(-3px);
}

.gc-category-circle:hover img {
	transform: scale(1.05);
}

.gc-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 20px;
	border-top: 1px solid var(--gc-border);
	border-bottom: 1px solid var(--gc-border);
	background: rgba(255, 254, 253, 0.72);
}

.gc-filter-toggle,
.gc-shop-toolbar .woocommerce-ordering select {
	height: 44px;
	padding: 0 18px;
	border: 1px solid var(--gc-border);
	border-radius: 999px;
	background: #fffefd;
	color: var(--gc-foreground);
	cursor: pointer;
}

.gc-shop-toolbar .woocommerce-ordering {
	float: none;
	margin: 0;
}

.gc-filter-panel {
	position: fixed;
	z-index: 200;
	inset: 0;
	background: rgba(36, 31, 28, 0.42);
}

.gc-filter-panel-inner {
	width: min(90vw, 390px);
	height: 100%;
	padding: 30px;
	background: var(--gc-card);
	overflow-y: auto;
}

.gc-filter-close {
	float: right;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-weight: 700;
}

.gc-filter-widget.widget_product_categories .gc-filter-title {
	color: var(--gc-pink);
}

.gc-price-band-filter {
	clear: both;
	margin-top: 34px;
}

.gc-price-band-filter fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

.gc-price-band-filter label {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 17px 0;
	cursor: pointer;
}

.gc-price-band-filter input[type="checkbox"] {
	width: 27px;
	height: 27px;
	margin: 0;
	accent-color: var(--gc-pink);
}

.gc-price-band-filter-range {
	margin: 28px 0 0;
	padding-top: 20px;
	border-top: 3px solid #171717;
	font-size: 17px;
	font-weight: 500;
}

.price_slider_wrapper .ui-slider {
	position: relative;
	height: 3px;
	margin: 30px 4px 24px;
	border: 0;
	border-radius: 0;
	background: #171717;
}

.price_slider_wrapper .ui-slider-range {
	position: absolute;
	z-index: 1;
	display: block;
	height: 100%;
	border: 0;
	border-radius: inherit;
	background: var(--gc-pink) !important;
	transition: left 120ms ease, width 120ms ease;
}

.price_slider_wrapper .ui-slider-handle {
	position: absolute;
	z-index: 2;
	top: 50%;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	border: 2px solid #171717;
	border-radius: 50%;
	background: var(--gc-card);
	cursor: grab;
	transition: border-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

.price_slider_wrapper .ui-slider-handle.ui-state-active {
	border-color: var(--gc-pink) !important;
	box-shadow: 0 0 0 4px rgba(232, 139, 183, 0.22) !important;
	transform: scale(1.08);
	cursor: grabbing;
}

.price_slider_wrapper .ui-slider-handle:active {
	border-color: var(--gc-pink) !important;
	box-shadow: 0 0 0 4px rgba(232, 139, 183, 0.22) !important;
	cursor: grabbing;
}

.price_slider_wrapper .price_label {
	margin-top: 0;
	font-size: 17px;
	font-weight: 500;
}

body.home .woocommerce .products,
body.home .woocommerce ul.products,
body.post-type-archive-product .woocommerce .products,
body.post-type-archive-product .woocommerce ul.products,
body.tax-product_cat .woocommerce .products,
body.tax-product_cat .woocommerce ul.products,
body.tax-product_tag .woocommerce .products,
body.tax-product_tag .woocommerce ul.products {
	display: grid;
	width: min(calc(100% - 48px), var(--gc-container));
	margin: 36px auto 80px !important;
	padding: 0;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px 24px;
}

body.home .woocommerce ul.products::before,
body.home .woocommerce ul.products::after,
body.post-type-archive-product .woocommerce ul.products::before,
body.post-type-archive-product .woocommerce ul.products::after,
body.tax-product_cat .woocommerce ul.products::before,
body.tax-product_cat .woocommerce ul.products::after,
body.tax-product_tag .woocommerce ul.products::before,
body.tax-product_tag .woocommerce ul.products::after,
body.woocommerce-cart .woocommerce ul.products::before,
body.woocommerce-cart .woocommerce ul.products::after {
	display: none;
}

/* Keep homepage product cards compact, matching the four-card storefront layout. */
body.home .woocommerce .products,
body.home .woocommerce ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

body.home .woocommerce ul.products li.product {
	min-height: 0;
}

body.home .woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 1;
}

body.home .woocommerce ul.products li.product,
body.post-type-archive-product .woocommerce ul.products li.product,
body.tax-product_cat .woocommerce ul.products li.product,
body.tax-product_tag .woocommerce ul.products li.product,
body.woocommerce-cart .woocommerce ul.products li.product {
	position: relative;
	width: auto !important;
	margin: 0 !important;
	padding: 0 0 22px;
	border: 1px solid var(--gc-border);
	border-radius: 22px;
	background: var(--gc-card);
	box-shadow: 0 12px 30px rgba(83, 49, 55, 0.08);
	overflow: hidden;
}

body.home .woocommerce ul.products li.product > a.woocommerce-LoopProduct-link,
body.post-type-archive-product .woocommerce ul.products li.product > a.woocommerce-LoopProduct-link,
body.tax-product_cat .woocommerce ul.products li.product > a.woocommerce-LoopProduct-link,
body.tax-product_tag .woocommerce ul.products li.product > a.woocommerce-LoopProduct-link,
body.woocommerce-cart .woocommerce ul.products li.product > a.woocommerce-LoopProduct-link {
	display: block;
}

body.home .woocommerce ul.products li.product a img,
body.post-type-archive-product .woocommerce ul.products li.product a img,
body.tax-product_cat .woocommerce ul.products li.product a img,
body.tax-product_tag .woocommerce ul.products li.product a img,
body.woocommerce-cart .woocommerce ul.products li.product a img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1.15;
	margin: 0 0 22px !important;
	background: #fff6f4;
	object-fit: contain;
	transition: transform 0.45s ease;
}

body.home .woocommerce ul.products li.product:hover a img,
body.post-type-archive-product .woocommerce ul.products li.product:hover a img,
body.tax-product_cat .woocommerce ul.products li.product:hover a img,
body.tax-product_tag .woocommerce ul.products li.product:hover a img,
body.woocommerce-cart .woocommerce ul.products li.product:hover a img {
	transform: scale(1.02);
}

body.home .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.tax-product_tag .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce-cart .woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding: 0 24px !important;
	color: var(--gc-foreground);
	font-size: clamp(17px, 1.7vw, 24px) !important;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
}

body.home .woocommerce ul.products li.product .price,
body.post-type-archive-product .woocommerce ul.products li.product .price,
body.tax-product_cat .woocommerce ul.products li.product .price,
body.tax-product_tag .woocommerce ul.products li.product .price,
body.woocommerce-cart .woocommerce ul.products li.product .price {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 8px 24px 0 !important;
	color: var(--gc-foreground) !important;
	font-size: clamp(18px, 2vw, 26px) !important;
	font-weight: 800 !important;
}

body.home .woocommerce ul.products li.product .price del,
body.post-type-archive-product .woocommerce ul.products li.product .price del,
body.tax-product_cat .woocommerce ul.products li.product .price del,
body.tax-product_tag .woocommerce ul.products li.product .price del,
body.woocommerce-cart .woocommerce ul.products li.product .price del {
	color: var(--gc-muted-foreground);
	font-size: 14px;
	opacity: 1;
}

body.home .woocommerce ul.products li.product .price ins,
body.post-type-archive-product .woocommerce ul.products li.product .price ins,
body.tax-product_cat .woocommerce ul.products li.product .price ins,
body.tax-product_tag .woocommerce ul.products li.product .price ins,
body.woocommerce-cart .woocommerce ul.products li.product .price ins {
	text-decoration: none;
}

body.home .woocommerce ul.products li.product .button,
body.post-type-archive-product .woocommerce ul.products li.product .button,
body.tax-product_cat .woocommerce ul.products li.product .button,
body.tax-product_tag .woocommerce ul.products li.product .button,
body.woocommerce-cart .woocommerce ul.products li.product .button {
	display: flex;
	width: calc(100% - 48px);
	margin: 18px 24px 0;
	border-color: var(--gc-primary);
	background: var(--gc-primary);
	color: var(--gc-foreground);
}

body.home .woocommerce span.onsale,
body.post-type-archive-product .woocommerce span.onsale,
body.tax-product_cat .woocommerce span.onsale,
body.tax-product_tag .woocommerce span.onsale,
body.woocommerce-cart .woocommerce span.onsale {
	top: 14px;
	right: auto;
	left: 14px;
	z-index: 4;
	min-width: 0;
	min-height: 0;
	padding: 7px 12px;
	border-radius: 999px;
	border: 1px solid var(--gc-primary-dark);
	background: var(--gc-primary);
	color: var(--gc-foreground);
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
}

.gc-configure {
	position: absolute;
	z-index: 5;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--gc-foreground);
	color: #fff !important;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 7px 22px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transform: translateY(5px);
	transition: 0.2s ease;
}

.woocommerce ul.products li.product:hover .gc-configure,
.gc-configure:focus {
	opacity: 1;
	transform: translateY(0);
}

.woocommerce nav.woocommerce-pagination {
	margin: -40px 0 75px;
}

.woocommerce nav.woocommerce-pagination ul {
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	margin: 3px;
	border: 1px solid var(--gc-border);
	border-radius: 50%;
	background: var(--gc-card);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
	border-color: var(--gc-foreground);
	background: var(--gc-foreground);
	color: #fff;
}

/* Product detail */
.single-product .gc-commerce-main {
	width: min(calc(100% - 48px), var(--gc-container));
	margin: 0 auto;
	padding-block: 42px 90px;
}

.single-product .woocommerce-breadcrumb {
	margin-bottom: 28px;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.95fr);
	align-items: start;
	gap: clamp(36px, 5vw, 72px);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: 100%;
	margin: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	padding: clamp(14px, 2vw, 28px);
	border: 1px solid var(--gc-border);
	overflow: hidden;
	border-radius: 22px;
	background: linear-gradient(145deg, var(--gc-card), var(--gc-secondary));
}

.woocommerce div.product div.images .woocommerce-product-gallery__image a {
	display: block;
	aspect-ratio: 1 / 1.05;
}

.woocommerce div.product div.images img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.woocommerce div.product div.images .flex-control-thumbs {
	display: flex;
	gap: 12px;
	margin-top: 14px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
	width: 84px;
	border: 2px solid transparent;
	border-radius: 12px;
	background: var(--gc-card);
	overflow: hidden;
}

.woocommerce div.product div.images .flex-control-thumbs li:has(img.flex-active) {
	border-color: var(--gc-primary);
}

.woocommerce div.product div.summary {
	padding-top: clamp(12px, 2vw, 28px);
}

.woocommerce div.product .product_title {
	margin: 0 0 18px;
	font-size: clamp(2.35rem, 4vw, 4.6rem);
	line-height: 1.02;
	letter-spacing: -0.055em;
}

.woocommerce div.product .woocommerce-product-rating {
	margin-bottom: 22px;
}

.woocommerce .star-rating span::before,
.woocommerce p.stars a {
	color: #ff9800;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin: 0 0 24px;
	color: var(--gc-foreground);
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	font-weight: 800;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	color: var(--gc-muted-foreground);
	font-size: 18px;
	opacity: 1;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
	text-decoration: none;
}

.woocommerce div.product form.cart,
.woocommerce div.product form.variations_form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 28px 0;
	padding: 26px;
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius);
	background: var(--gc-card);
	box-shadow: 0 7px 24px rgba(65, 46, 36, 0.05);
}

.woocommerce div.product form.cart .variations {
	width: 100%;
	margin-bottom: 12px;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
	display: block;
	padding: 4px 0;
	text-align: left;
}

.woocommerce div.product form.cart .variations label {
	font-size: 14px;
	font-weight: 800;
}

.woocommerce div.product form.cart .variations select {
	width: 100%;
	height: 48px;
	padding-inline: 14px;
	border: 1px solid var(--gc-border);
	border-radius: 10px;
	background: var(--gc-background);
}

.woocommerce div.product form.cart .variations select[name^="attribute_"] {
	position: absolute;
	width: 1px;
	min-width: 0;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.gc-variation-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 8px 0 14px;
}

.gc-variation-pill {
	min-width: 64px;
	padding: 10px 14px;
	border: 1px solid var(--gc-border);
	border-radius: 999px;
	background: var(--gc-card);
	color: var(--gc-foreground);
	cursor: pointer;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.gc-variation-pill:hover,
.gc-variation-pill.is-selected {
	border-color: var(--gc-primary);
	background: var(--gc-primary);
	color: var(--gc-foreground);
}

.gc-variation-pill:disabled {
	border-color: var(--gc-border);
	background: var(--gc-secondary);
	color: var(--gc-muted-foreground);
	cursor: not-allowed;
	opacity: 0.5;
}

/* Product-page purchase controls: circular swatches and stacked checkout actions. */
.single-product .woocommerce div.product form.cart .variations {
	margin-bottom: 22px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--gc-border);
}

.single-product .gc-variation-pills {
	gap: 14px;
	margin-top: 14px;
}

.single-product .gc-variation-pill {
	display: inline-flex;
	width: 76px;
	min-width: 76px;
	height: 76px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border-radius: 50%;
	font-size: 18px;
	letter-spacing: 0;
}

.single-product .gc-variation-pill.is-selected {
	border-color: var(--gc-add-to-cart);
	background: var(--gc-add-to-cart) !important;
	color: #fff;
}

.single-product .gc-variation-pill:disabled {
	position: relative;
	background: var(--gc-card);
	color: var(--gc-muted-foreground);
	opacity: 1;
}

.single-product .gc-variation-pill:disabled::after {
	position: absolute;
	width: 92%;
	border-top: 1px solid currentColor;
	content: "";
	transform: rotate(-35deg);
}

.woocommerce ul.products li.product .gc-loop-variation-form {
	display: grid;
	gap: 8px;
	margin: 14px 14px 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.gc-loop-variation-form select[name^="attribute_"] {
	position: absolute;
	width: 1px;
	height: 1px;
	min-width: 0;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.woocommerce ul.products li.product .gc-loop-variation-attribute label {
	display: block;
	font-size: 12px;
	font-weight: 800;
}

.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills {
	gap: 6px;
	margin: 6px 0 0;
}

.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill {
	min-width: 48px;
	padding: 7px 10px;
	font-size: 11px;
}

.woocommerce ul.products li.product .gc-loop-variation-form .single_add_to_cart_button {
	width: 100%;
	margin-top: 4px;
	border-color: var(--gc-add-to-cart);
	background: var(--gc-add-to-cart) !important;
	color: var(--gc-foreground);
}

/* Global product-card alignment for home, archive, taxonomy and recommendation grids. */
.woocommerce ul.products li.product {
	display: flex;
	min-height: 560px;
	flex-direction: column;
}

.woocommerce ul.products li.product > .woocommerce-LoopProduct-link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	display: -webkit-box;
	min-height: 2.5em;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.woocommerce ul.products li.product .price {
	min-height: 1.6em;
}

.woocommerce ul.products li.product .gc-loop-variation-form {
	min-height: 94px;
	margin-top: auto;
}

.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills {
	min-height: 38px;
	align-items: center;
	justify-content: center;
}

.woocommerce ul.products li.product > .button {
	margin-top: auto;
}

.woocommerce div.product form.cart div.quantity {
	margin: 0;
}

.woocommerce .quantity .qty {
	width: 76px;
	height: 54px;
	border: 1px solid var(--gc-border);
	border-radius: 12px;
	background: var(--gc-background);
}

.woocommerce div.product form.cart .button {
	height: 54px;
	flex: 1;
	border-radius: 12px;
}

.woocommerce div.product form.cart .gc-buy-now {
	width: 100%;
	flex-basis: 100%;
	border-color: var(--gc-border);
	background: var(--gc-background);
	color: var(--gc-foreground);
}

.woocommerce div.product form.cart .gc-buy-now:hover {
	border-color: var(--gc-foreground);
	background: var(--gc-secondary);
	color: var(--gc-foreground);
}

.single-product .gc-quantity-stepper {
	display: grid;
	width: 154px;
	height: 54px;
	grid-template-columns: 42px minmax(0, 1fr) 42px;
	align-items: center;
	border: 1px solid var(--gc-border);
	border-radius: 999px;
	background: var(--gc-card);
	overflow: hidden;
}

.single-product .gc-quantity-stepper button {
	width: 42px;
	height: 52px;
	border: 0;
	background: transparent;
	color: var(--gc-primary-dark);
	cursor: pointer;
	font-size: 21px;
	line-height: 1;
}

.single-product .gc-quantity-stepper button:hover,
.single-product .gc-quantity-stepper button:focus-visible {
	background: var(--gc-secondary);
	outline: 0;
}

.single-product .gc-quantity-stepper .qty {
	width: 100%;
	height: 52px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	font-weight: 800;
	text-align: center;
	-moz-appearance: textfield;
}

.single-product .gc-quantity-stepper .qty::-webkit-inner-spin-button,
.single-product .gc-quantity-stepper .qty::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.single-product .woocommerce div.product form.cart div.quantity {
	flex: 0 0 154px;
}

.single-product .woocommerce div.product form.cart > .single_add_to_cart_button {
	min-width: 0;
	flex: 1 1 240px;
	height: 58px;
	position: relative;
	border-radius: 999px;
	border-color: var(--gc-add-to-cart);
	background: var(--gc-add-to-cart) !important;
	color: #fff;
}

.single-product .woocommerce div.product form.cart > .single_add_to_cart_button::before {
	width: 14px;
	height: 14px;
	margin-right: 9px;
	border: 1.7px solid currentColor;
	border-radius: 2px;
	content: "";
}

.single-product .woocommerce div.product form.cart > .single_add_to_cart_button::after {
	position: absolute;
	top: 14px;
	left: calc(50% - 51px);
	width: 8px;
	height: 6px;
	border: 1.7px solid currentColor;
	border-bottom: 0;
	border-radius: 5px 5px 0 0;
	content: "";
}

.single-product .woocommerce div.product form.cart > .single_add_to_cart_button:hover,
.single-product .woocommerce div.product form.cart > .single_add_to_cart_button:focus-visible {
	border-color: var(--gc-primary-dark);
	background: var(--gc-primary-dark);
	color: #fff;
}

.single-product .woocommerce div.product form.cart .gc-buy-now {
	width: 100%;
	flex-basis: 100%;
	order: 3;
	border-color: var(--gc-primary);
	border-radius: 999px;
	background: var(--gc-foreground);
	color: #fff;
}

.single-product .woocommerce div.product form.cart .gc-buy-now:hover,
.single-product .woocommerce div.product form.cart .gc-buy-now:focus-visible {
	border-color: var(--gc-foreground);
	background: var(--gc-secondary);
	color: var(--gc-foreground);
	outline: 0;
}

.single-product .woocommerce div.product form.variations_form .single_variation_wrap {
	width: 100%;
}

.single-product .woocommerce div.product form.variations_form .variations_button {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	gap: 12px;
}

.single-product .woocommerce div.product form.variations_form .variations_button .quantity {
	flex: 0 0 154px;
}

.single-product .woocommerce div.product form.variations_form .variations_button .single_add_to_cart_button {
	min-width: 0;
	flex: 1 1 240px;
	height: 58px;
	border-color: var(--gc-add-to-cart);
	border-radius: 999px;
	background: var(--gc-add-to-cart) !important;
	color: #fff;
}

.single-product .woocommerce div.product form.variations_form .variations_button .gc-buy-now {
	width: 100%;
	flex-basis: 100%;
	order: 3;
	border-color: var(--gc-primary);
	border-radius: 999px;
	background: var(--gc-foreground);
	color: #fff;
}

.woocommerce div.product .woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 40px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	border-bottom-color: var(--gc-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border: 0;
	background: transparent;
}

.woocommerce div.product .woocommerce-tabs .panel {
	max-width: 850px;
}

.woocommerce .related.products,
.woocommerce .upsells.products {
	display: block;
	width: 100%;
	margin: 70px 0 0 !important;
	padding: 0;
	grid-column: 1 / -1;
}

.woocommerce .related.products > h2,
.woocommerce .upsells.products > h2 {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 2.7rem);
	letter-spacing: -0.04em;
}

.woocommerce .related.products ul.products,
.woocommerce .upsells.products ul.products {
	width: 100%;
	margin: 30px 0 0 !important;
}

.woocommerce .related.products ul.products.gc-related-carousel-track,
.woocommerce .upsells.products ul.products.gc-related-carousel-track {
	display: flex;
	gap: 24px;
	padding-bottom: 10px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.woocommerce .related.products ul.products.gc-related-carousel-track::-webkit-scrollbar,
.woocommerce .upsells.products ul.products.gc-related-carousel-track::-webkit-scrollbar {
	display: none;
}

.woocommerce .related.products ul.products.gc-related-carousel-track li.product,
.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product {
	width: 400px !important;
	min-height: 660px;
	flex: 0 0 400px;
	padding-bottom: 22px;
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius);
	background: var(--gc-card);
	box-shadow: 0 12px 30px rgba(83, 49, 55, 0.08);
	overflow: hidden;
	scroll-snap-align: start;
}

.woocommerce .related.products ul.products.gc-related-carousel-track li.product a img,
.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product a img {
	width: 100%;
	height: 360px;
	aspect-ratio: auto;
	margin: 0 0 22px !important;
	background: var(--gc-secondary);
	object-fit: contain;
}

.woocommerce .related.products ul.products.gc-related-carousel-track li.product .woocommerce-loop-product__title,
.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .woocommerce-loop-product__title,
.woocommerce .related.products ul.products.gc-related-carousel-track li.product .price,
.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .price {
	display: block;
	margin-inline: 20px !important;
	color: var(--gc-foreground);
	text-align: center;
}

.woocommerce .related.products ul.products.gc-related-carousel-track li.product .woocommerce-loop-product__title,
.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .woocommerce-loop-product__title {
	font-size: 17px;
	line-height: 1.3;
}

.woocommerce .related.products ul.products.gc-related-carousel-track li.product .button,
.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .button {
	display: flex;
	width: calc(100% - 40px);
	margin: 18px 20px 0;
	border-color: var(--gc-add-to-cart);
	background: var(--gc-add-to-cart);
	color: #fff;
}

.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form,
.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form {
	min-height: 118px;
	margin: auto 20px 0;
}


/* Cart, checkout and account */
.woocommerce-cart .gc-commerce-main,
.woocommerce-checkout .gc-commerce-main,
.woocommerce-account .gc-commerce-main {
	width: min(calc(100% - 48px), 1200px);
	margin-inline: auto;
	padding-block: 52px 90px;
}

.woocommerce table.shop_table {
	border-color: var(--gc-border);
	border-radius: var(--gc-radius);
	background: var(--gc-card);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 16px;
	border-color: var(--gc-border);
}

.woocommerce-cart table.cart img {
	width: 88px;
	border-radius: 10px;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review {
	padding: 24px;
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius);
	background: var(--gc-card);
}

.woocommerce-cart .wc-proceed-to-checkout > .checkout-button {
	border-color: var(--gc-primary);
	background: var(--gc-primary);
	color: var(--gc-foreground);
}

.woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button {
	border-color: var(--gc-primary) !important;
	background: var(--gc-primary) !important;
	color: var(--gc-foreground) !important;
}

.woocommerce-cart .wc-proceed-to-checkout > .checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout > .checkout-button:focus-visible {
	border-color: var(--gc-primary-dark);
	background: var(--gc-primary-dark);
	color: var(--gc-foreground);
}

.woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button:hover,
.woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button:focus-visible {
	border-color: var(--gc-primary-dark) !important;
	background: var(--gc-primary-dark) !important;
	color: var(--gc-foreground) !important;
}

.woocommerce-checkout #payment {
	background: var(--gc-secondary);
}

/* Checkout layout */
.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
	gap: 30px 42px;
	align-items: start;
}

.woocommerce-checkout #customer_details {
	grid-column: 1;
	width: 100%;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
	float: none;
	width: 100%;
}

.woocommerce-checkout #customer_details .col-2 {
	margin-top: 28px;
}

.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #order_review_heading {
	margin: 0 0 18px;
	color: var(--gc-foreground);
	font-size: 22px;
	letter-spacing: -0.03em;
}

.woocommerce-checkout #customer_details .form-row {
	margin-bottom: 16px;
}

.woocommerce-checkout #customer_details label {
	margin-bottom: 7px;
	color: var(--gc-foreground);
	font-size: 13px;
	font-weight: 800;
}

.woocommerce-checkout #customer_details input.input-text,
.woocommerce-checkout #customer_details select,
.woocommerce-checkout #customer_details textarea {
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--gc-border);
	border-radius: 10px;
	background: var(--gc-card);
	box-shadow: none;
}

.woocommerce-checkout #customer_details textarea {
	min-height: 110px;
}

.woocommerce-checkout #order_review_heading {
	grid-column: 2;
	margin-bottom: -16px;
}

.woocommerce-checkout #order_review {
	grid-column: 2;
	position: sticky;
	top: 110px;
	padding: 24px;
	border: 1px solid var(--gc-border);
	border-radius: 16px;
	background: var(--gc-card);
	box-shadow: var(--gc-shadow);
}

.woocommerce-checkout #order_review .shop_table {
	margin: 0 0 18px;
	border: 0;
	border-radius: 0;
}

.woocommerce-checkout #order_review .shop_table th,
.woocommerce-checkout #order_review .shop_table td {
	padding: 12px 0;
}

.woocommerce-checkout #payment {
	margin: 0 -24px -24px;
	padding: 20px 24px 24px;
	border-radius: 0 0 16px 16px;
}

.woocommerce-checkout #payment ul.payment_methods {
	border-bottom: 1px solid var(--gc-border);
}

.woocommerce-checkout #payment .payment_box {
	border-radius: 10px;
	background: var(--gc-card);
}

.woocommerce-checkout #place_order {
	width: 100%;
	min-height: 52px;
	border-color: var(--gc-primary);
	border-radius: 999px;
	background: var(--gc-primary);
	color: var(--gc-foreground);
	font-weight: 800;
}

/* Checkout typography refinement */
.woocommerce-checkout form.checkout {
	font-size: 14px;
}

.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #order_review_heading {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.025em;
}

.woocommerce-checkout #customer_details label {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0;
}

.woocommerce-checkout #customer_details input.input-text,
.woocommerce-checkout #customer_details select,
.woocommerce-checkout #customer_details textarea {
	color: var(--gc-foreground);
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
}

.woocommerce-checkout #order_review .shop_table {
	font-size: 14px;
}

.woocommerce-checkout #order_review .shop_table .product-name {
	font-size: 14px;
	font-weight: 600;
}

.woocommerce-checkout #order_review .shop_table .product-total {
	font-size: 14px;
	font-weight: 700;
}

.woocommerce-checkout #order_review .shop_table tfoot th,
.woocommerce-checkout #order_review .shop_table tfoot td {
	font-size: 13px;
	font-weight: 600;
}

.woocommerce-checkout #order_review .shop_table tr.order-total th,
.woocommerce-checkout #order_review .shop_table tr.order-total td {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.woocommerce-checkout #payment .payment_methods label {
	font-size: 14px;
	font-weight: 600;
}

.woocommerce-checkout #place_order {
	font-size: 15px;
	letter-spacing: 0.01em;
}

/* Reference-inspired checkout cards */
.gc-checkout-steps {
	margin: 0 0 34px;
	padding: 4px 0;
}

.gc-checkout-steps ol {
	display: grid;
	grid-template-columns: repeat(3, max-content);
	gap: 16px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-checkout-steps li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--gc-muted-foreground);
	font-size: 15px;
	font-weight: 700;
}

.gc-checkout-steps li:not(:last-child)::after {
	width: 72px;
	height: 1px;
	margin-left: 4px;
	background: var(--gc-border);
	content: '';
}

.gc-checkout-step-number {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 2px solid var(--gc-border);
	border-radius: 50%;
	font-size: 14px;
	font-weight: 800;
}

.gc-checkout-steps .is-complete,
.gc-checkout-steps .is-current {
	color: var(--gc-foreground);
}

.gc-checkout-steps .is-complete .gc-checkout-step-number {
	border-color: var(--gc-foreground);
	background: var(--gc-foreground);
	color: var(--gc-background);
	font-size: 0;
}

.gc-checkout-steps .is-complete .gc-checkout-step-number::after {
	content: '\2713';
	font-size: 16px;
}

.gc-checkout-steps .is-current .gc-checkout-step-number {
	border-color: var(--gc-foreground);
}

.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info,
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
	margin: 0 0 14px;
	padding: 20px 26px;
	border: 1px solid var(--gc-border);
	border-radius: 18px;
	background: var(--gc-card);
	color: var(--gc-foreground);
	font-size: 15px;
	font-weight: 600;
}

.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info::before,
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before {
	display: none;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
	padding: 30px 34px;
	border: 1px solid var(--gc-border);
	border-radius: 24px;
	background: var(--gc-card);
}

.woocommerce-checkout #customer_details .col-2 {
	margin-top: 24px;
}

.woocommerce-checkout #customer_details .form-row {
	margin-bottom: 18px;
}

.woocommerce-checkout #customer_details .form-row-last,
.woocommerce-checkout #customer_details .form-row-first {
	width: calc(50% - 10px);
}

.woocommerce-checkout #customer_details input.input-text,
.woocommerce-checkout #customer_details select,
.woocommerce-checkout #customer_details textarea {
	border-radius: 14px;
	background: var(--gc-background);
}

.woocommerce-checkout #order_review {
	border-radius: 24px;
	box-shadow: none;
}

.woocommerce-checkout #order_review .shop_table thead {
	display: none;
}

.woocommerce-checkout #order_review .shop_table tbody tr:first-child td {
	padding-top: 4px;
}

.woocommerce-checkout #order_review .shop_table tfoot tr.order-total th,
.woocommerce-checkout #order_review .shop_table tfoot tr.order-total td {
	padding-top: 22px;
	border-top: 1px solid var(--gc-border);
}

.woocommerce-checkout #payment ul.payment_methods {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
}

.woocommerce-checkout #payment .wc_payment_method {
	margin: 0 0 10px;
	padding: 14px;
	border: 1px solid var(--gc-border);
	border-radius: 14px;
	background: var(--gc-card);
}

.woocommerce-checkout #payment .wc_payment_method input {
	margin-right: 8px;
}

.woocommerce-checkout #payment .wc_payment_method input:checked + label {
	color: var(--gc-foreground);
	font-weight: 800;
}

.woocommerce-checkout #payment .payment_box {
	margin: 12px 0 0;
	padding: 0;
	color: var(--gc-muted-foreground);
}

.woocommerce-checkout #place_order {
	min-height: 56px;
}

/* WooCommerce Checkout Block layout */
.wc-block-checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
	gap: 42px;
	align-items: start;
	color: var(--gc-foreground);
	font-size: 15px;
}

.wc-block-checkout .wc-block-checkout__main {
	width: auto;
	margin: 0;
}

.wc-block-checkout .wc-block-components-sidebar {
	width: auto;
	margin: 0;
	position: sticky;
	top: 110px;
}

.wc-block-checkout .wc-block-components-checkout-step {
	margin: 0 0 24px;
	padding: 30px 34px;
	border: 1px solid var(--gc-border);
	border-radius: 24px;
	background: var(--gc-card);
}

.wc-block-checkout .wc-block-components-checkout-step__title,
.wc-block-checkout .wc-block-components-checkout-step h2,
.wc-block-checkout .wc-block-components-title {
	margin: 0 0 22px;
	color: var(--gc-foreground);
	font-family: inherit;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.03em;
}

.wc-block-checkout .wc-block-components-checkout-step__description,
.wc-block-checkout .wc-block-components-checkout-step__description p {
	margin: -12px 0 20px;
	color: var(--gc-muted-foreground);
	font-size: 14px;
	font-weight: 500;
}

.wc-block-checkout .wc-block-components-text-input label,
.wc-block-checkout .wc-block-components-combobox label,
.wc-block-checkout .wc-block-components-checkbox label,
.wc-block-checkout .wc-block-components-radio-control__label {
	color: var(--gc-foreground);
	font-size: 14px;
	font-weight: 600;
}

.wc-block-checkout .wc-block-components-text-input input,
.wc-block-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-checkout .wc-block-components-combobox .components-combobox-control__input,
.wc-block-checkout .wc-block-components-textarea textarea {
	min-height: 54px;
	border: 1px solid var(--gc-border);
	border-radius: 14px;
	background: var(--gc-background);
	color: var(--gc-foreground);
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
}

.wc-block-checkout .wc-block-components-text-input input:focus,
.wc-block-checkout .wc-block-components-combobox .wc-block-components-combobox-control input:focus,
.wc-block-checkout .wc-block-components-textarea textarea:focus {
	border-color: var(--gc-primary);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--gc-primary) 20%, transparent);
}

.wc-block-checkout .wc-block-components-radio-control {
	margin: 0;
}

.wc-block-checkout .wc-block-components-radio-control__option {
	margin: 0 0 10px;
	padding: 16px 18px;
	border: 1px solid var(--gc-border);
	border-radius: 14px;
	background: var(--gc-card);
}

.wc-block-checkout .wc-block-components-radio-control__option:has(input:checked) {
	border: 2px solid var(--gc-foreground);
	padding: 15px 17px;
}

.wc-block-checkout .wc-block-components-radio-control__label,
.wc-block-checkout .wc-block-components-radio-control__description {
	font-family: inherit;
}

.wc-block-checkout .wc-block-components-radio-control__description {
	margin-top: 4px;
	color: var(--gc-muted-foreground);
	font-size: 14px;
	font-weight: 500;
}

.wc-block-checkout .wc-block-components-order-summary {
	padding: 30px 34px;
	border: 1px solid var(--gc-border);
	border-radius: 24px;
	background: var(--gc-card);
	box-shadow: none;
}

.wc-block-checkout .wc-block-components-order-summary__title {
	margin: 0 0 20px;
	color: var(--gc-foreground);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.03em;
}

.wc-block-checkout .wc-block-components-order-summary-item {
	padding: 16px 0;
	border-color: var(--gc-border);
}

.wc-block-checkout .wc-block-components-order-summary-item__image {
	border-radius: 12px;
	background: var(--gc-secondary);
}

.wc-block-checkout .wc-block-components-product-name,
.wc-block-checkout .wc-block-components-order-summary-item__quantity {
	color: var(--gc-foreground);
	font-size: 15px;
	font-weight: 700;
}

.wc-block-checkout .wc-block-components-product-metadata,
.wc-block-checkout .wc-block-components-order-summary-item__individual-prices {
	color: var(--gc-muted-foreground);
	font-size: 13px;
	font-weight: 500;
}

.wc-block-checkout .wc-block-components-totals-wrapper,
.wc-block-checkout .wc-block-components-totals-coupon {
	border-color: var(--gc-border);
}

.wc-block-checkout .wc-block-components-totals-item {
	padding: 14px 0;
	color: var(--gc-foreground);
	font-size: 15px;
	font-weight: 500;
}

.wc-block-checkout .wc-block-components-totals-footer-item {
	margin-top: 6px;
	padding-top: 22px;
	border-top: 1px solid var(--gc-border);
}

.wc-block-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-checkout .wc-block-components-totals-footer-item .wc-block-formatted-money-amount {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.wc-block-checkout .wc-block-components-checkout-place-order-button {
	min-height: 56px;
	margin-top: 16px;
	border: 0;
	border-radius: 999px;
	background: var(--gc-primary);
	color: var(--gc-foreground);
	font-family: inherit;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.wc-block-checkout .wc-block-components-checkout-place-order-button:hover {
	background: var(--gc-primary-dark);
}

/* Checkout Block spacing correction */
.wc-block-checkout .wc-block-components-radio-control__option {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.wc-block-checkout .wc-block-components-radio-control__input {
	flex: 0 0 auto;
	position: relative !important;
	top: 0 !important;
	left: 0 !important;
	margin: 3px 0 0 !important;
}

.wc-block-checkout .wc-block-components-radio-control__option-layout {
	flex: 1 1 auto;
	display: flex;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
}

.wc-block-checkout .wc-block-components-radio-control__label,
.wc-block-checkout .wc-block-components-radio-control__label-group {
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
}

.wc-block-checkout .wc-block-components-radio-control__label-group {
	display: flex;
	flex: 1 1 auto;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.wc-block-checkout .wc-block-components-sidebar {
	box-sizing: border-box;
	padding: 0 24px 24px;
}

/* Checkout Block desktop width correction */
@media (min-width: 960px) {
	.woocommerce-checkout .gc-commerce-main,
	.woocommerce-checkout .gc-container {
		width: min(calc(100% - 96px), 1800px) !important;
		max-width: none !important;
	}

	.woocommerce-checkout .wc-block-checkout {
		width: 100% !important;
		max-width: none !important;
		grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.75fr);
	}
}

/* All listing product cards: no empty space below the purchase button. */
.woocommerce ul.products li.product {
	min-height: 0 !important;
	height: auto !important;
	padding-bottom: 14px !important;
	align-self: start !important;
}

@media (max-width: 767px) {
	.woocommerce ul.products li.product { padding-bottom: 10px !important; }
}

/* All listing product cards: compact reference flow with no forced empty space. */
.woocommerce ul.products li.product {
	min-height: 0 !important;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 0.72 !important;
}

.woocommerce ul.products li.product .gc-loop-simple-form,
.woocommerce ul.products li.product .gc-loop-variation-form,
.gc-product-listing ul.products li.product .gc-loop-simple-form,
.gc-product-listing ul.products li.product .gc-loop-variation-form,
body.post-type-archive-product .gc-commerce-main ul.products li.product .gc-loop-simple-form,
body.post-type-archive-product .gc-commerce-main ul.products li.product .gc-loop-variation-form,
body.tax-product_cat .gc-commerce-main ul.products li.product .gc-loop-simple-form,
body.tax-product_cat .gc-commerce-main ul.products li.product .gc-loop-variation-form,
body.tax-product_tag .gc-commerce-main ul.products li.product .gc-loop-simple-form,
body.tax-product_tag .gc-commerce-main ul.products li.product .gc-loop-variation-form,
.woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-simple-form,
.woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form {
	min-height: 0 !important;
	margin: 14px 14px 16px !important;
	justify-content: flex-start !important;
}

@media (max-width: 767px) {
	.woocommerce ul.products li.product a img { aspect-ratio: 1 / 0.76 !important; }

	.woocommerce ul.products li.product .gc-loop-simple-form,
	.woocommerce ul.products li.product .gc-loop-variation-form,
	.gc-product-listing ul.products li.product .gc-loop-simple-form,
	.gc-product-listing ul.products li.product .gc-loop-variation-form,
	body.post-type-archive-product .gc-commerce-main ul.products li.product .gc-loop-simple-form,
	body.post-type-archive-product .gc-commerce-main ul.products li.product .gc-loop-variation-form,
	body.tax-product_cat .gc-commerce-main ul.products li.product .gc-loop-simple-form,
	body.tax-product_cat .gc-commerce-main ul.products li.product .gc-loop-variation-form,
	body.tax-product_tag .gc-commerce-main ul.products li.product .gc-loop-simple-form,
	body.tax-product_tag .gc-commerce-main ul.products li.product .gc-loop-variation-form,
	.woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-simple-form,
	.woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form {
		margin: 10px 8px 12px !important;
	}
}

/* Checkout Block grid restore */
@media (min-width: 960px) {
	.woocommerce-checkout .wp-block-woocommerce-checkout.wc-block-checkout {
		display: block !important;
	}

	.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
		display: grid !important;
		width: 100% !important;
		max-width: none !important;
		grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.75fr) !important;
		gap: 42px !important;
	}

	.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout > .wc-block-components-main,
	.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout > .wc-block-components-sidebar {
		width: auto !important;
		max-width: none !important;
	}
}

@media (max-width: 959px) {
	.wc-block-checkout {
		display: block;
	}

	.wc-block-checkout .wc-block-components-sidebar {
		position: static;
		margin-top: 30px;
	}
}

/* Functional optional checkout recommendation. */
.woocommerce-checkout .gc-checkout-upsell {
	display: grid;
	grid-template-columns: auto 68px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	margin: 20px 0 24px;
	padding: 18px;
	border: 2px dashed var(--gc-border);
	border-radius: 20px;
	background: var(--gc-card);
	font-family: 'Poppins', sans-serif;
	transition: opacity .2s ease, border-color .2s ease;
}

.woocommerce-checkout .gc-checkout-upsell.is-updating { opacity: .6; }

.woocommerce-checkout .gc-checkout-upsell__toggle { display: grid; place-items: center; cursor: pointer; }
.woocommerce-checkout .gc-checkout-upsell__toggle input { position: absolute; inline-size: 1px; block-size: 1px; opacity: 0; }
.woocommerce-checkout .gc-checkout-upsell__toggle span {
	position: relative;
	inline-size: 28px;
	block-size: 28px;
	border: 2px solid var(--gc-border-strong, var(--gc-border));
	border-radius: 8px;
	background: var(--gc-card);
}
.woocommerce-checkout .gc-checkout-upsell__toggle input:checked + span {
	border: 3px solid var(--gc-primary) !important;
	background: var(--gc-card);
	box-shadow: none;
}
.woocommerce-checkout .gc-checkout-upsell__toggle input:checked + span::after {
	content: "";
	position: absolute;
	inset: 6px;
	border-radius: 2px;
	background: var(--gc-primary) !important;
}
.woocommerce-checkout .gc-checkout-upsell__toggle input:focus-visible + span { outline: 2px solid var(--gc-primary); outline-offset: 3px; }
.woocommerce-checkout .gc-checkout-upsell__image { inline-size: 68px; block-size: 68px; overflow: hidden; border-radius: 13px; background: var(--gc-surface); }
.woocommerce-checkout .gc-checkout-upsell__image img { inline-size: 100%; block-size: 100%; object-fit: cover; }
.woocommerce-checkout .gc-checkout-upsell__content strong { display: block; color: var(--gc-heading); font-size: 15px; font-weight: 700; line-height: 1.35; }
.woocommerce-checkout .gc-checkout-upsell__content p { margin: 5px 0 0; color: var(--gc-foreground) !important; font-size: 13px; font-weight: 600 !important; line-height: 1.4; }
.woocommerce-checkout .gc-checkout-upsell__price { color: var(--gc-heading); font-size: 15px; font-weight: 700; text-align: right; white-space: nowrap; }
.woocommerce-checkout .gc-checkout-upsell__price del { color: var(--gc-muted); font-weight: 500; }
.woocommerce-checkout .gc-checkout-upsell:has(input:checked) { border: 3px solid var(--gc-foreground) !important; }

/* Keep the empty field label quiet; typed email remains at the readable input size. */
.woocommerce-checkout .wc-block-checkout #contact-fields .wc-block-components-checkout-step__title {
	font-size: 20px !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
}
.woocommerce-checkout .wc-block-checkout #contact-fields .wc-block-components-text-input label {
	font-size: 14px !important;
	font-weight: 600 !important;
	color: var(--gc-muted) !important;
}
.woocommerce-checkout .wc-block-checkout #contact-fields .wc-block-components-text-input input {
	font-size: 20px !important;
	font-weight: 500 !important;
}

@media (max-width: 599px) {
	.woocommerce-checkout .gc-checkout-upsell { grid-template-columns: auto 54px minmax(0, 1fr); gap: 10px; padding: 14px; border-radius: 16px; }
	.woocommerce-checkout .gc-checkout-upsell__image { inline-size: 54px; block-size: 54px; border-radius: 11px; }
	.woocommerce-checkout .gc-checkout-upsell__content strong { font-size: 13px; }
	.woocommerce-checkout .gc-checkout-upsell__content p { font-size: 12px; }
	.woocommerce-checkout .gc-checkout-upsell__price { grid-column: 3; font-size: 14px; text-align: left; }
}

/* Checkout typography match */
.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step__title,
.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step h2,
.woocommerce-checkout .wc-block-checkout .wc-block-components-title {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-checkout .wc-block-components-combobox label,
.woocommerce-checkout .wc-block-checkout .wc-block-components-textarea label {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-checkout .wc-block-components-combobox input,
.woocommerce-checkout .wc-block-checkout .wc-block-components-textarea textarea {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.35;
}

/* Empty checkout field labels stay lighter than entered values. */
.woocommerce-checkout .wc-block-checkout .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-checkout .wc-block-components-combobox label,
.woocommerce-checkout .wc-block-checkout .wc-block-components-textarea label {
	color: var(--gc-muted-foreground) !important;
	font-weight: 500 !important;
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-checkout .wc-block-components-combobox input,
.woocommerce-checkout .wc-block-checkout .wc-block-components-textarea textarea {
	color: var(--gc-foreground) !important;
}

/* Contact card typography matches the checkout reference. */
.woocommerce-checkout .wc-block-checkout #contact-fields .wc-block-components-checkout-step__title {
	font-size: 24px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
}

.woocommerce-checkout .wc-block-checkout #contact-fields {
	padding: 34px 36px 36px !important;
	border-radius: 30px !important;
}

.woocommerce-checkout .wc-block-checkout #contact-fields .wc-block-components-text-input label {
	font-size: 17px !important;
}

.woocommerce-checkout .wc-block-checkout #contact-fields .wc-block-components-text-input:has(input:focus) label {
	color: var(--gc-foreground) !important;
	font-weight: 700 !important;
}

.woocommerce-checkout .wc-block-checkout #contact-fields .wc-block-components-text-input input {
	min-height: 68px !important;
	font-size: 20px !important;
	font-weight: 500 !important;
}

/* Hostinger Checkout Block typography override. */
.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step .wc-block-components-checkout-step__title,
.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step h2 {
	font-size: 24px !important;
	font-weight: 700 !important;
	line-height: 30px !important;
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step .wc-block-components-combobox label {
	font-size: 17px !important;
	font-weight: 700 !important;
	line-height: 22px !important;
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step .wc-block-components-combobox input {
	min-height: 68px !important;
	font-size: 20px !important;
	font-weight: 500 !important;
	line-height: 27px !important;
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step .wc-block-components-text-input input::placeholder,
.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step .wc-block-components-combobox input::placeholder {
	color: var(--gc-muted-foreground) !important;
	font-size: 17px !important;
	font-weight: 500 !important;
}

/* Checkout Block mobile layout */
@media (max-width: 767px) {
	.woocommerce-checkout .gc-commerce-main {
		width: calc(100% - 24px);
		padding-block: 20px 32px;
	}

	.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
		display: block !important;
		width: 100% !important;
		max-width: none !important;
	}

	.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout > .wc-block-components-main,
	.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout > .wc-block-components-sidebar {
		width: 100% !important;
		max-width: none !important;
	}

	.wc-block-checkout .wc-block-components-sidebar {
		margin-top: 24px;
		padding: 0;
	}

	.gc-checkout-steps {
		margin: 0 0 24px;
		padding: 0;
	}

	.gc-checkout-steps ol {
		width: 100%;
		gap: 8px;
	}

	.gc-checkout-steps li {
		gap: 7px;
		font-size: 12px;
	}

	.gc-checkout-steps li:not(:last-child)::after {
		width: 28px;
		margin-left: 0;
	}

	.gc-checkout-step-number {
		width: 22px;
		height: 22px;
		font-size: 12px;
	}
}

@media (max-width: 640px) {
	.wc-block-checkout .wc-block-components-checkout-step,
	.wc-block-checkout .wc-block-components-order-summary {
		padding: 22px 18px;
		border-radius: 18px;
	}

	.wc-block-checkout .wc-block-components-checkout-step__title,
	.wc-block-checkout .wc-block-components-checkout-step h2,
	.wc-block-checkout .wc-block-components-title,
	.wc-block-checkout .wc-block-components-order-summary__title {
		font-size: 19px;
	}

	.wc-block-checkout .wc-block-components-text-input input,
	.wc-block-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
	.wc-block-checkout .wc-block-components-combobox .components-combobox-control__input,
	.wc-block-checkout .wc-block-components-textarea textarea {
		min-height: 50px;
		font-size: 15px;
	}
}

.gc-checkout-recommendations {
	margin-top: 78px;
	padding-top: 52px;
	border-top: 1px solid var(--gc-border);
}

/* Checkout coupon area */
.gc-checkout-coupon {
	margin: 0 0 32px;
}

.gc-checkout-coupon .woocommerce-form-coupon-toggle {
	display: block;
}

.gc-checkout-coupon .woocommerce-form-coupon-toggle .woocommerce-info {
	margin: 0 0 12px;
	padding: 20px 26px;
	border: 1px solid var(--gc-border);
	border-radius: 20px;
	background: var(--gc-card);
	color: var(--gc-foreground);
	font-size: 16px;
	font-weight: 500;
}

.gc-checkout-coupon .woocommerce-form-coupon-toggle .woocommerce-info::before,
.gc-checkout-coupon .woocommerce-form-coupon-toggle .woocommerce-info::after {
	display: none;
}

.gc-checkout-coupon .woocommerce-form-coupon-toggle a {
	color: inherit;
	font-weight: 700;
	text-decoration: none;
}

.gc-checkout-coupon form.checkout_coupon {
	display: none;
	margin: 0;
	padding: 24px;
	border: 1px solid var(--gc-border);
	border-radius: 24px;
	background: var(--gc-secondary);
}

.gc-checkout-coupon form.checkout_coupon p {
	float: none;
	width: auto;
	margin: 0;
}

.gc-checkout-coupon form.checkout_coupon p:first-child {
	margin-bottom: 14px;
}

.gc-checkout-coupon form.checkout_coupon .input-text {
	width: 100%;
	min-height: 54px;
	padding: 0 18px;
	border: 1px solid var(--gc-border);
	border-radius: 14px;
	background: var(--gc-card);
	color: var(--gc-foreground);
	font: inherit;
}

.gc-checkout-coupon form.checkout_coupon button {
	min-height: 48px;
	padding: 0 26px;
	border: 0;
	border-radius: 999px;
	background: var(--gc-foreground);
	color: var(--gc-background);
	font: inherit;
	font-weight: 800;
}

/* Checkout contact information */
.wc-block-checkout #contact-fields .wc-block-components-checkout-step__heading,
.wc-block-checkout .wc-block-checkout__shipping-address .wc-block-components-checkout-step__heading,
.wc-block-checkout .wc-block-checkout__shipping-option .wc-block-components-checkout-step__heading,
.wc-block-checkout .wc-block-checkout__shipping-method .wc-block-components-checkout-step__heading,
.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-checkout-step__heading {
	display: flex;
	align-items: center;
	gap: 12px;
}

.wc-block-checkout #contact-fields .wc-block-components-checkout-step__heading {
	display: flex;
	align-items: center;
	gap: 12px;
}

.wc-block-checkout #contact-fields .wc-block-components-checkout-step__heading::before {
	content: '';
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	background: var(--gc-foreground);
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M20 21a8 8 0 0 0-16 0M12 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.wc-block-checkout #contact-fields .wc-block-components-title {
	margin-bottom: 18px;
	font-size: 20px;
	font-weight: 750;
	letter-spacing: -0.025em;
}

.wc-block-checkout #contact-fields .wc-block-components-text-input label {
	font-size: 13px;
	font-weight: 700;
}

.wc-block-checkout #contact-fields .wc-block-components-text-input input {
	min-height: 50px;
	font-size: 15px;
}

/* Checkout heading icons */
.wc-block-checkout .wc-block-checkout__shipping-address .wc-block-components-checkout-step__heading::before,
.wc-block-checkout .wc-block-checkout__shipping-option .wc-block-components-checkout-step__heading::before,
.wc-block-checkout .wc-block-checkout__shipping-method .wc-block-components-checkout-step__heading::before,
.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-checkout-step__heading::before {
	content: '';
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	background: var(--gc-foreground);
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 21s8-4.5 8-11a8 8 0 1 0-16 0c0 6.5 8 11 8 11Zm0-8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.wc-block-checkout #contact-fields .wc-block-components-checkout-step__heading::before,
.wc-block-checkout .wc-block-checkout__shipping-address .wc-block-components-checkout-step__heading::before,
.wc-block-checkout .wc-block-checkout__shipping-option .wc-block-components-checkout-step__heading::before,
.wc-block-checkout .wc-block-checkout__shipping-method .wc-block-components-checkout-step__heading::before,
.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-checkout-step__heading::before {
	align-self: center;
	transform: translateY(0);
}

.wc-block-checkout #contact-fields .wc-block-components-checkout-step__heading-container,
.wc-block-checkout .wc-block-checkout__shipping-address .wc-block-components-checkout-step__heading-container,
.wc-block-checkout .wc-block-checkout__shipping-option .wc-block-components-checkout-step__heading-container,
.wc-block-checkout .wc-block-checkout__shipping-method .wc-block-components-checkout-step__heading-container,
.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-checkout-step__heading-container {
	margin-bottom: 22px;
}

.wc-block-checkout #contact-fields .wc-block-components-checkout-step__heading .wc-block-components-title,
.wc-block-checkout .wc-block-checkout__shipping-address .wc-block-components-checkout-step__heading .wc-block-components-title,
.wc-block-checkout .wc-block-checkout__shipping-option .wc-block-components-checkout-step__heading .wc-block-components-title,
.wc-block-checkout .wc-block-checkout__shipping-method .wc-block-components-checkout-step__heading .wc-block-components-title,
.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-checkout-step__heading .wc-block-components-title {
	margin: 0 !important;
}

.wc-block-checkout .wc-block-checkout__shipping-option .wc-block-components-radio-control__label::after {
	content: '3–5 business days';
	display: block;
	margin-top: 4px;
	color: var(--gc-muted-foreground);
	font-size: 13px;
	font-weight: 500;
}

/* Keep Cash on Delivery as a single, aligned payment choice. */
.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control__description {
	display: none !important;
}

.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control__option,
.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control__label-group {
	align-items: center;
}

.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control__input {
	margin-top: 0 !important;
}

.wc-block-checkout #shipping-address .wc-block-components-checkout-step__heading::before,
.wc-block-checkout .wp-block-woocommerce-checkout-shipping-address-block .wc-block-components-checkout-step__heading::before {
	content: '';
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	background: var(--gc-foreground);
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.25' d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5' fill='none' stroke='black' stroke-width='2.25'/%3E%3C/svg%3E") center / contain no-repeat;
}

.wc-block-checkout fieldset:has(#shipping-first_name) .wc-block-components-checkout-step__heading {
	display: flex;
	align-items: center;
	gap: 12px;
}

.wc-block-checkout fieldset:has(#shipping-first_name) .wc-block-components-checkout-step__heading::before {
	content: '';
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	background: var(--gc-foreground);
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.25' d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5' fill='none' stroke='black' stroke-width='2.25'/%3E%3C/svg%3E") center / contain no-repeat;
}

.wc-block-checkout .wc-block-checkout__shipping-address .wc-block-components-checkout-step__heading-container,
.wc-block-checkout .wp-block-woocommerce-checkout-shipping-address-block .wc-block-components-checkout-step__heading-container {
	margin-bottom: 22px;
}

.wc-block-checkout .wc-block-checkout__shipping-address .wc-block-components-checkout-step__heading .wc-block-components-title,
.wc-block-checkout .wp-block-woocommerce-checkout-shipping-address-block .wc-block-components-checkout-step__heading .wc-block-components-title {
	margin: 0 !important;
}

.wc-block-checkout .wc-block-components-payment-method-interface .wc-block-components-radio-control__description,
.wc-block-checkout #payment-method .wc-block-components-radio-control__description,
.wc-block-checkout .wc-block-components-radio-control__description {
	display: none !important;
}

.wc-block-checkout .wc-block-checkout__shipping-option .wc-block-components-radio-control__option:has(input:checked),
.wc-block-checkout .wc-block-components-shipping-rates-control .wc-block-components-radio-control__option:has(input:checked) {
	padding: 16px 18px;
	border: 1px solid var(--gc-border);
}

/* Order Summary breathing room and coupon action */
.wc-block-checkout .wc-block-components-order-summary .wc-block-components-totals-coupon,
.wc-block-checkout .wc-block-components-order-summary .wc-block-components-totals-wrapper {
	padding-inline: 24px;
}

.wc-block-checkout .wc-block-components-order-summary .wc-block-components-totals-coupon {
	padding-block: 20px;
}

.wc-block-checkout .wc-block-components-order-summary .wc-block-components-totals-wrapper {
	padding-bottom: 24px;
}

.wc-block-checkout .wc-block-components-totals-coupon__button,
.wc-block-checkout .wc-block-components-totals-coupon button {
	min-height: 46px;
	padding: 0 24px;
	border: 0;
	border-radius: 999px;
	background: var(--gc-primary);
	color: var(--gc-foreground);
	font: inherit;
	font-weight: 800;
}

.wc-block-checkout .wc-block-components-totals-coupon__button:hover,
.wc-block-checkout .wc-block-components-totals-coupon button:hover {
	background: var(--gc-primary-dark);
}

.wc-block-checkout .wc-block-components-order-summary .wc-block-components-totals-item {
	width: calc(100% - 48px);
	margin-inline: 24px;
	padding: 16px 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
}

.wc-block-checkout .wc-block-components-order-summary .wc-block-components-totals-item__label,
.wc-block-checkout .wc-block-components-order-summary .wc-block-components-totals-item__value,
.wc-block-checkout .wc-block-components-order-summary .wc-block-components-totals-item .wc-block-formatted-money-amount {
	font-size: 16px;
	font-weight: 700;
}

.wc-block-checkout .wc-block-components-order-summary .wc-block-components-totals-footer-item {
	margin-inline: 24px;
	padding-top: 20px;
}

.wc-block-checkout .wc-block-components-order-summary .wc-block-components-totals-footer-item .wc-block-components-totals-item,
.wc-block-checkout .wc-block-components-order-summary .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-checkout .wc-block-components-order-summary .wc-block-components-totals-footer-item .wc-block-formatted-money-amount {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.wc-block-checkout .wc-block-components-radio-control-accordion-content {
	display: none !important;
}

.wc-block-checkout .wc-block-components-sidebar .wc-block-components-totals-item {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 16px 24px;
	font-size: 16px;
	font-weight: 500;
}

.wc-block-checkout .wc-block-components-sidebar .wc-block-components-totals-item__label,
.wc-block-checkout .wc-block-components-sidebar .wc-block-components-totals-item__value,
.wc-block-checkout .wc-block-components-sidebar .wc-block-components-totals-item .wc-block-formatted-money-amount {
	font-size: 16px;
	font-weight: 700;
}

.wc-block-checkout .wc-block-components-sidebar .wc-block-components-totals-footer-item {
	margin: 0 24px;
}

.wc-block-checkout .wc-block-components-radio-control-accordion-option,
.wc-block-checkout .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
	border: 0 !important;
	border-radius: 0;
	background: transparent !important;
	box-shadow: none !important;
}

.wc-block-checkout .wc-block-components-sidebar .wc-block-components-totals-footer-item {
	margin: 0 !important;
	padding: 20px 24px 0 !important;
}

.wc-block-checkout .wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item {
	width: 100%;
	margin: 0;
	padding-inline: 0;
}

.wc-block-checkout .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option {
	align-items: center !important;
}

.wc-block-checkout .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__input {
	align-self: center;
	margin: 0 !important;
	transform: none !important;
}

.wc-block-checkout .wc-block-checkout__shipping-option .wc-block-components-checkout-step__heading::before {
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 6h11v11H3zM14 9h4l3 3v5h-7zM7 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm10 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-checkout-step__heading::before {
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect width='18' height='13' x='3' y='6' fill='none' stroke='black' stroke-linejoin='round' stroke-width='2' rx='2'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' d='M3 11h18'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Reference-exact Checkout Block refinement */
@media (min-width: 960px) {
	.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
		grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.75fr) !important;
		gap: 42px !important;
	}

	.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar {
		position: sticky;
		top: 104px;
		align-self: start;
	}
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step,
.woocommerce-checkout .wc-block-checkout .wc-block-components-order-summary {
	border-radius: 32px;
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step {
	padding: 32px;
	margin-bottom: 28px;
	background: var(--gc-card);
	border: 1px solid var(--gc-border);
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step__title,
.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step h2,
.woocommerce-checkout .wc-block-checkout .wc-block-components-title,
.woocommerce-checkout .wc-block-checkout .wc-block-components-order-summary__title {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
.woocommerce-checkout .wc-block-checkout .wc-block-components-combobox .components-combobox-control__input,
.woocommerce-checkout .wc-block-checkout .wc-block-components-textarea textarea {
	min-height: 60px;
	font-size: 14px;
	font-weight: 500;
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control__option {
	min-height: 60px;
	margin-bottom: 14px;
	padding: 18px 20px;
	border-radius: 18px;
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control__option:has(input:checked) {
	padding: 17px 19px;
	border: 2px solid var(--gc-primary);
	background: color-mix(in srgb, var(--gc-primary) 7%, var(--gc-card));
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-order-summary {
	padding: 32px;
	background: var(--gc-card);
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-order-summary-item {
	padding: 18px 0;
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-place-order-button {
	width: 100%;
	min-height: 56px;
	margin-top: 20px;
	border-radius: 999px;
	background: var(--gc-primary);
	color: var(--gc-foreground);
	font-size: 16px;
	font-weight: 800;
}

@media (max-width: 959px) {
	.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
		display: grid !important;
		grid-template-columns: 1fr !important;
	}

	.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar {
		position: static !important;
		margin-top: 28px;
	}
}

@media (max-width: 640px) {
	.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step,
	.woocommerce-checkout .wc-block-checkout .wc-block-components-order-summary {
		padding: 20px;
		border-radius: 22px;
	}

	.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step {
		margin-bottom: 20px;
	}
}

@media (max-width: 767px) {
	.wc-block-checkout #contact-fields .wc-block-components-checkout-step__heading {
		gap: 9px;
	}

	.wc-block-checkout #contact-fields .wc-block-components-checkout-step__heading::before {
		width: 17px;
		height: 17px;
		flex-basis: 17px;
	}

	.wc-block-checkout #contact-fields .wc-block-components-title {
		margin-bottom: 14px;
		font-size: 17px;
	}

	.wc-block-checkout #contact-fields .wc-block-components-text-input label {
		font-size: 12px;
	}

	.wc-block-checkout #contact-fields .wc-block-components-text-input input {
		min-height: 44px;
		font-size: 14px;
	}

	.gc-checkout-coupon {
		margin-bottom: 24px;
	}

	.gc-checkout-coupon .woocommerce-form-coupon-toggle .woocommerce-info {
		padding: 16px 18px;
		border-radius: 16px;
		font-size: 13px;
	}

	.gc-checkout-coupon form.checkout_coupon {
		padding: 14px;
		border-radius: 18px;
	}

	.gc-checkout-coupon form.checkout_coupon p:first-child {
		margin-bottom: 10px;
	}

	.gc-checkout-coupon form.checkout_coupon .input-text {
		min-height: 46px;
		padding: 0 14px;
		border-radius: 12px;
		font-size: 14px;
	}

	.gc-checkout-coupon form.checkout_coupon button {
		min-height: 42px;
		padding: 0 20px;
		font-size: 13px;
	}
}

.gc-checkout-recommendations-heading {
	width: min(calc(100% - 48px), var(--gc-container));
	margin: 0 auto;
	text-align: center;
}

.gc-checkout-recommendations-heading h2 {
	margin: 6px 0 8px;
	font-size: clamp(1.8rem, 3vw, 2.7rem);
	letter-spacing: -0.05em;
}

.gc-checkout-recommendations-heading > p:last-child {
	margin: 0;
	color: var(--gc-muted-foreground);
}

@media (max-width: 959px) {
	.woocommerce-checkout form.checkout {
		display: block;
	}

	.woocommerce-checkout #order_review_heading {
		margin-top: 34px;
		margin-bottom: 18px;
	}

	.woocommerce-checkout #order_review {
		position: static;
	}
}

@media (max-width: 640px) {
	.woocommerce-checkout #customer_details h3,
	.woocommerce-checkout #order_review_heading {
		font-size: 19px;
	}

	.woocommerce-checkout #order_review {
		padding: 18px;
	}

	.woocommerce-checkout #payment {
		margin: 0 -18px -18px;
		padding: 16px 18px 18px;
	}

	.gc-checkout-recommendations {
		margin-top: 48px;
		padding-top: 36px;
	}

	.gc-checkout-recommendations-heading {
		width: calc(100% - 24px);
	}
}

.gc-cart-drawer-shell {
	position: fixed;
	z-index: 300;
	inset: 0;
}

.gc-cart-drawer-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(36, 31, 28, 0.48);
}

.gc-cart-drawer {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	width: min(100vw, 420px);
	height: 100%;
	flex-direction: column;
	background: var(--gc-card);
	box-shadow: -16px 0 42px rgba(36, 31, 28, 0.2);
	overflow: hidden;
}

.gc-cart-drawer-promo {
	padding: 11px 24px;
	background: var(--gc-primary);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	text-align: center;
}

.gc-cart-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid var(--gc-border);
}

.gc-cart-drawer-header h2 {
	margin: 0;
	font-size: 18px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.gc-cart-delivery-note {
	padding: 12px 24px;
	border-bottom: 1px solid var(--gc-border);
	background: #fff5f8;
	color: var(--gc-foreground);
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

/* Gift-card plugin controls do not belong in this streamlined cart drawer. */
.gc-cart-drawer .giftcard,
.gc-cart-drawer .giftkarte,
.gc-cart-drawer [class*="giftcard"],
.gc-cart-drawer [class*="giftkarte"],
.gc-cart-drawer [class*="gift-card"] {
	display: none !important;
}

.gc-cart-drawer-close,
.gc-cart-item-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: var(--gc-foreground);
	cursor: pointer;
}

.gc-cart-drawer-close {
	width: 34px;
	height: 34px;
	font-size: 31px;
	line-height: 1;
}

.gc-cart-drawer-body {
	min-height: 0;
	flex: 1;
	padding: 20px 24px;
	overflow-y: auto;
}

.gc-cart-items {
	display: grid;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr) 26px;
	gap: 15px;
	align-items: start;
}

.gc-cart-item-image {
	border-radius: 10px;
	background: var(--gc-secondary);
	overflow: hidden;
}

.gc-cart-item-image img {
	width: 100%;
	height: 110px;
	object-fit: cover;
}

.gc-cart-item-name {
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.gc-cart-item-price {
	margin-top: 8px;
	font-size: 15px;
	font-weight: 800;
}

.gc-cart-quantity {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	padding: 4px;
	border: 1px solid var(--gc-border);
	border-radius: 999px;
}

.gc-cart-quantity button {
	display: inline-flex;
	width: 28px;
	height: 28px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--gc-foreground);
	cursor: pointer;
	font-size: 18px;
}

.gc-cart-quantity button:hover {
	background: var(--gc-secondary);
}

.gc-cart-quantity span {
	min-width: 18px;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
}

.gc-cart-item-remove {
	width: 26px;
	height: 26px;
	font-size: 23px;
}

.gc-cart-empty {
	display: grid;
	min-height: 240px;
	place-content: center;
	justify-items: center;
	gap: 18px;
	text-align: center;
}

.gc-cart-empty p {
	margin: 0;
	color: var(--gc-muted-foreground);
}

.gc-cart-drawer-footer {
	padding: 20px 24px 24px;
	border-top: 1px solid var(--gc-border);
	background: var(--gc-card);
}

.gc-cart-subtotal {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gc-cart-subtotal strong {
	font-size: 24px;
	letter-spacing: 0;
}

.gc-cart-checkout {
	width: 100%;
	border-color: var(--gc-primary);
	background: var(--gc-primary);
}

.gc-cart-continue {
	display: block;
	margin: 15px auto 0;
	border: 0;
	background: transparent;
	color: var(--gc-muted-foreground);
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (min-width: 768px) {
	/* Compact desktop cart drawer */
	.gc-cart-drawer {
		width: min(100vw, 360px);
	}

	.gc-cart-drawer-promo {
		padding: 8px 18px;
		font-size: 12px;
	}

	.gc-cart-drawer-header {
		padding: 16px 18px;
	}

	.gc-cart-drawer-header h2 {
		font-size: 16px;
	}

	.gc-cart-delivery-note {
		padding: 10px 18px;
		font-size: 12px;
	}

	.gc-cart-drawer-body {
		padding: 16px 18px;
	}

	.gc-cart-items {
		gap: 16px;
	}

	.gc-cart-item {
		grid-template-columns: 80px minmax(0, 1fr) 22px;
		gap: 12px;
	}

	.gc-cart-item-image img {
		height: 80px;
	}

	.gc-cart-item-name {
		font-size: 14px;
	}

	.gc-cart-item-price {
		margin-top: 5px;
		font-size: 13px;
	}

	.gc-cart-quantity {
		gap: 6px;
		margin-top: 10px;
	}

	.gc-cart-quantity button {
		width: 24px;
		height: 24px;
		font-size: 16px;
	}

	.gc-cart-quantity span {
		font-size: 13px;
	}

	.gc-cart-drawer-footer {
		padding: 16px 18px 18px;
	}

	.gc-cart-subtotal {
		margin-bottom: 12px;
		font-size: 12px;
	}

	.gc-cart-subtotal strong {
		font-size: 21px;
	}

	.gc-cart-continue {
		margin-top: 12px;
		font-size: 13px;
	}
}

body.gc-cart-open {
	overflow: hidden;
}

.woocommerce-account #customer_login {
	width: min(calc(100% - 48px), 520px);
	margin-inline: auto;
}

.woocommerce-account #customer_login::before,
.woocommerce-account #customer_login::after {
	display: none;
}

.woocommerce-account #customer_login > div {
	width: 100%;
}

.gc-auth-page {
	width: min(calc(100% - 48px), 520px);
	margin-inline: auto;
	padding-block: clamp(28px, 4vw, 56px);
}

.gc-auth-card {
	width: 100%;
	padding: clamp(26px, 5vw, 42px);
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius);
	background: var(--gc-card);
	box-shadow: var(--gc-shadow);
}

.gc-auth-card-header {
	margin-bottom: 28px;
	text-align: center;
}

.gc-auth-card-header h1 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 2.8rem);
	line-height: 1.1;
	letter-spacing: -0.045em;
}

.gc-auth-card-header p {
	margin: 10px 0 0;
	color: var(--gc-muted-foreground);
	font-size: 14px;
}

.gc-auth-card-form {
	margin: 0;
	border: 0;
	padding: 0;
}

.gc-auth-card-form .form-row {
	margin-bottom: 18px;
}

.gc-auth-card-form .form-row input.input-text {
	display: block;
	width: 100%;
}

.gc-auth-card-form label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 700;
}

.gc-auth-card-form .woocommerce-form-login__rememberme {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 14px 12px 0;
	font-weight: 500;
}

.gc-auth-card-form .woocommerce-form-login__rememberme input {
	width: 16px;
	height: 16px;
}

.gc-auth-card-form .button {
	width: 100%;
	margin-top: 4px;
}

.gc-auth-card-form .woocommerce-LostPassword {
	margin: 18px 0 0;
	font-size: 14px;
}

.gc-auth-card-form .woocommerce-LostPassword a,
.gc-auth-switch a {
	color: var(--gc-primary-dark);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.gc-auth-switch {
	margin: 24px 0 0;
	color: var(--gc-muted-foreground);
	font-size: 14px;
	text-align: center;
}

.gc-form-hint {
	display: block;
	min-height: 1.3em;
	margin-top: 6px;
	color: var(--gc-danger);
	font-size: 13px;
}

.gc-password-mismatch {
	border-color: var(--gc-danger) !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
	min-height: 48px;
	padding: 10px 13px;
	border: 1px solid var(--gc-border);
	border-radius: 9px;
	background: var(--gc-card);
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
	border-top-color: var(--gc-primary);
	background: var(--gc-card);
}

/* Footer */
.gc-footer {
	padding: 70px 0 30px;
	background: var(--gc-foreground);
	color: var(--gc-background);
}

.gc-footer .gc-brand {
	color: var(--gc-background) !important;
}

.gc-footer-brand {
	display: inline-flex;
	align-items: center;
	max-width: 280px;
}

.gc-footer-logo {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 80px;
}

.gc-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 50px;
}

.gc-footer-grid h2 {
	margin: 0 0 16px;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gc-footer-grid p {
	max-width: 340px;
	color: rgba(253, 249, 245, 0.68);
	font-size: 14px;
}

.gc-footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-footer-links li {
	margin: 9px 0;
}

.gc-footer-links a {
	color: rgba(253, 249, 245, 0.72);
	font-size: 14px;
}

.gc-footer-links a:hover {
	color: #fff;
}

.gc-footer-social .gc-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
}

.gc-footer-social .gc-footer-links li {
	margin: 0;
}

.gc-footer-social .gc-footer-links a {
	display: inline-flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.gc-footer-social .gc-footer-links a:hover {
	background: transparent;
	transform: translateY(-1px);
}

.gc-footer-social .gc-icon {
	width: 22px;
	height: 22px;
}

.gc-footer-social .gc-icon-instagram { color: #e4405f; }
.gc-footer-social .gc-icon-facebook { color: #1877f2; }
.gc-footer-social .gc-icon-youtube { color: #ff0000; }
.gc-footer-social .gc-icon-linkedin { color: #0a66c2; }

.gc-social-custom-icon {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.gc-footer-bottom {
	margin-top: 50px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	color: rgba(253, 249, 245, 0.55);
	font-size: 12px;
}

.gc-mobile-footer {
	display: none;
}

@media (max-width: 1024px) {
	.gc-header-main {
		width: min(calc(100% - 32px), 960px);
		height: 66px;
	}

	.gc-header-search,
	.gc-header-social,
	.gc-desktop-nav {
		display: none;
	}

	.gc-header-main {
		grid-template-columns: 1fr auto 1fr;
	}

	.gc-header-brand {
		grid-column: 2;
	}

	.gc-header-actions {
		grid-column: 3;
	}

	.gc-menu-toggle {
		display: inline-flex;
	}

	.gc-header-actions > .gc-signup-link {
		display: none;
	}

	.gc-home-hero-inner {
		grid-template-columns: 0.9fr 1.1fr;
		gap: 38px;
	}

	body.home .woocommerce .products,
	body.home .woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce div.product {
		grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
		gap: 34px;
	}
}

@media (max-width: 767px) {
	body.gc-site {
		padding-bottom: var(--gc-mobile-nav);
		font-size: 15px;
	}

	.gc-container,
	.single-product .gc-commerce-main,
	.woocommerce-cart .gc-commerce-main,
	.woocommerce-checkout .gc-commerce-main,
	.woocommerce-account .gc-commerce-main {
		width: min(calc(100% - 24px), var(--gc-container));
	}

	body.home .woocommerce .products,
	body.home .woocommerce ul.products,
	body.post-type-archive-product .woocommerce .products,
	body.post-type-archive-product .woocommerce ul.products,
	body.tax-product_cat .woocommerce .products,
	body.tax-product_cat .woocommerce ul.products,
	body.tax-product_tag .woocommerce .products,
	body.tax-product_tag .woocommerce ul.products {
		width: min(calc(100% - 24px), var(--gc-container));
	}

	.gc-announcement {
		min-height: 38px;
		padding: 7px 38px;
		font-size: 11px;
	}

	.gc-announcement button {
		right: 10px;
		font-size: 18px;
	}

	.gc-header-main {
		width: calc(100% - 22px);
		height: 64px;
		gap: 4px;
	}

	.gc-brand {
		gap: 7px;
		font-size: 18px;
	}

	.gc-header-actions {
		gap: 0;
	}

	.gc-header-actions > a,
	.gc-menu-toggle {
		width: 34px;
		height: 40px;
	}

	.gc-mobile-menu {
		bottom: var(--gc-mobile-nav);
		display: block;
		background: var(--gc-card);
	}

	.gc-mobile-menu[hidden] {
		display: none;
	}

	.gc-mobile-menu-backdrop {
		display: none;
	}

	.gc-mobile-menu-panel {
		height: calc(100dvh - var(--gc-mobile-nav));
		width: 100%;
		min-height: 100%;
		box-shadow: none;
	}

	.gc-icon {
		width: 19px;
		height: 19px;
	}

	.gc-cart-count {
		top: 1px;
		right: -2px;
		width: 17px;
		height: 17px;
	}

	.gc-home-hero {
		padding-block: 30px 42px;
	}

	.gc-home-hero-inner {
		display: flex;
		flex-direction: column-reverse;
		gap: 26px;
	}

	.gc-home-hero-media {
		width: 100%;
	}

	.gc-home-hero-copy h1 {
		margin: 12px 0;
		font-size: 2.5rem;
	}

	.gc-home-hero-copy > p:not(.gc-eyebrow) {
		font-size: 16px;
	}

	.gc-home-hero .gc-button {
		margin-top: 22px;
	}

	.gc-home-section {
		padding-block: 32px;
	}

	.gc-home-categories {
		display: flex;
		gap: 14px;
		margin-top: 24px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

	.gc-home-category {
		width: 78vw;
		flex: 0 0 78vw;
		scroll-snap-align: start;
	}

	.gc-editorial {
		display: flex;
		flex-direction: column;
		min-height: 0;
	}

	.gc-editorial-copy {
		padding: 44px 22px;
	}

	.gc-editorial-media img {
		min-height: 340px;
	}

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

	.gc-shop-hero {
		height: 220px;
		padding-block: 0;
		background-image: var(--gc-shop-banner-mobile-image, var(--gc-shop-banner-image, linear-gradient(120deg, #fffaf7 0%, #f9ecee 58%, #f6dce3 100%)));
	}

	.gc-shop-hero h1 {
		font-size: 1.75rem;
	}

	.gc-shop-hero p {
		margin-top: 10px;
		font-size: 14px;
	}

	.gc-category-strip {
		padding-block: 16px 12px;
	}

	.gc-category-circles {
		max-width: none;
		gap: 14px;
		margin-top: 18px;
		overflow-x: auto;
		flex-wrap: nowrap;
	}

	.gc-category-circle {
		width: 88px;
		flex: 0 0 88px;
		scroll-snap-align: start;
	}

	.gc-category-circle-image {
		width: 88px;
	}

	.gc-category-circle strong {
		font-size: 11px;
		line-height: 1.25;
	}

	.gc-shop-toolbar {
		padding-block: 12px;
	}

	.gc-filter-toggle,
	.gc-shop-toolbar .woocommerce-ordering select {
		height: 38px;
		padding-inline: 13px;
		font-size: 12px;
	}

	body.home .woocommerce .products,
	body.home .woocommerce ul.products,
	body.post-type-archive-product .woocommerce .products,
	body.post-type-archive-product .woocommerce ul.products,
	body.tax-product_cat .woocommerce .products,
	body.tax-product_cat .woocommerce ul.products,
	body.tax-product_tag .woocommerce .products,
	body.tax-product_tag .woocommerce ul.products {
		gap: 12px;
		margin-top: 24px !important;
	}

	body.home .woocommerce ul.products li.product,
	body.post-type-archive-product .woocommerce ul.products li.product,
	body.tax-product_cat .woocommerce ul.products li.product,
	body.tax-product_tag .woocommerce ul.products li.product,
	body.woocommerce-cart .woocommerce ul.products li.product {
		padding-bottom: 14px;
		border-radius: 12px;
	}

	body.home .woocommerce ul.products li.product a img,
	body.post-type-archive-product .woocommerce ul.products li.product a img,
	body.tax-product_cat .woocommerce ul.products li.product a img,
	body.tax-product_tag .woocommerce ul.products li.product a img,
	body.woocommerce-cart .woocommerce ul.products li.product a img {
		margin-bottom: 12px !important;
	}

	body.home .woocommerce ul.products li.product .woocommerce-loop-product__title,
	body.post-type-archive-product .woocommerce ul.products li.product .woocommerce-loop-product__title,
	body.tax-product_cat .woocommerce ul.products li.product .woocommerce-loop-product__title,
	body.tax-product_tag .woocommerce ul.products li.product .woocommerce-loop-product__title,
	body.woocommerce-cart .woocommerce ul.products li.product .woocommerce-loop-product__title {
		padding-inline: 10px !important;
		font-size: 13px !important;
	}

	body.home .woocommerce ul.products li.product .price,
	body.post-type-archive-product .woocommerce ul.products li.product .price,
	body.tax-product_cat .woocommerce ul.products li.product .price,
	body.tax-product_tag .woocommerce ul.products li.product .price,
	body.woocommerce-cart .woocommerce ul.products li.product .price {
		display: block;
		margin: 4px 10px 0 !important;
		font-size: 14px !important;
	}

	body.home .woocommerce ul.products li.product .button,
	body.post-type-archive-product .woocommerce ul.products li.product .button,
	body.tax-product_cat .woocommerce ul.products li.product .button,
	body.tax-product_tag .woocommerce ul.products li.product .button {
		display: none;
	}

	body.home .woocommerce span.onsale,
	body.post-type-archive-product .woocommerce span.onsale,
	body.tax-product_cat .woocommerce span.onsale,
	body.tax-product_tag .woocommerce span.onsale {
		top: 8px;
		left: 8px;
		padding: 5px 8px;
		font-size: 10px;
	}

	.gc-configure {
		display: none;
	}

	.single-product .gc-commerce-main {
		padding-block: 20px 55px;
	}

	.woocommerce div.product {
		display: block;
	}

	.woocommerce div.product div.images .woocommerce-product-gallery__image a {
		aspect-ratio: 1;
	}

	.woocommerce div.product div.images .flex-control-thumbs li {
		width: 68px;
	}

.woocommerce div.product div.summary {
	padding-top: 24px;
}

/* Gallery-led FizeGlow product detail presentation. */
.single-product .woocommerce div.product {
	grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
	gap: clamp(40px, 6vw, 88px);
}

.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image a {
	aspect-ratio: 1 / 1.08;
}

.single-product .woocommerce div.product .product_title {
	font-size: clamp(2.5rem, 4.6vw, 4.8rem);
	letter-spacing: -0.055em;
}

.single-product .woocommerce div.product .woocommerce-tabs,
.single-product .woocommerce .related.products {
	border-top: 1px solid var(--gc-border);
}

	.woocommerce div.product .product_title {
		font-size: 2rem;
	}

	.woocommerce div.product form.cart,
	.woocommerce div.product form.variations_form {
		padding: 16px;
	}

	.woocommerce div.product form.cart .button {
		min-width: calc(100% - 88px);
	}

	.woocommerce div.product .woocommerce-tabs {
		margin-top: 38px;
	}

	.related.products ul.products,
	.upsells.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track {
		display: flex;
		gap: 14px;
		margin-top: 20px !important;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product {
		width: 72vw !important;
		flex-basis: 72vw;
	}


	.gc-auth-page,
	.woocommerce-account #customer_login {
		width: min(calc(100% - 24px), 520px);
		padding-block: 24px 36px;
	}

	.gc-auth-card {
		padding: 26px 20px;
	}

	.gc-auth-card-form .form-row {
		width: 100%;
		margin-bottom: 16px;
	}

	.gc-cart-drawer {
		width: min(92vw, 430px);
	}

	.gc-cart-drawer-promo {
		padding: 9px 16px;
		font-size: 12px;
	}

	.gc-cart-delivery-note {
		padding: 10px 16px;
		font-size: 12px;
	}

	.gc-cart-drawer-header,
	.gc-cart-drawer-body,
	.gc-cart-drawer-footer {
		padding-right: 16px;
		padding-left: 16px;
	}

	.gc-cart-item {
		grid-template-columns: 70px minmax(0, 1fr) 22px;
		gap: 12px;
	}

	.gc-cart-item-image img {
		height: 88px;
	}

	.gc-cart-item-name {
		font-size: 14px;
	}

	.gc-cart-subtotal strong {
		font-size: 20px;
	}

	.gc-footer {
		padding: 46px 0 28px;
	}

	.gc-footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 22px;
	}

	.gc-footer-grid > div:first-child {
		grid-column: 1 / -1;
	}

	.gc-mobile-footer {
		position: fixed;
		z-index: 110;
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		height: var(--gc-mobile-nav);
		grid-template-columns: repeat(4, 1fr);
		border-top: 1px solid var(--gc-border);
		background: var(--gc-card);
		box-shadow: 0 -5px 20px rgba(35, 27, 22, 0.08);
	}

	.gc-mobile-footer a {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 3px;
		color: var(--gc-muted-foreground);
		font-size: 10px;
		font-weight: 600;
	}

	.gc-mobile-footer .gc-icon {
		width: 20px;
		height: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Final storefront alignment refinements. */
.gc-home-category-section {
	padding-block: clamp(18px, 3vw, 42px);
	background: #fffefd;
}

.gc-home-categories {
	display: flex;
	margin-top: 0;
	gap: clamp(12px, 1.5vw, 22px);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.gc-home-categories::-webkit-scrollbar { display: none; }

.gc-home-category {
	flex: 0 0 calc(25% - 17px);
	min-height: clamp(210px, 22vw, 330px);
	aspect-ratio: 1 / 1.08;
	border-radius: 24px;
	background: linear-gradient(145deg, #fffefe 0%, #f7eeee 100%);
	box-shadow: 0 14px 30px rgba(83, 49, 55, 0.08);
	scroll-snap-align: start;
}

.gc-home-category img {
	padding: 0;
	object-fit: cover;
}

.gc-home-category strong {
	left: clamp(18px, 2vw, 26px);
	right: auto;
	bottom: clamp(16px, 2vw, 24px);
	font-size: clamp(1.25rem, 1.7vw, 1.8rem);
	font-weight: 800;
}

@media (max-width: 767px) {
	.gc-home-category-section { padding-block: 20px 26px; }
	.gc-home-category { min-height: 0; flex: 0 0 78vw; }
}

body:is(.home, .woocommerce-checkout) .gc-home-products-section {
	padding-bottom: 12px;
}

body.home .woocommerce ul.products {
	display: flex;
	width: min(calc(100% - 48px), var(--gc-container));
	margin: 18px auto 0 !important;
	gap: clamp(12px, 1.5vw, 22px);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

body.home .woocommerce ul.products::-webkit-scrollbar { display: none; }

body.home .woocommerce ul.products li.product {
	flex: 0 0 clamp(330px, 22vw, 430px);
	scroll-snap-align: start;
}

@media (max-width: 767px) {
	body.home .woocommerce ul.products {
		width: calc(100% - 32px);
		gap: 12px;
	}

	body.home .woocommerce ul.products li.product { flex: 0 0 44vw; }
}

/* Product-card typography: clean, bold editorial labels and prices. */
.gc-product-card-category {
	margin: 20px 16px 8px;
	color: var(--gc-muted-foreground);
	font-family: "Manrope", system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding-inline: 16px !important;
	font-family: "Manrope", system-ui, sans-serif;
	font-size: clamp(14px, 1.2vw, 18px) !important;
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.045em;
	text-align: left;
}

.woocommerce ul.products li.product .price {
	justify-content: flex-start;
	margin: 10px 16px 0 !important;
	font-family: "Manrope", system-ui, sans-serif;
	font-size: clamp(18px, 1.5vw, 24px) !important;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.05em;
}

.woocommerce ul.products li.product .price del {
	color: var(--gc-muted-foreground);
	font-size: 0.82em;
	font-weight: 500;
	text-decoration: line-through;
}

.woocommerce ul.products li.product .price ins { font-weight: 700; }

@media (max-width: 767px) {
	.gc-product-card-category { margin: 14px 10px 6px; font-size: 10px; }
	.woocommerce ul.products li.product .woocommerce-loop-product__title { padding-inline: 10px !important; font-size: 14px !important; }
	.woocommerce ul.products li.product .price { margin: 8px 10px 0 !important; font-size: 18px !important; }
}

/* Centered listing-card information layout; card dimensions remain unchanged. */
.gc-product-card-category { text-align: center; }

.woocommerce ul.products li.product .woocommerce-loop-product__title { text-align: center; }

.woocommerce ul.products li.product .price { justify-content: center; }

.woocommerce ul.products li.product .gc-loop-simple-form,
.woocommerce ul.products li.product .gc-loop-variation-form {
	display: grid;
	justify-items: center;
	gap: 12px;
	margin: 16px 16px 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.woocommerce ul.products li.product .gc-loop-simple-form { margin-top: auto; }

.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills {
	justify-content: center;
	margin-top: 0;
}

/* Keep listing-card options centered, irrespective of the number of choices. */
.woocommerce ul.products li.product .gc-loop-variation-attribute {
	display: flex;
	width: 100%;
	justify-content: center;
}

.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
}

.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill {
	flex: 0 0 auto;
}

.woocommerce ul.products li.product .gc-loop-variation-form .quantity,
.woocommerce ul.products li.product .gc-loop-simple-form .quantity {
	display: flex;
	width: 100%;
	justify-content: center;
}

.gc-loop-simple-form .gc-quantity-stepper,
.gc-loop-variation-form .gc-quantity-stepper {
	display: grid;
	width: 172px;
	height: 50px;
	grid-template-columns: 42px 1fr 42px;
	align-items: center;
	overflow: hidden;
	border: 1px solid var(--gc-border);
	border-radius: 14px;
	background: var(--gc-card);
}

.gc-loop-simple-form .gc-quantity-stepper button,
.gc-loop-variation-form .gc-quantity-stepper button {
	width: 42px;
	height: 48px;
	border: 0;
	background: transparent;
	color: var(--gc-foreground);
	cursor: pointer;
	font-size: 24px;
	font-weight: 700;
}

.gc-loop-simple-form .gc-quantity-stepper .qty,
.gc-loop-variation-form .gc-quantity-stepper .qty {
	width: 100%;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--gc-foreground);
	font-size: 19px;
	font-weight: 700;
	text-align: center;
	-moz-appearance: textfield;
}

.gc-loop-simple-form .gc-quantity-stepper .qty::-webkit-inner-spin-button,
.gc-loop-simple-form .gc-quantity-stepper .qty::-webkit-outer-spin-button,
.gc-loop-variation-form .gc-quantity-stepper .qty::-webkit-inner-spin-button,
.gc-loop-variation-form .gc-quantity-stepper .qty::-webkit-outer-spin-button { margin: 0; -webkit-appearance: none; }

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .single_add_to_cart_button {
	width: min(100%, 270px);
	min-height: 54px;
	margin: 0;
	border-color: var(--gc-add-to-cart);
	border-radius: 14px;
	background: var(--gc-add-to-cart);
	color: var(--gc-foreground);
	font-size: 18px;
	font-weight: 700;
}

@media (max-width: 767px) {
	.woocommerce ul.products li.product .gc-loop-simple-form,
	.woocommerce ul.products li.product .gc-loop-variation-form { gap: 10px; margin-inline: 10px; }
	.gc-loop-simple-form .gc-quantity-stepper,
	.gc-loop-variation-form .gc-quantity-stepper { width: 150px; height: 44px; grid-template-columns: 38px 1fr 38px; }
	.gc-loop-simple-form .gc-quantity-stepper button,
	.gc-loop-variation-form .gc-quantity-stepper button { width: 38px; height: 42px; font-size: 20px; }
	.gc-loop-simple-form .gc-quantity-stepper .qty,
	.gc-loop-variation-form .gc-quantity-stepper .qty { height: 42px; font-size: 16px; }
	.woocommerce ul.products li.product .button,
	.woocommerce ul.products li.product .single_add_to_cart_button { min-height: 46px; font-size: 16px; }
}

.single_add_to_cart_button,
body.home .woocommerce ul.products li.product .button,
body.post-type-archive-product .woocommerce ul.products li.product .button,
body.tax-product_cat .woocommerce ul.products li.product .button,
body.tax-product_tag .woocommerce ul.products li.product .button,
body.woocommerce-cart .woocommerce ul.products li.product .button {
	min-height: 56px;
	border-color: var(--gc-add-to-cart);
	background: var(--gc-add-to-cart);
	color: var(--gc-foreground);
}

.woocommerce .related.products ul.products.gc-related-carousel-track li.product,
.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product {
	display: flex;
	min-height: 560px;
	flex-direction: column;
	align-items: stretch;
}

.woocommerce .related.products ul.products.gc-related-carousel-track li.product .button,
.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .button {
	margin-top: auto;
}

/* Product form layout shared with the editable theme. */
body.single-product .woocommerce div.product form.cart,
body.single-product .woocommerce div.product form.variations_form {
	background: var(--gc-foreground) !important;
	border: 0 !important;
	border-radius: 28px !important;
	padding: 24px !important;
	box-shadow: 0 18px 38px rgba(60, 39, 42, 0.12) !important;
}

body.single-product .woocommerce div.product form.cart .variations,
body.single-product .woocommerce div.product form.variations_form .variations {
	background: var(--gc-card) !important;
	border: 0 !important;
	border-radius: 20px !important;
	padding: 20px !important;
}

body.single-product .woocommerce div.product form.variations_form .variations_button {
	display: flex !important;
	width: 100% !important;
	flex-wrap: wrap !important;
	gap: 14px !important;
}

body.single-product .woocommerce div.product form.cart .quantity,
body.single-product .woocommerce div.product form.variations_form .quantity {
	min-height: 54px !important;
	border-radius: 999px !important;
	background: var(--gc-card) !important;
}

body.single-product .woocommerce div.product form.cart .single_add_to_cart_button,
body.single-product .woocommerce div.product form.variations_form .single_add_to_cart_button {
	min-height: 54px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--gc-add-to-cart) !important;
	color: var(--gc-foreground) !important;
}

body.single-product .woocommerce div.product form.cart .gc-buy-now,
body.single-product .woocommerce div.product form.variations_form .gc-buy-now {
	width: 100% !important;
	min-height: 52px !important;
	margin: 0 !important;
	border: 1px solid rgba(255, 255, 255, 0.34) !important;
	border-radius: 999px !important;
	background: transparent !important;
	color: var(--gc-card) !important;
}

/* Active storefront compact product cards mirror */
.woocommerce ul.products li.product {
	display: flex !important;
	min-height: 0 !important;
	height: 100% !important;
	flex-direction: column;
	padding: 12px !important;
	align-self: start !important;
}

.woocommerce ul.products li.product > .woocommerce-LoopProduct-link { flex: 0 0 auto; }

.woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 1;
	margin: 0 0 8px !important;
	object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 2.35em;
	margin: 0;
	padding-inline: 4px !important;
	font-size: 15px !important;
	line-height: 1.2;
}

.woocommerce ul.products li.product .price {
	min-height: 1.2em;
	margin: 3px 4px 0 !important;
	font-size: 16px !important;
}

.woocommerce ul.products li.product .gc-loop-simple-form,
.woocommerce ul.products li.product .gc-loop-variation-form {
	display: grid !important;
	width: 100% !important;
	min-height: 0 !important;
	grid-template-rows: auto !important;
	justify-items: center;
	gap: 6px;
	margin: 8px 0 0 !important;
	padding: 8px 0 0;
}

.woocommerce ul.products li.product .gc-loop-variation-attribute,
.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills {
	min-height: 0 !important;
	margin: 0 !important;
}

.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills { gap: 4px !important; }

.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill {
	min-width: 0 !important;
	height: auto !important;
	padding: 4px 8px !important;
	border-radius: 7px !important;
	font-size: 11px !important;
	line-height: 1.1;
}

.woocommerce ul.products li.product .gc-loop-simple-form .button,
.woocommerce ul.products li.product .gc-loop-variation-form .button {
	width: 138px !important;
	min-height: 42px;
	margin: 0 auto !important;
	border: 0;
	border-radius: 7px;
	background: var(--gc-primary) !important;
	box-shadow: none;
	color: var(--gc-foreground) !important;
	font-size: 13px;
	font-weight: 700;
}

.woocommerce ul.products li.product .gc-loop-variation-form .button {
	margin-top: 6px !important;
}

@media (max-width: 767px) {
	.woocommerce ul.products li.product { padding: 8px !important; }
	.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 12px !important; }
	.woocommerce ul.products li.product .price { font-size: 14px !important; }
	.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill { padding: 3px 6px !important; font-size: 9px !important; }
	.woocommerce ul.products li.product .gc-loop-simple-form .button,
	.woocommerce ul.products li.product .gc-loop-variation-form .button { width: 100% !important; min-height: 34px; font-size: 11px; }
}

/* Summary-bounded sticky product gallery. */
body.single-product.woocommerce .product {
	display: block !important;
}

body.single-product.woocommerce .product > .gc-product-primary {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.22fr) minmax(400px, 0.78fr);
	align-items: start;
	gap: clamp(36px, 4vw, 64px);
	width: 100%;
}

@media (max-width: 767px) {
	body.single-product.woocommerce .product > .gc-product-primary {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}
}

/* Sticky product gallery while summary scrolls. */
@media (min-width: 768px) {
	body.single-product.woocommerce .product .images {
		position: sticky !important;
		top: calc(var(--wp-admin--admin-bar--height, 0px) + 156px) !important;
		align-self: start !important;
	}
}

@media (max-width: 767px) {
	body.single-product.woocommerce .product .images {
		position: static !important;
		top: auto !important;
	}
}

/* Final product-gallery frame. WooCommerce is a class on body in this theme. */
body.single-product.woocommerce .product .images {
	min-width: 0 !important;
	padding: 0 !important;
	box-sizing: border-box !important;
	border: 1px solid var(--gc-border) !important;
	border-radius: 32px !important;
	background: transparent !important;
	overflow: hidden !important;
}

body.single-product.woocommerce .product .images .woocommerce-product-gallery,
body.single-product.woocommerce .product .images .flex-viewport {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
}

body.single-product.woocommerce .product .images .woocommerce-product-gallery__wrapper {
	box-sizing: border-box !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
}

body.single-product.woocommerce .product .images .woocommerce-product-gallery__image a {
	aspect-ratio: auto !important;
	display: block !important;
	width: 100% !important;
}

body.single-product.woocommerce .product .images .woocommerce-product-gallery__image img {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	object-fit: cover !important;
}

body.single-product.woocommerce .product .images .flex-control-thumbs {
	margin: 22px 0 0 !important;
}

@media (max-width: 767px) {
	body.single-product.woocommerce .product .images { padding: 0 !important; border-radius: 22px !important; }
}

/* Borderless click-to-expand product gallery. */
body.single-product.woocommerce .product .images {
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	overflow: visible !important;
}

body.single-product.woocommerce .product .images .woocommerce-product-gallery__trigger {
	display: none !important;
}

body.single-product.woocommerce .product .images .woocommerce-product-gallery__image a {
	cursor: zoom-in;
}

/* Product-detail information accordions — reference layout. */
body.single-product .gc-product-reference-information {
	margin-top: 26px;
}

body.single-product .gc-product-accordions {
	display: grid;
	gap: 14px;
}

body.single-product .gc-product-accordion {
	border: 1px solid var(--gc-border);
	border-radius: 16px;
	background: #fff;
	box-shadow: none;
	overflow: hidden;
}

body.single-product .gc-product-accordion summary {
	min-height: 76px;
	padding: 18px 20px;
	color: var(--gc-foreground);
	font-size: 18px;
	font-weight: 800;
}

body.single-product .gc-product-accordion summary::after {
	color: var(--gc-primary);
	font-size: 30px;
	font-weight: 400;
}

body.single-product .gc-product-accordion[open] summary {
	border-bottom: 1px solid var(--gc-border);
}

body.single-product .gc-product-accordion-content {
	padding: 0 20px 20px;
	border-top: 0;
	color: var(--gc-muted-foreground);
	font-size: 15px;
	line-height: 1.55;
}


@media (max-width: 520px) {
	body.single-product .gc-product-accordions { gap: 10px; }
	body.single-product .gc-product-accordion summary { min-height: 64px; padding: 15px 16px; font-size: 16px; }
	body.single-product .gc-product-accordion-content { padding: 0 16px 16px; }
}

/* Put the image frame on the visible slider viewport, not its wide slide track. */
body.single-product .woocommerce div.product div.images {
	min-width: 0;
	overflow: hidden;
}

body.single-product .woocommerce div.product div.images .woocommerce-product-gallery,
body.single-product .woocommerce div.product div.images .flex-viewport {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box;
	border: 1px solid var(--gc-border);
	border-radius: 30px;
	overflow: hidden;
}

body.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	border: 0 !important;
	border-radius: 0 !important;
}

/* Reference product gallery card: one complete border around the gallery imagery and thumbnails. */
body.single-product .woocommerce div.product div.images {
	padding: 40px;
	border: 1px solid var(--gc-border);
	border-radius: 32px;
	background: #fff8f9;
	box-sizing: border-box;
	overflow: hidden;
}

body.single-product .woocommerce div.product div.images .woocommerce-product-gallery,
body.single-product .woocommerce div.product div.images .flex-viewport,
body.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	width: 100% !important;
	max-width: 100% !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
}

body.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image a {
	aspect-ratio: auto;
}

body.single-product .woocommerce div.product div.images .flex-control-thumbs {
	margin: 22px 0 0;
}

/* Variation gallery: round only the visible main-image viewport, not its thumbnail row or slider track. */
.woo-variation-gallery-slider-wrapper {
	border-radius: 20px !important;
	overflow: hidden !important;
}

@media (max-width: 767px) {
	body.single-product .woocommerce div.product div.images { padding: 18px; border-radius: 22px; }
}


/* Checkout Trending now: keep the Home product rail compact and away from the viewport edge. */
body.woocommerce-checkout .gc-main.gc-content-page {
	padding: 34px 0 20px;
}

body.woocommerce-checkout .gc-home-products-section .woocommerce ul.products {
	display: flex;
	width: min(calc(100% - 48px), var(--gc-container));
	margin: 18px auto 0 !important;
	gap: clamp(12px, 1.5vw, 22px);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

body.woocommerce-checkout .gc-home-products-section .woocommerce ul.products::-webkit-scrollbar {
	display: none;
}

body.woocommerce-checkout .gc-home-products-section .woocommerce ul.products li.product {
	flex: 0 0 clamp(330px, 22vw, 430px);
	margin: 0 !important;
	min-height: 0 !important;
	height: auto !important;
	padding: 12px !important;
	align-self: stretch !important;
	scroll-snap-align: start;
}

@media (max-width: 767px) {
	body.woocommerce-checkout .gc-main.gc-content-page {
		padding-bottom: 16px;
	}

	body.woocommerce-checkout .gc-home-products-section .woocommerce ul.products {
		width: calc(100% - 32px);
	}

	body.woocommerce-checkout .gc-home-products-section .woocommerce ul.products li.product {
		flex-basis: 44vw;
	}
}

/* Final reference placeholder typography for Checkout Blocks. */
html body.woocommerce-checkout .wc-block-checkout #contact-fields .wc-block-components-text-input input::placeholder,
html body.woocommerce-checkout .wc-block-checkout #shipping .wc-block-components-text-input input::placeholder,
html body.woocommerce-checkout .wc-block-checkout #shipping .wc-block-components-combobox input::placeholder,
html body.woocommerce-checkout .wc-block-checkout #shipping .wc-block-components-textarea textarea::placeholder {
	font-family: "Poppins", sans-serif !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	font-style: normal !important;
	letter-spacing: normal !important;
	line-height: 1.5 !important;
	color: var(--gc-muted-foreground) !important;
	opacity: 1;
}

/* Keep the collapsed mobile Order Summary directly below checkout notices. */
@media (max-width: 767px) {
	body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar {
		margin-top: 0 !important;
	}
}


/* Final shipping-label match: must remain after all legacy checkout styles. */
html body.woocommerce-checkout .wc-block-checkout #shipping .wc-block-components-text-input > label,
html body.woocommerce-checkout .wc-block-checkout #shipping .wc-blocks-components-select__label {
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 22px !important;
	letter-spacing: normal !important;
	color: #80636a !important;
}

/* Checkout contact typography final override */
.woocommerce-checkout .wc-block-checkout #contact-fields .wc-block-components-checkout-step__title {
	font-size: 20px !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
}

.woocommerce-checkout .wc-block-checkout #contact-fields .wc-block-components-text-input label {
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #80636a !important;
}

.woocommerce-checkout .wc-block-checkout #contact-fields .wc-block-components-text-input input {
	font-size: 11px !important;
	font-weight: 500 !important;
}

/* Checkout field values final override */
body.woocommerce-checkout .wc-block-checkout input:not([type="checkbox"]):not([type="radio"]),
body.woocommerce-checkout .wc-block-checkout select,
body.woocommerce-checkout .wc-block-checkout textarea {
	font-size: 11px !important;
	font-weight: 500 !important;
}

/* Checkout neutral border final override */
body.woocommerce-checkout .wc-block-checkout input:not([type="checkbox"]):not([type="radio"]),
body.woocommerce-checkout .wc-block-checkout select,
body.woocommerce-checkout .wc-block-checkout textarea,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control__option,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control-accordion-option {
	border: 1px solid #d6d6d6 !important;
	box-shadow: none !important;
	background: #fff !important;
}

body.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control__option:has(input:checked),
body.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
	border: 1px solid #d6d6d6 !important;
	box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control__option:focus-within,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control-accordion-option:focus-within,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control__option input:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: #d6d6d6 !important;
}

body.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control-accordion-content {
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	background: transparent !important;
}

body.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control::before,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control::after,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control-accordion-content::before,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control-accordion-content::after {
	content: none !important;
	display: none !important;
	border: 0 !important;
	box-shadow: none !important;
}

/* Match each inside field to the checkout card border. */
body.woocommerce-checkout .wc-block-checkout input:not([type="checkbox"]):not([type="radio"]),
body.woocommerce-checkout .wc-block-checkout select,
body.woocommerce-checkout .wc-block-checkout textarea,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control__option,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control-accordion-option {
	border: 1px solid var(--gc-border) !important;
	box-shadow: none !important;
}

/* Remove radio wrappers; retain only the rounded choice itself. */
body.woocommerce-checkout .wc-block-checkout .wc-block-components-payment-method-interface,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-shipping-rates-control,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-radio-control-accordion {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
}

/* Keep every checkout section heading aligned with Contact information. */
body.woocommerce-checkout .wc-block-checkout .wc-block-checkout__shipping-address .wc-block-components-title,
body.woocommerce-checkout .wc-block-checkout .wc-block-checkout__shipping-option .wc-block-components-title,
body.woocommerce-checkout .wc-block-checkout .wc-block-checkout__shipping-method .wc-block-components-title,
body.woocommerce-checkout .wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-title {
	font-size: 20px !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
}

/* One heading scale for every checkout rectangle. */
body.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step__title,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step h2,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step .wc-block-components-title {
	font-size: 20px !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
}

body.woocommerce-checkout .wc-block-checkout .wc-block-checkout__shipping-address .wc-block-components-checkout-step__heading .wc-block-components-title,
body.woocommerce-checkout .wc-block-checkout .wp-block-woocommerce-checkout-shipping-address-block .wc-block-components-checkout-step__heading .wc-block-components-title {
	font-size: 20px !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
}

/* Final exact border match for every checkout inner rectangle. */
body.woocommerce-checkout .wc-block-checkout :is(input:not([type="checkbox"]):not([type="radio"]), select, textarea, .wc-block-components-radio-control__option, .wc-block-components-radio-control-accordion-option) {
	border-width: 1px !important;
	border-style: solid !important;
	border-color: var(--gc-border) !important;
	border-radius: 18px !important;
	box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-checkout :is(input:not([type="checkbox"]):not([type="radio"]), select, textarea) {
	font-size: 13px !important;
	font-weight: 500 !important;
}

/* COD has one selectable card only; WooCommerce's accordion wrapper must stay invisible. */
body.woocommerce-checkout .wc-block-checkout #payment-method .wc-block-components-radio-control-accordion-option {
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	padding: 0 !important;
}

body.woocommerce-checkout .wc-block-checkout #payment-method .wc-block-components-radio-control__option {
	margin-bottom: 0 !important;
}

/* Keep one-line fields compact around their value. */
body.woocommerce-checkout .wc-block-checkout :is(input:not([type="checkbox"]):not([type="radio"]), select) {
	min-height: 48px !important;
	height: 48px !important;
	padding: 0 14px !important;
}

body.woocommerce-checkout .wc-block-checkout textarea {
	min-height: 76px !important;
	padding: 12px 14px !important;
}

/* Shipping Address follows the same card system as Contact Information. */
body.woocommerce-checkout .wc-block-checkout :is(#shipping-address, .wc-block-checkout__shipping-address, .wp-block-woocommerce-checkout-shipping-address-block) {
	padding: 34px 36px 36px !important;
	border-radius: 30px !important;
}

body.woocommerce-checkout .wc-block-checkout :is(#shipping-address, .wc-block-checkout__shipping-address, .wp-block-woocommerce-checkout-shipping-address-block) .wc-block-components-checkout-step__heading-container {
	margin-bottom: 22px !important;
}

body.woocommerce-checkout .wc-block-checkout :is(#shipping-address, .wc-block-checkout__shipping-address, .wp-block-woocommerce-checkout-shipping-address-block) .wc-block-components-checkout-step__title {
	font-size: 20px !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
}

body.woocommerce-checkout .wc-block-checkout :is(#shipping-address, .wc-block-checkout__shipping-address, .wp-block-woocommerce-checkout-shipping-address-block) fieldset {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 20px 16px !important;
}

body.woocommerce-checkout .wc-block-checkout fieldset:has(#shipping-first_name) > :is(.wc-block-components-text-input, .wc-block-components-combobox, .wc-block-components-textarea):has(#shipping-country),
body.woocommerce-checkout .wc-block-checkout fieldset:has(#shipping-first_name) > :is(.wc-block-components-text-input, .wc-block-components-combobox, .wc-block-components-textarea):has(#shipping-address_1),
body.woocommerce-checkout .wc-block-checkout fieldset:has(#shipping-first_name) > :is(.wc-block-components-text-input, .wc-block-components-combobox, .wc-block-components-textarea):has(#shipping-address_2) {
	grid-column: 1 / -1 !important;
	margin: 0 !important;
}

body.woocommerce-checkout .wc-block-checkout fieldset:has(#shipping-first_name) > :is(.wc-block-components-text-input, .wc-block-components-combobox, .wc-block-components-textarea) {
	margin: 0 !important;
}

/* Actual WooCommerce Blocks shipping form: two columns and intentional full rows. */
body.woocommerce-checkout .wc-block-checkout #shipping.wc-block-components-address-form {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 20px 16px !important;
}

body.woocommerce-checkout .wc-block-checkout #shipping.wc-block-components-address-form > * {
	margin: 0 !important;
}

body.woocommerce-checkout .wc-block-checkout #shipping :is(.wc-block-components-address-form__country, .wc-block-components-address-form__address_1, .wc-block-components-address-form__address_2-toggle) {
	grid-column: 1 / -1 !important;
}

body.woocommerce-checkout .wc-block-checkout #shipping .wc-block-components-address-form__address_2-hidden-input {
	display: none !important;
}

/* Select labels use a distinct component; place them above their rectangle too. */
body.woocommerce-checkout .wc-block-checkout #shipping .wc-blocks-components-select__container {
	display: flex !important;
	flex-direction: column !important;
	gap: 7px !important;
}

body.woocommerce-checkout .wc-block-checkout #shipping .wc-blocks-components-select__label {
	position: static !important;
	order: -1;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 22px !important;
	color: #80636a !important;
}

/* Shipping labels exactly match the Email address label. */
body.woocommerce-checkout .wc-block-checkout #shipping .wc-block-components-text-input > label,
body.woocommerce-checkout .wc-block-checkout #shipping .wc-blocks-components-select__label {
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 22px !important;
	letter-spacing: normal !important;
	color: #80636a !important;
}

/* Keep native WooCommerce selects on the same field baseline as text inputs. */
body.woocommerce-checkout .wc-block-checkout #shipping .wc-block-components-state-input > .wc-blocks-components-select {
	margin-top: 0 !important;
}

body.woocommerce-checkout .wc-block-checkout #shipping .wc-blocks-components-select__select {
	min-height: 48px !important;
	padding: 0 48px 0 20px !important;
	background-position: right 20px center !important;
}

body.woocommerce-checkout .wc-block-checkout #shipping .wc-blocks-components-select__expand {
	top: calc(100% - 24px) !important;
	right: 20px !important;
}

/* Phones use a simple one-field-per-row checkout; desktop keeps its two-column grid. */
@media (max-width: 767px) {
	body.woocommerce-checkout .wc-block-checkout #shipping.wc-block-components-address-form {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 16px !important;
	}

	body.woocommerce-checkout .wc-block-checkout #shipping.wc-block-components-address-form > * {
		grid-column: 1 / -1 !important;
	}

	body.woocommerce-checkout .wc-block-checkout #contact-fields .wc-block-components-checkout-step__content {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 16px !important;
	}

	body.woocommerce-checkout .wc-block-checkout #contact-fields .wc-block-components-checkout-step__content > * {
		grid-column: 1 / -1 !important;
	}
}

/* Separate Country / Region from the name row. */
body.woocommerce-checkout .wc-block-checkout :is(.wc-block-components-text-input, .wc-block-components-combobox):has(#shipping-country),
body.woocommerce-checkout .wc-block-checkout :is(.wc-block-components-text-input, .wc-block-components-combobox):has(#billing-country) {
	margin-top: 12px !important;
}

/* Compact, even spacing for the shipping address form. */
body.woocommerce-checkout .wc-block-checkout fieldset:has(#shipping-first_name),
body.woocommerce-checkout .wc-block-checkout fieldset:has(#billing-first_name) {
	row-gap: 16px !important;
	column-gap: 16px !important;
}

body.woocommerce-checkout .wc-block-checkout fieldset:has(#shipping-first_name) .wc-block-components-checkbox,
body.woocommerce-checkout .wc-block-checkout fieldset:has(#billing-first_name) .wc-block-components-checkbox {
	margin-top: 4px !important;
}

/* Reference-style field labels: compact and medium rather than heavy. */
body.woocommerce-checkout .wc-block-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-combobox label,
body.woocommerce-checkout .wc-block-checkout .wc-block-components-textarea label {
	font-size: 16px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
	color: var(--gc-foreground) !important;
}

/* Put labels above the rectangle, rather than floating inside it. */
body.woocommerce-checkout .wc-block-checkout :is(.wc-block-components-text-input, .wc-block-components-combobox, .wc-block-components-textarea) {
	display: flex !important;
	flex-direction: column !important;
	gap: 7px !important;
}

body.woocommerce-checkout .wc-block-checkout :is(.wc-block-components-text-input, .wc-block-components-combobox, .wc-block-components-textarea) > label {
	position: static !important;
	order: -1;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	transform: none !important;
	pointer-events: auto !important;
}

/* Order-summary product images use one square thumbnail without a padded second block. */
body.woocommerce-checkout .wc-block-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item {
	align-items: flex-start !important;
}

body.woocommerce-checkout .wc-block-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__image {
	position: relative !important;
	flex: 0 0 48px !important;
	width: 48px !important;
	height: 48px !important;
	margin: 0 !important;
	margin-left: 12px !important;
	padding: 0 !important;
	border-radius: 10px !important;
	background: transparent !important;
	overflow: visible !important;
}

body.woocommerce-checkout .wc-block-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__image img {
	display: block !important;
	width: 48px !important;
	height: 48px !important;
	max-width: none !important;
	border-radius: 10px !important;
	object-fit: cover !important;
}

body.woocommerce-checkout .wc-block-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
	top: -8px !important;
	right: -8px !important;
}

body.woocommerce-checkout .wc-block-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__description {
	min-width: 0 !important;
	padding: 0 16px !important;
}

body.woocommerce-checkout .wc-block-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__total-price {
	margin-right: 12px !important;
	padding-top: 0 !important;
}

/* Keep coupon controls on one clean baseline. */
body.woocommerce-checkout .wc-block-checkout .wc-block-components-totals-coupon__form {
	align-items: flex-end !important;
	gap: 12px !important;
}

body.woocommerce-checkout .wc-block-checkout .wc-block-components-totals-coupon__button {
	height: 48px !important;
	min-height: 48px !important;
	align-self: flex-end !important;
}

/* Live Checkout Block reference alignment */
.woocommerce-checkout .gc-main.gc-content-page {
	padding: 34px 0 80px;
}

.woocommerce-checkout .gc-checkout-steps,
.woocommerce-checkout .wc-block-checkout {
	font-family: 'Poppins', sans-serif;
}

.woocommerce-checkout .gc-checkout-steps {
	margin-bottom: 28px;
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step {
	border-radius: 28px;
	padding: 32px 36px;
	margin-bottom: 30px;
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step__title,
.woocommerce-checkout .wc-block-checkout .wc-block-components-checkout-step h2,
.woocommerce-checkout .wc-block-checkout .wc-block-components-title {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.3;
}

@media (min-width: 960px) {
	.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar {
		padding: 32px 34px 28px;
		border: 1px solid var(--gc-border);
		border-radius: 28px;
		background: var(--gc-card);
	}

	.woocommerce-checkout .wc-block-checkout .wc-block-components-order-summary {
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent !important;
	}

	.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar .wc-block-components-order-summary__title {
		margin: 0 0 20px;
		font-size: 27px;
		font-weight: 700;
		line-height: 1.25;
	}
}

@media (max-width: 959px) {
	.woocommerce-checkout .gc-main.gc-content-page {
		padding: 28px 0 56px;
	}

	.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar {
		padding: 26px 24px;
		border: 1px solid var(--gc-border);
		border-radius: 24px;
		background: var(--gc-card);
	}

	.woocommerce-checkout .wc-block-checkout .wc-block-components-order-summary {
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent !important;
	}
}

/* Aligned listing card actions */
.woocommerce ul.products li.product {
	align-self: stretch !important;
}

body.post-type-archive-product .gc-commerce-main ul.products li.product .gc-loop-simple-form,
body.post-type-archive-product .gc-commerce-main ul.products li.product .gc-loop-variation-form,
body.tax-product_cat .gc-commerce-main ul.products li.product .gc-loop-simple-form,
body.tax-product_cat .gc-commerce-main ul.products li.product .gc-loop-variation-form,
body.tax-product_tag .gc-commerce-main ul.products li.product .gc-loop-simple-form,
body.tax-product_tag .gc-commerce-main ul.products li.product .gc-loop-variation-form,
.gc-product-listing ul.products li.product .gc-loop-simple-form,
.gc-product-listing ul.products li.product .gc-loop-variation-form,
body.home .woocommerce ul.products li.product .gc-loop-simple-form,
body.home .woocommerce ul.products li.product .gc-loop-variation-form,
.woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-simple-form,
.woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form {
	margin: auto 0 0 !important;
	padding: 8px 0 0 !important;
}

/* Pink compact product cards */
.woocommerce ul.products li.product {
	min-height: 0 !important;
	height: 100% !important;
	padding: 12px !important;
	align-self: stretch !important;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 1;
	margin-bottom: 8px !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 2.3em;
	padding-inline: 4px !important;
	font-size: 15px !important;
}

.woocommerce ul.products li.product .price {
	min-height: 1.2em;
	margin: 3px 4px 0 !important;
	font-size: 16px !important;
}

.woocommerce ul.products li.product .gc-loop-simple-form,
.woocommerce ul.products li.product .gc-loop-variation-form {
	justify-items: center;
	gap: 6px;
	margin: auto 0 0 !important;
}

.woocommerce ul.products li.product .gc-loop-variation-attribute { min-height: 0; }

.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills {
	gap: 4px !important;
	min-height: 0;
	margin: 0 !important;
}

.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill {
	min-width: 0;
	padding: 4px 8px;
	border-radius: 7px;
	font-size: 11px;
	line-height: 1.1;
}

.woocommerce ul.products li.product .gc-loop-simple-form .quantity,
.woocommerce ul.products li.product .gc-loop-variation-form .quantity {
	width: 138px;
}

.woocommerce ul.products li.product .gc-quantity-stepper {
	height: 38px;
	grid-template-columns: 38px minmax(0, 1fr) 38px;
}

.woocommerce ul.products li.product .gc-quantity-stepper button,
.woocommerce ul.products li.product .gc-quantity-stepper .qty {
	height: 36px;
	font-size: 15px;
}

.woocommerce ul.products li.product .gc-loop-simple-form .button,
.woocommerce ul.products li.product .gc-loop-variation-form .button {
	width: 138px !important;
	min-height: 42px;
	margin: 0 auto;
	border-radius: 7px;
	background: var(--gc-primary) !important;
	color: var(--gc-foreground) !important;
	font-size: 13px;
	font-weight: 700;
}

@media (max-width: 767px) {
	.woocommerce ul.products li.product { padding: 8px !important; }
	.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 12px !important; }
	.woocommerce ul.products li.product .price { font-size: 14px !important; }
	.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill { padding: 4px 8px; font-size: 10px; }
	.woocommerce ul.products li.product .gc-loop-simple-form .quantity,
	.woocommerce ul.products li.product .gc-loop-variation-form .quantity,
	.woocommerce ul.products li.product .gc-loop-simple-form .button,
	.woocommerce ul.products li.product .gc-loop-variation-form .button { width: 122px !important; }
	.woocommerce ul.products li.product .gc-loop-simple-form .button,
	.woocommerce ul.products li.product .gc-loop-variation-form .button { min-height: 38px; font-size: 11px; }
}

/* Unified reference listing cards */
.woocommerce ul.products li.product {
	min-height: 0 !important;
	padding: 18px 18px 20px !important;
	border: 1px solid #c9d9ce;
	border-radius: 18px;
	background: #fff;
	box-shadow: none;
	overflow: visible;
}

.woocommerce ul.products li.product > .woocommerce-LoopProduct-link { flex: 0 0 auto; }

.woocommerce ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0 0 12px !important;
	border-radius: 13px;
	background: #fafcfb;
	object-fit: contain;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 2.5em;
	margin: 0;
	padding: 0 4px !important;
	color: #282828;
	font-size: 17px !important;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}

.woocommerce ul.products li.product .price {
	min-height: 1.4em;
	justify-content: center;
	margin: 8px 0 0 !important;
	color: #342a2a !important;
	font-size: 20px !important;
	font-weight: 800 !important;
}

.woocommerce ul.products li.product .gc-loop-simple-form,
.woocommerce ul.products li.product .gc-loop-variation-form {
	display: grid;
	width: 100% !important;
	grid-template-columns: 1fr;
	grid-template-rows: auto auto auto;
	gap: 10px;
	margin: 12px 0 0 !important;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.woocommerce ul.products li.product .gc-loop-variation-attribute { min-height: 36px; }

.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills {
	justify-content: center;
	gap: 8px !important;
	min-height: 36px;
	margin: 0 !important;
}

.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill {
	min-width: 0;
	padding: 7px 13px;
	border-color: #c9d9ce;
	border-radius: 9px;
	background: #fff;
	color: #1e4930;
	font-size: 14px;
	font-weight: 600;
}

.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill.is-selected {
	border-color: #07853f;
	background: #07853f;
	color: #fff;
}

.woocommerce ul.products li.product .gc-loop-simple-form .quantity,
.woocommerce ul.products li.product .gc-loop-variation-form .quantity {
	display: block !important;
	width: 170px;
	margin: 0 auto;
}

.woocommerce ul.products li.product .gc-quantity-stepper {
	display: grid;
	width: 100%;
	height: 46px;
	grid-template-columns: 48px minmax(0, 1fr) 48px;
	align-items: center;
	border: 1px solid #dce7df;
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
}

.woocommerce ul.products li.product .gc-quantity-stepper button {
	height: 44px;
	border: 0;
	background: transparent;
	color: #302829;
	cursor: pointer;
	font-size: 23px;
	font-weight: 700;
}

.woocommerce ul.products li.product .gc-quantity-stepper .qty {
	width: 100%;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #302829;
	font-size: 17px;
	font-weight: 600;
	text-align: center;
	-moz-appearance: textfield;
}

.woocommerce ul.products li.product .gc-loop-simple-form .button,
.woocommerce ul.products li.product .gc-loop-variation-form .button {
	width: 170px !important;
	min-height: 52px;
	margin: 0 auto;
	border: 0;
	border-radius: 8px;
	background: #07853f !important;
	box-shadow: 0 8px 16px rgba(7, 133, 63, 0.2);
	color: #fff;
	font-size: 17px;
	font-weight: 700;
}

.woocommerce ul.products li.product .gc-loop-simple-form::before { display: none; }

@media (max-width: 767px) {
	.woocommerce ul.products li.product { padding: 10px 10px 12px !important; border-radius: 13px; }
	.woocommerce ul.products li.product a img { margin-bottom: 8px !important; border-radius: 9px; }
	.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 13px !important; }
	.woocommerce ul.products li.product .price { margin-top: 5px !important; font-size: 15px !important; }
	.woocommerce ul.products li.product .gc-loop-simple-form,
	.woocommerce ul.products li.product .gc-loop-variation-form { gap: 7px; margin-top: 8px !important; }
	.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill { padding: 5px 8px; font-size: 11px; }
	.woocommerce ul.products li.product .gc-loop-simple-form .quantity,
	.woocommerce ul.products li.product .gc-loop-variation-form .quantity,
	.woocommerce ul.products li.product .gc-loop-simple-form .button,
	.woocommerce ul.products li.product .gc-loop-variation-form .button { width: 100% !important; }
	.woocommerce ul.products li.product .gc-quantity-stepper { height: 38px; grid-template-columns: 38px minmax(0, 1fr) 38px; }
	.woocommerce ul.products li.product .gc-quantity-stepper button,
	.woocommerce ul.products li.product .gc-quantity-stepper .qty { height: 36px; }
	.woocommerce ul.products li.product .gc-loop-simple-form .button,
	.woocommerce ul.products li.product .gc-loop-variation-form .button { min-height: 42px; font-size: 14px; }
}

/* Keep loop-card boundaries directly below their action controls. */
.woocommerce ul.products li.product {
	min-height: 0 !important;
	height: auto !important;
	padding-bottom: 14px !important;
	align-self: start !important;
}

/* All listing product cards: aligned, compact purchase controls. */
.woocommerce ul.products li.product .gc-loop-simple-form,
.woocommerce ul.products li.product .gc-loop-variation-form {
	display: grid !important;
	width: 100% !important;
	max-width: 268px;
	grid-template-rows: 34px 74px 68px;
	gap: 0 !important;
	margin: 10px auto 14px !important;
	justify-items: center;
	align-items: center;
}

.woocommerce ul.products li.product .gc-loop-simple-form::before {
	width: 100%;
	height: 34px;
	content: "";
}

.woocommerce ul.products li.product .gc-loop-variation-attribute,
.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills {
	min-height: 0 !important;
	margin: 0 !important;
	gap: 6px !important;
}

.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill {
	min-height: 28px;
	padding: 5px 11px !important;
	font-size: 11px !important;
}

.woocommerce ul.products li.product .gc-loop-simple-form .quantity,
.woocommerce ul.products li.product .gc-loop-variation-form .quantity {
	margin: 0 !important;
}

.woocommerce ul.products li.product .gc-loop-simple-form .button,
.woocommerce ul.products li.product .gc-loop-variation-form .button {
	width: 240px !important;
	max-width: 100%;
	min-height: 48px !important;
	margin: 0 !important;
	justify-self: center;
	align-self: center;
}

@media (max-width: 767px) {
	.woocommerce ul.products li.product .gc-loop-simple-form,
	.woocommerce ul.products li.product .gc-loop-variation-form {
		max-width: 214px;
		grid-template-rows: 30px 64px 58px;
		margin: 8px auto 10px !important;
	}

	.woocommerce ul.products li.product .gc-loop-simple-form::before { height: 30px; }

	.woocommerce ul.products li.product .gc-loop-simple-form .button,
	.woocommerce ul.products li.product .gc-loop-variation-form .button {
		width: 194px !important;
		min-height: 42px !important;
	}
}

/* All listing product cards: compact proportions with prominent imagery. */
.woocommerce ul.products li.product {
	min-height: 650px !important;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 0.72 !important;
	object-fit: contain !important;
}

.gc-product-card-category {
	margin-top: 14px;
	margin-bottom: 5px;
	font-size: 10px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 2.35em;
	font-size: 15px !important;
	line-height: 1.18;
}

.woocommerce ul.products li.product .price {
	margin-top: 6px !important;
	font-size: 16px !important;
}

.woocommerce ul.products li.product .gc-loop-variation-pill {
	min-height: 34px;
	padding: 7px 15px !important;
	font-size: 12px !important;
	line-height: 1;
}

@media (max-width: 767px) {
	.woocommerce ul.products li.product { min-height: 530px !important; }

	.woocommerce ul.products li.product a img {
		aspect-ratio: 1 / 0.76 !important;
	}

	.gc-product-card-category { font-size: 9px; }

	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		font-size: 12px !important;
	}

	.woocommerce ul.products li.product .price { font-size: 14px !important; }

	.woocommerce ul.products li.product .gc-loop-variation-pill {
		min-height: 30px;
		padding: 6px 12px !important;
		font-size: 11px !important;
	}
}

/* Product detail reference purchase card — final cascade override */
body.single-product .woocommerce div.product form.cart,
body.single-product .woocommerce div.product form.variations_form {
	display: flex !important;
	gap: 16px !important;
	background: #1f1f1f !important;
}

.single-product .gc-variation-pill {
	display: inline-flex;
	width: 56px;
	min-width: 56px;
	height: 56px;
	padding: 0;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 50%;
	background: transparent;
	color: #fff;
}

.single-product .gc-purchase-setup { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 16px; color: #fff; font-size: 18px; }
.single-product .gc-purchase-price { font-size: clamp(1.65rem, 3vw, 2.2rem); font-weight: 800; }
.single-product .gc-purchase-price del { display: none; }

body.single-product .woocommerce div.product form.cart .quantity,
body.single-product .woocommerce div.product form.variations_form .quantity { flex: 0 0 154px; background: #fff !important; }
body.single-product .woocommerce div.product form.cart .single_add_to_cart_button,
body.single-product .woocommerce div.product form.variations_form .single_add_to_cart_button { flex: 1 1 220px; background: #fff !important; color: #1f1f1f !important; }

@media (max-width: 520px) {
	.single-product .gc-variation-pill { width: 48px; min-width: 48px; height: 48px; }
}

/* Product detail reference purchase card — final cascade override */
body.single-product .woocommerce div.product form.cart,
body.single-product .woocommerce div.product form.variations_form {
	display: flex !important;
	gap: 16px !important;
	background: #1f1f1f !important;
}

.single-product .gc-variation-pill {
	display: inline-flex;
	width: 56px;
	min-width: 56px;
	height: 56px;
	padding: 0;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 50%;
	background: transparent;
	color: #fff;
}

.single-product .gc-purchase-setup {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	color: #fff;
	font-size: 18px;
}

.single-product .gc-purchase-price {
	font-size: clamp(1.65rem, 3vw, 2.2rem);
	font-weight: 800;
}

.single-product .gc-purchase-price del {
	display: none;
}

body.single-product .woocommerce div.product form.cart .quantity,
body.single-product .woocommerce div.product form.variations_form .quantity {
	flex: 0 0 154px;
	background: #fff !important;
}

body.single-product .woocommerce div.product form.cart .single_add_to_cart_button,
body.single-product .woocommerce div.product form.variations_form .single_add_to_cart_button {
	flex: 1 1 220px;
	background: #fff !important;
	color: #1f1f1f !important;
}

@media (max-width: 520px) {
	.single-product .gc-variation-pill {
		width: 48px;
		min-width: 48px;
		height: 48px;
	}
}

/* Product detail reference purchase card */
.single-product .gc-variation-pill {
	width: 56px;
	min-width: 56px;
	height: 56px;
	padding: 0;
	border-color: rgba(255, 255, 255, 0.38);
	border-radius: 50%;
	background: transparent;
	color: var(--gc-card);
	font-size: 15px;
}

.single-product .gc-purchase-setup {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	color: var(--gc-card);
	font-size: 18px;
}

.single-product .gc-purchase-price {
	font-size: clamp(1.65rem, 3vw, 2.2rem);
	font-weight: 800;
}

.single-product .gc-purchase-price del {
	display: none;
}

.single-product .woocommerce div.product form.cart .quantity,
.single-product .woocommerce div.product form.variations_form .quantity {
	flex: 0 0 154px;
	background: var(--gc-card) !important;
}

.single-product .woocommerce div.product form.cart .single_add_to_cart_button,
.single-product .woocommerce div.product form.variations_form .single_add_to_cart_button {
	flex: 1 1 220px;
	background: var(--gc-card) !important;
	color: var(--gc-foreground) !important;
}

@media (max-width: 520px) {
	.single-product .gc-variation-pill {
		width: 48px;
		min-width: 48px;
		height: 48px;
	}
}

/* Product detail reference information */
.single-product .gc-product-reference-information {
	display: grid;
	gap: 22px;
	margin-top: 28px;
}

.single-product .gc-product-shipping {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	font-size: 15px;
}

.single-product .gc-product-shipping span,
.single-product .gc-product-benefit > span {
	display: inline-grid;
	place-items: center;
	font-size: 20px;
	line-height: 1;
}

.single-product .gc-product-guide-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.single-product .gc-product-guide-action {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border: 1px solid var(--gc-border);
	border-radius: 999px;
	background: var(--gc-card);
	font-weight: 800;
	transition: 0.2s ease;
}

.single-product .gc-product-guide-action:hover,
.single-product .gc-product-guide-action:focus-visible {
	border-color: var(--gc-primary);
	background: var(--gc-secondary);
	outline: 0;
}

.single-product .gc-product-benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.single-product .gc-product-benefit {
	display: grid;
	min-height: 128px;
	place-items: center;
	align-content: center;
	gap: 12px;
	padding: 16px 10px;
	border: 1px solid var(--gc-border);
	border-radius: 18px;
	background: var(--gc-card);
	font-size: 13px;
	text-align: center;
}

.single-product .gc-product-benefit strong {
	max-width: 11ch;
}

.single-product .gc-product-accordions {
	display: grid;
	gap: 12px;
}

.single-product .gc-product-accordion {
	border: 1px solid var(--gc-border);
	border-radius: 18px;
	background: var(--gc-card);
	overflow: hidden;
}

.single-product .gc-product-accordion summary {
	display: flex;
	min-height: 72px;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	cursor: pointer;
	font-size: 17px;
	font-weight: 800;
	list-style: none;
}

.single-product .gc-product-accordion summary::-webkit-details-marker {
	display: none;
}

.single-product .gc-product-accordion summary::after {
	content: "+";
	color: var(--gc-muted-foreground);
	font-size: 26px;
	font-weight: 500;
}

.single-product .gc-product-accordion[open] summary::after {
	content: "−";
}

.single-product .gc-product-accordion-content {
	padding: 0 22px 22px;
	border-top: 1px solid var(--gc-border);
	color: var(--gc-muted-foreground);
	font-size: 14px;
}

.single-product .gc-product-accordion-content p:first-child {
	margin-top: 16px;
}

.single-product .gc-product-accordion-content p:last-child {
	margin-bottom: 0;
}

.single-product .gc-product-attributes {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
	gap: 9px 16px;
	margin: 18px 0 0;
}

.single-product .gc-product-attributes dt {
	font-weight: 800;
}

.single-product .gc-product-attributes dd {
	margin: 0;
}

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

	.single-product .gc-product-benefit {
		min-height: 92px;
		grid-template-columns: auto 1fr;
		place-items: center start;
		text-align: left;
	}

	.single-product .gc-product-benefit strong {
		max-width: none;
	}
}

/* Match Related Products cards to the four-column Shop listing on tablet and desktop. */
@media (min-width: 768px) {
	.woocommerce .related.products ul.products.gc-related-carousel-track,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		padding-bottom: 0;
		overflow: visible;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product {
		width: auto !important;
		min-height: 420px;
		flex: initial;
		padding-bottom: 16px;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product a img,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product a img {
		height: auto;
		aspect-ratio: 1 / .68;
		margin-bottom: 14px !important;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .woocommerce-loop-product__title,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .woocommerce-loop-product__title,
	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .price,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .price {
		margin-inline: 14px !important;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .button,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .button {
		width: calc(100% - 28px);
		margin-inline: 14px;
	}

	/* Related product option controls match Shop cards */
	.single-product .woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form,
	.single-product .woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form {
		display: flex;
		min-height: 118px;
		flex-direction: column;
		margin: auto 14px 0;
	}

	.single-product .woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-variation-pills,
	.single-product .woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .gc-variation-pills {
		min-height: 58px;
		gap: 6px;
		margin-top: 0;
	}

	.single-product .woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-variation-pill,
	.single-product .woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .gc-variation-pill {
		/* Reset product-detail variation circle sizing inside Related Products */
		width: auto;
		min-width: 48px;
		height: auto;
		padding: 7px 10px;
		border-radius: 999px;
		font-size: 11px;
	}
}

/* Related Products mobile cards match Shop listing */
@media (max-width: 767px) {
	.woocommerce .related.products ul.products.gc-related-carousel-track,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		padding-bottom: 0;
		overflow: visible;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product {
		width: auto !important;
		min-height: 292px;
		flex: initial;
		padding-bottom: 10px;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product a img,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product a img {
		height: auto;
		aspect-ratio: 1 / .78;
		margin-bottom: 6px !important;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .woocommerce-loop-product__title,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .woocommerce-loop-product__title {
		min-height: 2.3em;
		margin-inline: 6px !important;
		font-size: 10px;
		line-height: 1.18;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .price,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .price {
		margin: 3px 6px 0 !important;
		font-size: 12px;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form {
		min-height: 92px;
		margin: auto 8px 0;
	}

	.single-product .woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-variation-pills,
	.single-product .woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .gc-variation-pills {
		min-height: 34px;
		gap: 4px;
	}

	.single-product .woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-variation-pill,
	.single-product .woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .gc-variation-pill {
		width: auto;
		min-width: 22px;
		height: 22px;
		padding: 2px 5px;
		font-size: 8px;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .button,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .button {
		width: calc(100% - 16px);
		min-height: 32px;
		height: 32px;
		margin: auto 8px 0;
		font-size: 12px;
	}
}

/* Related Products use the complete Shop card layout */
@media (min-width: 768px) {
	.woocommerce .related.products ul.products.gc-related-carousel-track,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track {
		gap: 24px;
		margin-top: 36px !important;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product {
		display: flex;
		min-height: 420px;
		padding: 0 0 16px;
		flex-direction: column;
		justify-content: flex-start;
		border: 1px solid var(--gc-border);
		border-radius: 12px;
		background: var(--gc-card);
		box-shadow: 0 12px 30px rgba(83, 49, 55, 0.08);
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product > .woocommerce-LoopProduct-link,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product > .woocommerce-LoopProduct-link {
		display: block;
		flex: 0 0 auto;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product a img,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product a img {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / .68;
		margin: 0 0 14px !important;
		background: #fff6f4;
		object-fit: contain;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .woocommerce-loop-product__title,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .woocommerce-loop-product__title {
		display: -webkit-box;
		min-height: 2.5em;
		margin: 0;
		padding-inline: 14px !important;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		font-size: 16px;
		font-weight: 700;
		line-height: 1.25;
		text-align: center;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .price,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .price {
		display: flex;
		min-height: 1.6em;
		align-items: center;
		justify-content: center;
		gap: 8px;
		margin: 5px 14px 0 !important;
		font-size: 18px;
		font-weight: 800;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form {
		display: flex;
		min-height: 118px;
		flex-direction: column;
		justify-content: flex-end;
		margin: auto 14px 0;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .button,
	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .single_add_to_cart_button,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .button,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .single_add_to_cart_button {
		display: flex !important;
		width: calc(100% - 28px);
		min-height: 44px;
		margin: auto 14px 0;
		font-size: 15px;
	}
}

@media (max-width: 767px) {
	.woocommerce .related.products ul.products.gc-related-carousel-track,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track {
		width: calc(100% - 16px);
		gap: 10px;
		margin: 12px auto 64px !important;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product {
		min-height: 292px;
		padding-bottom: 10px;
		border-radius: 9px;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product a img,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product a img {
		aspect-ratio: 1 / .78;
		margin-bottom: 6px !important;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .woocommerce-loop-product__title,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .woocommerce-loop-product__title {
		min-height: 2.3em;
		padding-inline: 6px !important;
		font-size: 10px;
		line-height: 1.18;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .price,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .price {
		margin: 3px 6px 0 !important;
		font-size: 12px;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form {
		min-height: 92px;
		padding-top: 6px;
		margin: auto 8px 0;
	}

	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .button,
	.woocommerce .related.products ul.products.gc-related-carousel-track li.product .single_add_to_cart_button,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .button,
	.woocommerce .upsells.products ul.products.gc-related-carousel-track li.product .single_add_to_cart_button {
		width: calc(100% - 16px);
		min-height: 32px;
		height: 32px;
		margin: auto 8px 0;
		font-size: 12px;
	}
}

/* Compact homepage product cards to match the four-card reference layout. */
body.home .woocommerce ul.products li.product {
	min-height: 430px;
	padding-bottom: 16px;
	justify-content: flex-start;
}

body.home .woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 0.82;
	margin-bottom: 14px !important;
}

body.home .woocommerce ul.products li.product > .woocommerce-LoopProduct-link {
	flex: 0 0 auto;
}

body.home .woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding-inline: 14px !important;
	font-size: 16px !important;
}

body.home .woocommerce ul.products li.product .price {
	margin: 5px 14px 0 !important;
	font-size: 18px !important;
}

body.home .woocommerce ul.products li.product .gc-loop-variation-form {
	min-height: 0;
	margin: 10px 14px 0;
}

body.home .woocommerce ul.products li.product .button {
	min-height: 44px;
	margin: 12px 14px 0;
	width: calc(100% - 28px);
	font-size: 15px;
}

/* Reserve the same swatch area in every homepage card and keep actions aligned. */
body.home .woocommerce ul.products li.product {
	min-height: 420px;
}

body.home .woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 0.68;
}

.woocommerce ul.products li.product .gc-loop-variation-attribute label {
	display: none;
}

body.home .woocommerce ul.products li.product .gc-loop-variation-form {
	display: flex;
	min-height: 118px;
	flex-direction: column;
	justify-content: flex-end;
	margin-top: auto;
}

body.home .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills {
	min-height: 58px;
	margin-top: 0;
}

body.home .woocommerce ul.products li.product .gc-loop-variation-form .single_add_to_cart_button {
	min-height: 44px;
	margin-top: auto;
}

body.home .woocommerce ul.products li.product > .button {
	margin: auto 14px 0;
}

@media (max-width: 640px) {
	body:is(.home, .woocommerce-checkout) .gc-home-products-section {
		padding: 24px 0 32px;
	}

	body.home .gc-home-products-section .gc-container h2 {
		margin-bottom: 10px;
	}

	.gc-header-main {
		position: relative;
		width: calc(100% - 16px);
		height: 56px;
	}

	.gc-header-main .gc-menu-toggle {
		position: absolute;
		top: 8px;
		left: 0;
	}

	.gc-mobile-header-search {
		position: absolute;
		top: 8px;
		left: 38px;
		display: inline-flex;
		width: 34px;
		height: 40px;
		align-items: center;
		justify-content: center;
		color: var(--gc-foreground);
	}

	.gc-header-brand .gc-brand {
		font-size: 16px;
	}

	body.home .woocommerce .products,
	body.home .woocommerce ul.products {
		width: calc(100% - 16px);
		gap: 10px;
		margin-top: 0 !important;
	}

	body.home .woocommerce ul.products li.product {
		min-height: 248px;
		padding-bottom: 7px;
		border-radius: 9px;
	}

	body.home .woocommerce ul.products li.product a img {
		aspect-ratio: 1 / .78;
		margin-bottom: 6px !important;
	}

	body.home .woocommerce ul.products li.product .woocommerce-loop-product__title {
		min-height: 2.3em;
		padding-inline: 6px !important;
		font-size: 10px !important;
		line-height: 1.18;
	}

	body.home .woocommerce ul.products li.product .price {
		margin: 3px 6px 0 !important;
		font-size: 12px !important;
	}

	body.home .woocommerce ul.products li.product .gc-loop-variation-form {
		min-height: 57px;
		margin: auto 6px 0;
	}

	body.home .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills {
		min-height: 29px;
	}

	body.home .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill {
		min-width: 26px;
		padding: 3px 5px;
		font-size: 9px;
	}

	body.home .woocommerce ul.products li.product .button,
	body.home .woocommerce ul.products li.product .single_add_to_cart_button {
		width: calc(100% - 12px);
		min-height: 30px;
		margin: auto 6px 0;
		font-size: 10px;
	}

	:root {
		--gc-mobile-nav: 80px;
	}

	.gc-mobile-footer {
		display: flex;
		height: var(--gc-mobile-nav);
		padding-bottom: 3px;
		border-top-color: #f2dfe7;
		background: rgba(255, 241, 246, 0.85);
		box-shadow: none;
	}

	.gc-mobile-footer a {
		flex: 1 1 25%;
		min-width: 0;
		padding-inline: 2px;
		color: #4d4650;
		font-size: 12px;
		font-weight: 500;
	}

	.gc-mobile-footer a span {
		display: block;
		max-width: 100%;
		overflow: hidden;
		text-align: center;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.gc-mobile-footer .gc-icon {
		width: 18px;
		height: 18px;
	}

	body.home .woocommerce ul.products li.product {
		min-height: 248px;
		padding-bottom: 10px;
	}

	body.home .woocommerce ul.products li.product a img {
		aspect-ratio: 1 / .78;
	}

	body.home .woocommerce ul.products li.product .button,
	body.home .woocommerce ul.products li.product .single_add_to_cart_button {
		display: flex !important;
		width: calc(100% - 16px);
		min-height: 30px;
		margin: auto 8px 0;
		font-size: 10px;
	}

	body.home .woocommerce ul.products li.product .gc-loop-variation-form {
		min-height: 57px;
		margin: auto 8px 0;
	}

	body.home .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills {
		min-height: 29px;
		gap: 4px;
	}

	body.home .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill {
		min-width: 26px;
		padding: 3px 5px;
		font-size: 9px;
	}
}

/* Shop listing product-card alignment */
body.post-type-archive-product .woocommerce ul.products li.product,
body.tax-product_cat .woocommerce ul.products li.product,
body.tax-product_tag .woocommerce ul.products li.product,
body.woocommerce-cart .woocommerce ul.products li.product {
	min-height: 420px;
	padding-bottom: 16px;
	justify-content: flex-start;
}

body.post-type-archive-product .woocommerce ul.products li.product a img,
body.tax-product_cat .woocommerce ul.products li.product a img,
body.tax-product_tag .woocommerce ul.products li.product a img,
body.woocommerce-cart .woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 0.68;
	margin-bottom: 14px !important;
}

body.post-type-archive-product .woocommerce ul.products li.product > .woocommerce-LoopProduct-link,
body.tax-product_cat .woocommerce ul.products li.product > .woocommerce-LoopProduct-link,
body.tax-product_tag .woocommerce ul.products li.product > .woocommerce-LoopProduct-link,
body.woocommerce-cart .woocommerce ul.products li.product > .woocommerce-LoopProduct-link {
	flex: 0 0 auto;
}

body.post-type-archive-product .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.tax-product_tag .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce-cart .woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding-inline: 14px !important;
	font-size: 16px !important;
}

body.post-type-archive-product .woocommerce ul.products li.product .price,
body.tax-product_cat .woocommerce ul.products li.product .price,
body.tax-product_tag .woocommerce ul.products li.product .price,
body.woocommerce-cart .woocommerce ul.products li.product .price {
	margin: 5px 14px 0 !important;
	font-size: 18px !important;
}

body.post-type-archive-product .woocommerce ul.products li.product .gc-loop-variation-form,
body.tax-product_cat .woocommerce ul.products li.product .gc-loop-variation-form,
body.tax-product_tag .woocommerce ul.products li.product .gc-loop-variation-form,
body.woocommerce-cart .woocommerce ul.products li.product .gc-loop-variation-form {
	display: flex;
	min-height: 118px;
	flex-direction: column;
	justify-content: flex-end;
	margin: auto 14px 0;
}

body.post-type-archive-product .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills,
body.tax-product_cat .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills,
body.tax-product_tag .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills,
body.woocommerce-cart .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills {
	min-height: 58px;
	margin-top: 0;
}

body.post-type-archive-product .woocommerce ul.products li.product .gc-loop-variation-form .single_add_to_cart_button,
body.tax-product_cat .woocommerce ul.products li.product .gc-loop-variation-form .single_add_to_cart_button,
body.tax-product_tag .woocommerce ul.products li.product .gc-loop-variation-form .single_add_to_cart_button,
body.woocommerce-cart .woocommerce ul.products li.product .gc-loop-variation-form .single_add_to_cart_button {
	min-height: 44px;
	margin-top: auto;
}

body.post-type-archive-product .woocommerce ul.products li.product > .button,
body.tax-product_cat .woocommerce ul.products li.product > .button,
body.tax-product_tag .woocommerce ul.products li.product > .button,
body.woocommerce-cart .woocommerce ul.products li.product > .button {
	width: calc(100% - 28px);
	min-height: 44px;
	margin: auto 14px 0;
	font-size: 15px;
}

@media (max-width: 640px) {
	/* Shop listing product-card alignment */
	body.post-type-archive-product .woocommerce ul.products li.product,
	body.tax-product_cat .woocommerce ul.products li.product,
	body.tax-product_tag .woocommerce ul.products li.product {
		min-height: 248px;
		padding-bottom: 10px;
		border-radius: 9px;
	}

	body.post-type-archive-product .woocommerce ul.products li.product a img,
	body.tax-product_cat .woocommerce ul.products li.product a img,
	body.tax-product_tag .woocommerce ul.products li.product a img {
		aspect-ratio: 1 / .78;
		margin-bottom: 6px !important;
	}

	body.post-type-archive-product .woocommerce ul.products li.product .woocommerce-loop-product__title,
	body.tax-product_cat .woocommerce ul.products li.product .woocommerce-loop-product__title,
	body.tax-product_tag .woocommerce ul.products li.product .woocommerce-loop-product__title {
		min-height: 2.3em;
		padding-inline: 6px !important;
		font-size: 10px !important;
		line-height: 1.18;
	}

	body.post-type-archive-product .woocommerce ul.products li.product .price,
	body.tax-product_cat .woocommerce ul.products li.product .price,
	body.tax-product_tag .woocommerce ul.products li.product .price {
		margin: 3px 6px 0 !important;
		font-size: 12px !important;
	}

	body.post-type-archive-product .woocommerce ul.products li.product .gc-loop-variation-form,
	body.tax-product_cat .woocommerce ul.products li.product .gc-loop-variation-form,
	body.tax-product_tag .woocommerce ul.products li.product .gc-loop-variation-form,
	body.woocommerce-cart .woocommerce ul.products li.product .gc-loop-variation-form {
		min-height: 57px;
		margin: auto 8px 0;
	}

	body.post-type-archive-product .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills,
	body.tax-product_cat .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills,
	body.tax-product_tag .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills,
	body.woocommerce-cart .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills {
		min-height: 29px;
		gap: 4px;
	}

	body.post-type-archive-product .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill,
	body.tax-product_cat .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill,
	body.tax-product_tag .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill,
	body.woocommerce-cart .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill {
		min-width: 26px;
		padding: 3px 5px;
		font-size: 9px;
	}

	body.post-type-archive-product .woocommerce ul.products li.product > .button,
	body.post-type-archive-product .woocommerce ul.products li.product .single_add_to_cart_button,
	body.tax-product_cat .woocommerce ul.products li.product > .button,
	body.tax-product_cat .woocommerce ul.products li.product .single_add_to_cart_button,
	body.tax-product_tag .woocommerce ul.products li.product > .button,
	body.tax-product_tag .woocommerce ul.products li.product .single_add_to_cart_button,
	body.woocommerce-cart .woocommerce ul.products li.product > .button,
	body.woocommerce-cart .woocommerce ul.products li.product .single_add_to_cart_button {
		display: flex !important;
		width: calc(100% - 16px);
		min-height: 30px;
		margin: auto 8px 0;
		font-size: 10px;
	}
}

/* Shop archive product-card alignment */
body.post-type-archive-product .gc-commerce-main ul.products,
body.tax-product_cat .gc-commerce-main ul.products,
body.tax-product_tag .gc-commerce-main ul.products,
body.woocommerce-cart .gc-commerce-main ul.products {
	display: grid;
	width: min(calc(100% - 48px), var(--gc-container));
	margin: 36px auto 80px !important;
	padding: 0;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

body.post-type-archive-product .gc-commerce-main ul.products::before,
body.post-type-archive-product .gc-commerce-main ul.products::after,
body.tax-product_cat .gc-commerce-main ul.products::before,
body.tax-product_cat .gc-commerce-main ul.products::after,
body.tax-product_tag .gc-commerce-main ul.products::before,
body.tax-product_tag .gc-commerce-main ul.products::after {
	display: none !important;
}

body.post-type-archive-product .gc-commerce-main ul.products li.product,
body.tax-product_cat .gc-commerce-main ul.products li.product,
body.tax-product_tag .gc-commerce-main ul.products li.product {
	display: flex;
	min-height: 420px;
	width: auto !important;
	margin: 0 !important;
	padding: 0 0 16px;
	flex-direction: column;
	justify-content: flex-start;
	border: 1px solid var(--gc-border);
	border-radius: 12px;
	background: var(--gc-card);
	box-shadow: 0 12px 30px rgba(83, 49, 55, 0.08);
	overflow: hidden;
	float: none !important;
	clear: none !important;
}

body.post-type-archive-product .gc-commerce-main ul.products li.product > .woocommerce-LoopProduct-link,
body.tax-product_cat .gc-commerce-main ul.products li.product > .woocommerce-LoopProduct-link,
body.tax-product_tag .gc-commerce-main ul.products li.product > .woocommerce-LoopProduct-link {
	display: block;
	flex: 0 0 auto;
}

body.post-type-archive-product .gc-commerce-main ul.products li.product a img,
body.tax-product_cat .gc-commerce-main ul.products li.product a img,
body.tax-product_tag .gc-commerce-main ul.products li.product a img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / .68;
	margin: 0 0 14px !important;
	background: #fff6f4;
	object-fit: contain;
}

body.post-type-archive-product .gc-commerce-main ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat .gc-commerce-main ul.products li.product .woocommerce-loop-product__title,
body.tax-product_tag .gc-commerce-main ul.products li.product .woocommerce-loop-product__title {
	display: -webkit-box;
	min-height: 2.5em;
	padding-inline: 14px !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	color: var(--gc-foreground);
	font-size: 16px !important;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
}

body.post-type-archive-product .gc-commerce-main ul.products li.product .price,
body.tax-product_cat .gc-commerce-main ul.products li.product .price,
body.tax-product_tag .gc-commerce-main ul.products li.product .price {
	display: flex;
	min-height: 1.6em;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 5px 14px 0 !important;
	color: var(--gc-foreground) !important;
	font-size: 18px !important;
	font-weight: 800 !important;
}

body.post-type-archive-product .gc-commerce-main ul.products li.product .gc-loop-variation-form,
body.tax-product_cat .gc-commerce-main ul.products li.product .gc-loop-variation-form,
body.tax-product_tag .gc-commerce-main ul.products li.product .gc-loop-variation-form {
	display: flex;
	min-height: 118px;
	flex-direction: column;
	justify-content: flex-end;
	margin: auto 14px 0;
}

body.post-type-archive-product .gc-commerce-main ul.products li.product .gc-loop-variation-form .gc-variation-pills,
body.tax-product_cat .gc-commerce-main ul.products li.product .gc-loop-variation-form .gc-variation-pills,
body.tax-product_tag .gc-commerce-main ul.products li.product .gc-loop-variation-form .gc-variation-pills {
	min-height: 58px;
	margin-top: 0;
}

body.post-type-archive-product .gc-commerce-main ul.products li.product > .button,
body.post-type-archive-product .gc-commerce-main ul.products li.product .single_add_to_cart_button,
body.tax-product_cat .gc-commerce-main ul.products li.product > .button,
body.tax-product_cat .gc-commerce-main ul.products li.product .single_add_to_cart_button,
body.tax-product_tag .gc-commerce-main ul.products li.product > .button,
body.tax-product_tag .gc-commerce-main ul.products li.product .single_add_to_cart_button {
	display: flex !important;
	width: calc(100% - 28px);
	min-height: 44px;
	margin: auto 14px 0;
	border-color: var(--gc-add-to-cart);
	background: var(--gc-add-to-cart);
	color: var(--gc-foreground);
	font-size: 15px;
}

@media (max-width: 640px) {
	/* Shop archive product-card alignment */
	body.post-type-archive-product .gc-commerce-main ul.products,
	body.tax-product_cat .gc-commerce-main ul.products,
	body.tax-product_tag .gc-commerce-main ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: calc(100% - 16px);
		gap: 10px;
		margin: 12px auto 64px !important;
	}

	body.post-type-archive-product .gc-commerce-main ul.products li.product,
	body.tax-product_cat .gc-commerce-main ul.products li.product,
	body.tax-product_tag .gc-commerce-main ul.products li.product {
		min-height: 292px;
		padding-bottom: 10px;
		border-radius: 9px;
	}

	body.post-type-archive-product .gc-commerce-main ul.products li.product a img,
	body.tax-product_cat .gc-commerce-main ul.products li.product a img,
	body.tax-product_tag .gc-commerce-main ul.products li.product a img {
		aspect-ratio: 1 / .78;
		margin-bottom: 6px !important;
	}

	body.post-type-archive-product .gc-commerce-main ul.products li.product .woocommerce-loop-product__title,
	body.tax-product_cat .gc-commerce-main ul.products li.product .woocommerce-loop-product__title,
	body.tax-product_tag .gc-commerce-main ul.products li.product .woocommerce-loop-product__title {
		min-height: 2.3em;
		padding-inline: 6px !important;
		font-size: 10px !important;
		line-height: 1.18;
	}

	body.post-type-archive-product .gc-commerce-main ul.products li.product .price,
	body.tax-product_cat .gc-commerce-main ul.products li.product .price,
	body.tax-product_tag .gc-commerce-main ul.products li.product .price {
		margin: 3px 6px 0 !important;
		font-size: 12px !important;
	}

	body.post-type-archive-product .gc-commerce-main ul.products li.product .gc-loop-variation-form,
	body.tax-product_cat .gc-commerce-main ul.products li.product .gc-loop-variation-form,
	body.tax-product_tag .gc-commerce-main ul.products li.product .gc-loop-variation-form {
		min-height: 92px;
		padding-top: 6px;
		margin: auto 8px 0;
	}

	body.post-type-archive-product .gc-commerce-main ul.products li.product .gc-loop-variation-form .gc-variation-pills,
	body.tax-product_cat .gc-commerce-main ul.products li.product .gc-loop-variation-form .gc-variation-pills,
	body.tax-product_tag .gc-commerce-main ul.products li.product .gc-loop-variation-form .gc-variation-pills {
		min-height: 34px;
		gap: 4px;
	}

	/* Shop archive card-action alignment */
	body.post-type-archive-product .gc-commerce-main ul.products li.product .gc-loop-variation-form .gc-variation-pill,
	body.tax-product_cat .gc-commerce-main ul.products li.product .gc-loop-variation-form .gc-variation-pill,
	body.tax-product_tag .gc-commerce-main ul.products li.product .gc-loop-variation-form .gc-variation-pill {
		min-width: 22px;
		height: 22px;
		padding: 2px 5px;
		font-size: 8px;
	}

	body.post-type-archive-product .gc-commerce-main ul.products li.product > .button,
	body.post-type-archive-product .gc-commerce-main ul.products li.product .single_add_to_cart_button,
	body.tax-product_cat .gc-commerce-main ul.products li.product > .button,
	body.tax-product_cat .gc-commerce-main ul.products li.product .single_add_to_cart_button,
	body.tax-product_tag .gc-commerce-main ul.products li.product > .button,
	body.tax-product_tag .gc-commerce-main ul.products li.product .single_add_to_cart_button {
		width: calc(100% - 16px);
		min-height: 32px;
		height: 32px;
		margin: auto 8px 0;
		font-size: 10px;
	}
}

/* Shared product-listing card alignment */
.gc-product-listing ul.products {
	display: grid;
	width: min(calc(100% - 48px), var(--gc-container));
	margin: 36px auto 80px !important;
	padding: 0;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	list-style: none;
}

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

.gc-product-listing ul.products li.product {
	display: flex;
	min-height: 420px;
	width: auto !important;
	margin: 0 !important;
	padding: 0 0 16px;
	flex-direction: column;
	justify-content: flex-start;
	border: 1px solid var(--gc-border);
	border-radius: 12px;
	background: var(--gc-card);
	box-shadow: 0 12px 30px rgba(83, 49, 55, 0.08);
	overflow: hidden;
	float: none !important;
	clear: none !important;
}

.gc-product-listing ul.products li.product > .woocommerce-LoopProduct-link {
	display: block;
	flex: 0 0 auto;
}

.gc-product-listing ul.products li.product a img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / .68;
	margin: 0 0 14px !important;
	background: #fff6f4;
	object-fit: contain;
}

.gc-product-listing ul.products li.product .woocommerce-loop-product__title {
	display: -webkit-box;
	min-height: 2.5em;
	padding-inline: 14px !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	color: var(--gc-foreground);
	font-size: 16px !important;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
}

.gc-product-listing ul.products li.product .price {
	display: flex;
	min-height: 1.6em;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 5px 14px 0 !important;
	color: var(--gc-foreground) !important;
	font-size: 18px !important;
	font-weight: 800 !important;
}

.gc-product-listing ul.products li.product .gc-loop-variation-form {
	display: flex;
	min-height: 118px;
	flex-direction: column;
	justify-content: flex-end;
	margin: auto 14px 0;
}

.gc-product-listing ul.products li.product .gc-loop-variation-form .gc-variation-pills {
	min-height: 58px;
	margin-top: 0;
}

.gc-product-listing ul.products li.product > .button,
.gc-product-listing ul.products li.product .single_add_to_cart_button {
	display: flex !important;
	width: calc(100% - 28px);
	min-height: 44px;
	margin: auto 14px 0;
	border-color: var(--gc-add-to-cart);
	background: var(--gc-add-to-cart);
	color: var(--gc-foreground);
	font-size: 15px;
}

@media (max-width: 640px) {
	/* Offers use the same compact two-column cards as the Shop page on phones. */
	.gc-offers-listing ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: calc(100% - 16px);
		gap: 10px;
		margin: 12px auto 64px !important;
	}

	.gc-offers-listing ul.products li.product {
		min-height: 292px;
		padding-bottom: 10px;
		border-radius: 9px;
	}

	.gc-product-listing ul.products {
		width: calc(100% - 16px);
		gap: 10px;
		margin: 12px auto 64px !important;
	}

	.gc-product-listing ul.products li.product {
		min-height: 292px;
		padding-bottom: 10px;
		border-radius: 9px;
	}

	.gc-product-listing ul.products li.product a img {
		aspect-ratio: 1 / .78;
		margin-bottom: 6px !important;
	}

	.gc-product-listing ul.products li.product .woocommerce-loop-product__title {
		min-height: 2.3em;
		padding-inline: 6px !important;
		font-size: 10px !important;
		line-height: 1.18;
	}

	.gc-product-listing ul.products li.product .price {
		margin: 3px 6px 0 !important;
		font-size: 12px !important;
	}

	.gc-product-listing ul.products li.product .gc-loop-variation-form {
		min-height: 92px;
		padding-top: 6px;
		margin: auto 8px 0;
	}

	.gc-product-listing ul.products li.product .gc-loop-variation-form .gc-variation-pills {
		min-height: 34px;
		gap: 4px;
	}

	.gc-product-listing ul.products li.product .gc-loop-variation-form .gc-variation-pill {
		min-width: 22px;
		height: 22px;
		padding: 2px 5px;
		font-size: 8px;
	}

	.gc-product-listing ul.products li.product > .button,
	.gc-product-listing ul.products li.product .single_add_to_cart_button {
		width: calc(100% - 16px);
		min-height: 32px;
		height: 32px;
		margin: auto 8px 0;
		font-size: 10px;
	}
}

.gc-home-reels {
	padding: 24px 0 48px;
	overflow: hidden;
}

.gc-home-reels h2 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.1;
}

.gc-home-reels-viewport {
	margin-top: 28px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.gc-home-reels-viewport::-webkit-scrollbar {
	display: none;
}

.gc-home-reels-track {
	display: flex;
	gap: 22px;
	width: max-content;
	padding: 0 max(24px, calc((100vw - var(--gc-container)) / 2));
}

.gc-home-reel {
	position: relative;
	width: clamp(230px, 19vw, 320px);
	aspect-ratio: 9 / 16;
	overflow: hidden;
	border-radius: 4px;
	background: #d8b3ba;
	scroll-snap-align: start;
}

.gc-home-reel video,
.gc-home-reel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-home-reel--demo {
	display: flex;
	align-items: flex-end;
	padding: 24px;
	background: linear-gradient(145deg, #f7d7df, #d883a4);
}

.gc-home-reel--peach { background: linear-gradient(145deg, #f8dfce, #df9a77); }
.gc-home-reel--sage { background: linear-gradient(145deg, #d9e8d9, #78a98f); }
.gc-home-reel--lilac { background: linear-gradient(145deg, #e5d9ef, #9a7baa); }

.gc-home-reel-demo-copy {
	position: relative;
	z-index: 1;
	color: #fff;
	text-shadow: 0 1px 12px rgba( 47, 29, 34, .22 );
}

.gc-home-reel-demo-copy span {
	display: block;
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.gc-home-reel-demo-copy strong {
	display: block;
	font-size: clamp( 1.35rem, 2vw, 1.9rem );
	line-height: 1.08;
}

.gc-home-reel-play {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border: 2px solid #fff;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.22);
	color: #fff;
	cursor: pointer;
	transform: translate(-50%, -50%);
}

.gc-home-reel.is-playing .gc-home-reel-play {
	opacity: 0;
}

.gc-home-reel-duration {
	position: absolute;
	right: 12px;
	bottom: 10px;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.gc-home-reel-link {
	position: absolute;
	z-index: 1;
	inset: 0;
}

.gc-reel-modal {
	position: fixed;
	z-index: 100010;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(24, 16, 18, 0.8);
}

.gc-reel-modal[hidden] { display: none; }

.gc-reel-modal-player {
	width: min(92vw, 430px);
	aspect-ratio: 9 / 16;
	overflow: hidden;
	border-radius: 20px;
	background: #111;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.gc-reel-modal-player video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-reel-modal-close {
	position: absolute;
	top: 18px;
	right: 20px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--gc-foreground);
	cursor: pointer;
	font-size: 32px;
	line-height: 1;
}

/* Modern order confirmation */
.woocommerce-order-received .woocommerce-order { max-width: 1100px; margin: 0 auto 72px; }
.woocommerce-order-received .woocommerce-thankyou-order-received { margin: 0 0 24px; padding: 26px 30px; border-radius: 24px; background: var(--gc-secondary); color: var(--gc-foreground); font-size: 20px; font-weight: 750; }
.woocommerce-order-received .woocommerce-order-overview { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin: 0 0 34px; padding: 0; border: 1px solid var(--gc-border); border-radius: 20px; overflow: hidden; background: var(--gc-border); }
.woocommerce-order-received .woocommerce-order-overview li { width: auto; margin: 0; padding: 18px 20px; background: var(--gc-card); font-size: 12px; }
.woocommerce-order-received .woocommerce-order-overview li strong { display:block; margin-top: 5px; font-size: 15px; }
.woocommerce-order-received .woocommerce-order-details, .woocommerce-order-received .woocommerce-customer-details { margin-top: 34px; padding: 28px; border: 1px solid var(--gc-border); border-radius: 24px; background: var(--gc-card); }
.woocommerce-order-received .woocommerce-order-details table { border: 0; }.woocommerce-order-received .woocommerce-order-details th,.woocommerce-order-received .woocommerce-order-details td { padding:16px 0; border-color:var(--gc-border); }
.woocommerce-order-received .woocommerce-columns--addresses { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }.woocommerce-order-received address { min-height:0; padding:20px; border:1px solid var(--gc-border); border-radius:16px; background:var(--gc-secondary); }
.gc-thankyou-actions { margin:36px 0 0; text-align:center; }.gc-thankyou-actions .gc-button { display:inline-flex; min-width:220px; justify-content:center; }
@media (max-width:767px){.woocommerce-order-received .woocommerce-order{margin-bottom:36px}.woocommerce-order-received .woocommerce-thankyou-order-received{padding:20px;font-size:17px}.woocommerce-order-received .woocommerce-order-overview{grid-template-columns:repeat(2,1fr)}.woocommerce-order-received .woocommerce-order-details,.woocommerce-order-received .woocommerce-customer-details{padding:18px;border-radius:18px}.woocommerce-order-received .woocommerce-columns--addresses{grid-template-columns:1fr;gap:18px}}

.woocommerce-order-received article > h1 { display: none; }
.woocommerce-order-received .woocommerce-order-overview::before,
.woocommerce-order-received .woocommerce-order-overview::after { display: none !important; }
.woocommerce-order-received .woocommerce-order-overview li { display: block !important; float: none !important; clear: none !important; min-width: 0; box-sizing: border-box; }

/* Editorial thank-you layout */
.woocommerce-order-received .woocommerce-order { max-width: 980px; }
.woocommerce-order-received .woocommerce-thankyou-order-received { padding: 0; border-radius: 0; background: transparent; font-family: Georgia, serif; font-size: 28px; font-weight: 500; }
.woocommerce-order-received .woocommerce-order-overview { grid-template-columns: repeat(4, 1fr); gap: 0; border: 0; border-radius: 0; background: transparent; overflow: visible; }
.woocommerce-order-received .woocommerce-order-overview li { padding: 12px 28px; border-right: 1px dashed var(--gc-border); background: transparent; color: var(--gc-muted-foreground); }
.woocommerce-order-received .woocommerce-order-overview li:last-child { border-right: 0; }
.woocommerce-order-received .woocommerce-order-details,.woocommerce-order-received .woocommerce-customer-details { margin-top: 30px; padding: 0; border: 0; border-radius: 0; background: transparent; }
.woocommerce-order-received .woocommerce-order-details__title,.woocommerce-order-received .woocommerce-customer-details h2 { font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.woocommerce-order-received .woocommerce-order-details table,.woocommerce-order-received .woocommerce-order-details th,.woocommerce-order-received .woocommerce-order-details td { border-left: 0; border-right: 0; }
.woocommerce-order-received address { padding: 0; border: 0; border-radius: 0; background: transparent; font-style: italic; line-height: 1.65; }
.woocommerce-order-received .woocommerce-columns--addresses { gap: 64px; }
@media(max-width:767px){.woocommerce-order-received .woocommerce-thankyou-order-received{font-size:23px;line-height:1.3}.woocommerce-order-received .woocommerce-order-overview{grid-template-columns:repeat(2,1fr)}.woocommerce-order-received .woocommerce-order-overview li{padding:12px 14px;border-bottom:1px dashed var(--gc-border)}.woocommerce-order-received .woocommerce-columns--addresses{gap:28px}.woocommerce-order-received .woocommerce-order-details__title,.woocommerce-order-received .woocommerce-customer-details h2{font-size:23px}}

@media (min-width:768px){
	.woocommerce-order-received .woocommerce-columns--addresses{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr));gap:64px;align-items:start}
	.woocommerce-order-received .woocommerce-columns--addresses>.woocommerce-column,
	.woocommerce-order-received .woocommerce-columns--addresses>.col-1,
	.woocommerce-order-received .woocommerce-columns--addresses>.col-2{float:none!important;width:auto!important;margin:0!important;min-width:0}
	.woocommerce-order-received .woocommerce-columns--addresses>.woocommerce-column--billing,
	.woocommerce-order-received .woocommerce-columns--addresses>.col-1{grid-column:1;grid-row:1}
	.woocommerce-order-received .woocommerce-columns--addresses>.woocommerce-column--shipping,
	.woocommerce-order-received .woocommerce-columns--addresses>.col-2{grid-column:2;grid-row:1}
}

@media (max-width: 640px) {
	.gc-home-reels {
		padding: 20px 0 32px;
	}
	.gc-home-reel {
		width: 66vw;
	}
}

/* Related Products Shop-card fallback without carousel class */
@media (min-width: 768px) {
	.woocommerce :is(.related.products, .upsells.products) ul.products {
		display: grid !important;
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
		gap: 24px !important;
		margin: 36px 0 0 !important;
		padding: 0 !important;
		overflow: visible !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product {
		display: flex !important;
		width: auto !important;
		min-height: 420px !important;
		height: auto !important;
		margin: 0 !important;
		padding: 0 0 16px !important;
		flex: initial !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		border: 1px solid var(--gc-border) !important;
		border-radius: 12px !important;
		background: var(--gc-card) !important;
		box-shadow: 0 12px 30px rgba(83, 49, 55, 0.08) !important;
		overflow: hidden !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product > .woocommerce-LoopProduct-link {
		display: block !important;
		flex: 0 0 auto !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product a img {
		width: 100% !important;
		height: auto !important;
		aspect-ratio: 1 / .68 !important;
		margin: 0 0 14px !important;
		background: #fff6f4 !important;
		object-fit: contain !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product .woocommerce-loop-product__title {
		display: -webkit-box !important;
		min-height: 2.5em !important;
		margin: 0 !important;
		padding-inline: 14px !important;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		font-size: 16px !important;
		font-weight: 700 !important;
		line-height: 1.25 !important;
		text-align: center !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product .price {
		display: flex !important;
		min-height: 1.6em !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 8px !important;
		margin: 5px 14px 0 !important;
		font-size: 18px !important;
		font-weight: 800 !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form {
		display: flex !important;
		min-height: 118px !important;
		flex-direction: column !important;
		justify-content: flex-end !important;
		margin: auto 14px 0 !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form .gc-variation-pills {
		min-height: 58px !important;
		gap: 6px !important;
		margin-top: 0 !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form .gc-variation-pill {
		width: auto !important;
		min-width: 48px !important;
		height: auto !important;
		padding: 7px 10px !important;
		border-radius: 999px !important;
		font-size: 11px !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product > .button,
	.woocommerce :is(.related.products, .upsells.products) ul.products li.product .single_add_to_cart_button {
		display: flex !important;
		width: calc(100% - 28px) !important;
		min-height: 44px !important;
		margin: auto 14px 0 !important;
		font-size: 15px !important;
	}
}

@media (max-width: 767px) {
	.woocommerce :is(.related.products, .upsells.products) ul.products {
		display: grid !important;
		width: calc(100% - 16px) !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
		margin: 12px auto 64px !important;
		padding: 0 !important;
		overflow: visible !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product {
		min-height: 292px !important;
		height: auto !important;
		padding-bottom: 10px !important;
		border-radius: 9px !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product a img {
		aspect-ratio: 1 / .78 !important;
		margin-bottom: 6px !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product .woocommerce-loop-product__title {
		min-height: 2.3em !important;
		padding-inline: 6px !important;
		font-size: 10px !important;
		line-height: 1.18 !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product .price {
		margin: 3px 6px 0 !important;
		font-size: 12px !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form {
		min-height: 92px !important;
		padding-top: 6px !important;
		margin: auto 8px 0 !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form .gc-variation-pills {
		min-height: 34px !important;
		gap: 4px !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form .gc-variation-pill {
		min-width: 22px !important;
		height: 22px !important;
		padding: 2px 5px !important;
		font-size: 8px !important;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product > .button,
	.woocommerce :is(.related.products, .upsells.products) ul.products li.product .single_add_to_cart_button {
		width: calc(100% - 16px) !important;
		min-height: 32px !important;
		height: 32px !important;
		margin: auto 8px 0 !important;
		font-size: 12px !important;
	}
}

/* Related products horizontal overflow */
@media (min-width: 768px) {
	.woocommerce :is(.related.products, .upsells.products) ul.products {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		scroll-snap-type: x mandatory;
		scrollbar-width: thin;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product {
		flex: 0 0 calc((100% - 72px) / 4) !important;
		scroll-snap-align: start;
	}
}

@media (max-width: 767px) {
	.woocommerce :is(.related.products, .upsells.products) ul.products {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		scroll-snap-type: x mandatory;
		scrollbar-width: thin;
	}

	.woocommerce :is(.related.products, .upsells.products) ul.products li.product {
		flex: 0 0 calc((100% - 10px) / 2) !important;
		scroll-snap-align: start;
	}
}

/* Related product mobile size circles */
@media (max-width: 767px) {
	.woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form .gc-variation-pill {
		width: 22px !important;
		min-width: 22px !important;
		height: 22px !important;
		padding: 0 !important;
		border-radius: 50% !important;
	}
}

/* FizeGlow product-detail editorial layout */
@media (min-width: 768px) {
	.single-product .woocommerce div.product {
		grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
		gap: clamp(40px, 5vw, 76px);
	}

	.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
		padding: clamp(10px, 1.4vw, 20px);
		border-radius: 30px;
		background: linear-gradient(145deg, #fffdfb, var(--gc-secondary));
		box-shadow: 0 20px 54px rgba(83, 49, 55, 0.09);
	}

	.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image a {
		aspect-ratio: 1 / 1.08;
	}

	.single-product .woocommerce div.product div.summary {
		padding: clamp(22px, 2.5vw, 38px);
		border: 1px solid var(--gc-border);
		border-radius: 30px;
		background: var(--gc-card);
		box-shadow: 0 18px 46px rgba(83, 49, 55, 0.07);
	}

	.single-product .woocommerce div.product .product_title {
		margin-bottom: 16px;
		font-size: clamp(2.45rem, 4.2vw, 4.5rem);
		line-height: 0.98;
		letter-spacing: -0.065em;
	}

	.single-product .woocommerce div.product p.price,
	.single-product .woocommerce div.product span.price {
		display: inline-flex;
		width: fit-content;
		margin-bottom: 20px;
		padding: 10px 15px;
		border-radius: 999px;
		background: var(--gc-secondary);
		font-size: clamp(1.35rem, 2.2vw, 2rem);
	}

	.single-product .woocommerce div.product .woocommerce-product-rating {
		display: flex;
		align-items: center;
		gap: 12px;
		margin: 0 0 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid var(--gc-border);
	}

	.single-product .woocommerce div.product form.cart {
		margin: 0;
		padding: 24px;
		border-color: var(--gc-border);
		border-radius: 24px;
		background: linear-gradient(145deg, var(--gc-secondary), #fff7f7);
		box-shadow: none;
	}

	.single-product .woocommerce div.product form.cart .variations {
		counter-reset: fizeglow-option;
	}

	.single-product .woocommerce div.product form.cart .variations tr {
		counter-increment: fizeglow-option;
	}

	.single-product .woocommerce div.product form.cart .variations label::before {
		display: inline-grid;
		width: 28px;
		height: 28px;
		margin-right: 10px;
		border-radius: 50%;
		background: var(--gc-foreground);
		color: var(--gc-card);
		content: counter(fizeglow-option);
		place-items: center;
		font-size: 13px;
	}

	.single-product .woocommerce div.product form.cart .gc-buy-now {
		border-color: var(--gc-foreground);
		background: var(--gc-foreground);
		color: var(--gc-card);
	}
}

@media (max-width: 767px) {
	.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
		border-radius: 20px;
	}

	.single-product .woocommerce div.product div.summary {
		padding: 20px;
		border: 1px solid var(--gc-border);
		border-radius: 22px;
		background: var(--gc-card);
	}

	.single-product .woocommerce div.product .product_title {
		font-size: 2.15rem;
		line-height: 1;
	}

	.single-product .woocommerce div.product p.price,
	.single-product .woocommerce div.product span.price {
		display: inline-flex;
		margin-bottom: 16px;
		padding: 8px 12px;
		border-radius: 999px;
		background: var(--gc-secondary);
		font-size: 1.3rem;
	}

	.single-product .woocommerce div.product form.cart {
		margin: 0;
		padding: 18px;
		border-radius: 20px;
		background: linear-gradient(145deg, var(--gc-secondary), #fff7f7);
		box-shadow: none;
	}

	.single-product .woocommerce div.product form.cart .variations label::before {
		display: inline-grid;
		width: 22px;
		height: 22px;
		margin-right: 7px;
		border-radius: 50%;
		background: var(--gc-foreground);
		color: var(--gc-card);
		content: counter(fizeglow-option);
		place-items: center;
		font-size: 11px;
	}
}

/* FizeGlow reference product-detail layout */
@media (min-width: 768px) {
	.single-product .woocommerce div.product {
		grid-template-columns: minmax(0, 1.22fr) minmax(400px, 0.78fr);
		gap: clamp(36px, 4vw, 64px);
	}

	.single-product .woocommerce div.product div.images {
		position: sticky;
		top: 102px;
	}

	.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
		padding: 0;
		border-radius: 30px;
		background: var(--gc-secondary);
	}

	.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image a {
		aspect-ratio: 1 / 1.05;
	}

	.single-product .woocommerce div.product div.images .flex-control-thumbs {
		gap: 14px;
		margin-top: 18px;
	}

	.single-product .woocommerce div.product div.images .flex-control-thumbs li {
		width: 16.666%;
		max-width: 112px;
		border-radius: 14px;
	}

	.single-product .woocommerce div.product div.summary {
		padding: 8px 0 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.single-product .woocommerce div.product .product_title {
		margin-bottom: 14px;
		font-size: clamp(2.6rem, 4vw, 4.6rem);
		line-height: 0.98;
	}

	.single-product .woocommerce div.product p.price,
	.single-product .woocommerce div.product span.price {
		margin-bottom: 18px;
		padding: 9px 14px;
		background: var(--gc-secondary);
		font-size: clamp(1.4rem, 2.15vw, 2rem);
	}

	.single-product .woocommerce div.product .woocommerce-product-rating {
		margin-bottom: 18px;
		padding-bottom: 18px;
	}

	.single-product .woocommerce div.product form.cart {
		display: flex;
		gap: 16px;
		margin: 0;
		padding: 24px;
		border: 0;
		border-radius: 28px;
		background: var(--gc-foreground);
		box-shadow: 0 18px 42px rgba(57, 36, 39, 0.16);
	}

	.single-product .woocommerce div.product form.cart .variations {
		margin: 0;
		padding: 20px;
		border: 0;
		border-radius: 20px;
		background: var(--gc-card);
	}

	.single-product .woocommerce div.product form.cart .variations label {
		color: var(--gc-foreground);
	}

	.single-product .woocommerce div.product form.cart .variations label::before {
		background: var(--gc-primary-dark);
		color: var(--gc-card);
	}

	.single-product .woocommerce div.product form.cart div.quantity {
		flex: 0 0 148px;
		border-color: transparent;
		background: var(--gc-card);
	}

	.single-product .woocommerce div.product form.cart > .single_add_to_cart_button {
		border-color: var(--gc-primary);
		background: var(--gc-primary) !important;
		color: var(--gc-foreground);
	}

	.single-product .woocommerce div.product form.cart .gc-buy-now {
		border-color: rgba(255, 255, 255, 0.32);
		background: transparent;
		color: var(--gc-card);
	}

}

@media (max-width: 767px) {
	.single-product .woocommerce div.product div.summary {
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
	}

	.single-product .woocommerce div.product form.cart {
		gap: 14px;
		padding: 18px;
		border: 0;
		border-radius: 22px;
		background: var(--gc-foreground);
	}

	.single-product .woocommerce div.product form.cart .variations {
		margin: 0;
		padding: 16px;
		border: 0;
		border-radius: 16px;
		background: var(--gc-card);
	}

	.single-product .woocommerce div.product form.cart > .single_add_to_cart_button {
		border-color: var(--gc-primary);
		background: var(--gc-primary) !important;
		color: var(--gc-foreground);
	}

	.single-product .woocommerce div.product form.cart .gc-buy-now {
		border-color: rgba(255, 255, 255, 0.32);
		background: transparent;
		color: var(--gc-card);
	}
}

/* Must remain last: override the legacy variation-form card. */
/* Final loop-card boundary rule: no unused area beneath Add to Cart. */
.woocommerce ul.products li.product {
	min-height: 0 !important;
	height: auto !important;
	padding-bottom: 14px !important;
	align-self: start !important;
}

/* Reference product-card action layout. */
.woocommerce ul.products li.product {
	min-height: 630px !important;
}

.woocommerce ul.products li.product .gc-loop-simple-form,
.woocommerce ul.products li.product .gc-loop-variation-form {
	width: calc(100% - 40px) !important;
	max-width: none;
	grid-template-rows: 60px 68px;
	margin: auto 20px 22px !important;
}

.woocommerce ul.products li.product .gc-loop-simple-form::before {
	height: 60px;
}

.woocommerce ul.products li.product .gc-loop-simple-form .quantity,
.woocommerce ul.products li.product .gc-loop-variation-form .quantity {
	display: none !important;
}

.woocommerce ul.products li.product .gc-loop-simple-form .button,
.woocommerce ul.products li.product .gc-loop-variation-form .button {
	width: 100% !important;
	max-width: none;
}

@media (max-width: 767px) {
	.woocommerce ul.products li.product { min-height: 470px !important; }
	.woocommerce ul.products li.product .gc-loop-simple-form,
	.woocommerce ul.products li.product .gc-loop-variation-form {
		width: calc(100% - 24px) !important;
		grid-template-rows: 42px 54px;
		margin: auto 12px 14px !important;
	}
	.woocommerce ul.products li.product .gc-loop-simple-form::before { height: 42px; }
}

/* Approved compact product-card layout. */
.woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 0.68 !important;
	margin-bottom: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 2.35em;
	margin: 0;
	padding-inline: 10px !important;
	font-size: 15px !important;
	line-height: 1.18;
}

.woocommerce ul.products li.product .price {
	min-height: 1.35em;
	margin: 6px 10px 0 !important;
	font-size: 16px !important;
}

.woocommerce ul.products li.product .gc-loop-simple-form,
.woocommerce ul.products li.product .gc-loop-variation-form {
	grid-template-rows: 34px 74px 68px;
	margin: 8px auto 12px !important;
}

.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills {
	gap: 6px !important;
	margin: 0 !important;
}

/* Product-card image expansion after category-label removal. */
.woocommerce ul.products li.product .gc-product-card-category {
	display: none !important;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 0.78 !important;
}

@media (max-width: 767px) {
	.woocommerce ul.products li.product a img { aspect-ratio: 1 / 0.8 !important; }
}

@media (max-width: 767px) {
	.woocommerce ul.products li.product a img { aspect-ratio: 1 / 0.72 !important; }
	.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 12px !important; }
	.woocommerce ul.products li.product .price { font-size: 14px !important; }
	.woocommerce ul.products li.product .gc-loop-simple-form,
	.woocommerce ul.products li.product .gc-loop-variation-form {
		grid-template-rows: 30px 64px 58px;
		margin: 7px auto 10px !important;
	}
}

body.single-product .woocommerce div.product form.cart,
body.single-product .woocommerce div.product form.variations_form {
	background: var(--gc-foreground) !important;
	border: 0 !important;
	border-radius: 28px !important;
	padding: 24px !important;
}

body.single-product .woocommerce div.product form.cart .variations,
body.single-product .woocommerce div.product form.variations_form .variations {
	background: var(--gc-card) !important;
	border: 0 !important;
	border-radius: 20px !important;
	padding: 20px !important;
}

body.single-product .woocommerce div.product form.variations_form .variations_button {
	display: flex !important;
	width: 100% !important;
	flex-wrap: wrap !important;
	gap: 14px !important;
}

body.single-product .woocommerce div.product form.cart .quantity,
body.single-product .woocommerce div.product form.variations_form .quantity {
	min-height: 54px !important;
	border-radius: 999px !important;
	background: var(--gc-card) !important;
}

body.single-product .woocommerce div.product form.cart .single_add_to_cart_button,
body.single-product .woocommerce div.product form.variations_form .single_add_to_cart_button {
	min-height: 54px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--gc-add-to-cart) !important;
	color: var(--gc-foreground) !important;
}

body.single-product .woocommerce div.product form.cart .gc-buy-now,
body.single-product .woocommerce div.product form.variations_form .gc-buy-now {
	width: 100% !important;
	min-height: 52px !important;
	margin: 0 !important;
	border: 1px solid rgba(255, 255, 255, 0.34) !important;
	border-radius: 999px !important;
	background: transparent !important;
	color: var(--gc-card) !important;
}

/* Enforced live product card finish */
.woocommerce ul.products li.product {
	display: flex !important;
	min-height: 0 !important;
	height: auto !important;
	flex-direction: column;
	padding: 12px !important;
	align-self: stretch !important;
}

/* Uniform product-card dimensions */
body.post-type-archive-product .gc-commerce-main ul.products,
body.tax-product_cat .gc-commerce-main ul.products,
body.tax-product_tag .gc-commerce-main ul.products,
.gc-product-listing ul.products,
body.home .woocommerce ul.products {
	align-items: stretch !important;
}

body.post-type-archive-product .gc-commerce-main ul.products li.product,
body.tax-product_cat .gc-commerce-main ul.products li.product,
body.tax-product_tag .gc-commerce-main ul.products li.product,
.gc-product-listing ul.products li.product,
body.home .woocommerce ul.products li.product {
	height: 100% !important;
	align-self: stretch !important;
}

body.post-type-archive-product .gc-commerce-main ul.products li.product .gc-loop-simple-form,
body.post-type-archive-product .gc-commerce-main ul.products li.product .gc-loop-variation-form,
body.tax-product_cat .gc-commerce-main ul.products li.product .gc-loop-simple-form,
body.tax-product_cat .gc-commerce-main ul.products li.product .gc-loop-variation-form,
body.tax-product_tag .gc-commerce-main ul.products li.product .gc-loop-simple-form,
body.tax-product_tag .gc-commerce-main ul.products li.product .gc-loop-variation-form,
.gc-product-listing ul.products li.product .gc-loop-simple-form,
.gc-product-listing ul.products li.product .gc-loop-variation-form,
body.home .woocommerce ul.products li.product .gc-loop-simple-form,
body.home .woocommerce ul.products li.product .gc-loop-variation-form {
	margin: auto 0 0 !important;
}

/* Shared Shop-card behavior across every WooCommerce listing. */
body .woocommerce ul.products {
	align-items: stretch !important;
}

body .woocommerce ul.products li.product {
	height: 100% !important;
	align-self: stretch !important;
}

body .woocommerce ul.products li.product .gc-loop-simple-form,
body .woocommerce ul.products li.product .gc-loop-variation-form {
	margin: auto 0 0 !important;
}

body .woocommerce :is(.related.products, .upsells.products) ul.products li.product {
	height: auto !important;
	align-self: stretch !important;
}

body .woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-simple-form,
body .woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form {
	margin: auto 0 0 !important;
}

/* Trending Now uses the shared Shop product card layout. */
body:is(.home, .woocommerce-checkout) .gc-home-products-section .woocommerce ul.products {
	align-items: stretch !important;
}

body:is(.home, .woocommerce-checkout) .gc-home-products-section .woocommerce ul.products li.product {
	min-height: 0 !important;
	height: auto !important;
	padding: 12px !important;
	align-self: stretch !important;
}

body:is(.home, .woocommerce-checkout) .gc-home-products-section .woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 1 !important;
	margin: 0 0 8px !important;
	object-fit: cover;
}

body:is(.home, .woocommerce-checkout) .gc-home-products-section .woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 2.35em !important;
	padding-inline: 4px !important;
	font-size: 15px !important;
	line-height: 1.2 !important;
}

body:is(.home, .woocommerce-checkout) .gc-home-products-section .woocommerce ul.products li.product .price {
	min-height: 1.2em !important;
	margin: 3px 4px 0 !important;
	font-size: 16px !important;
	text-align: center !important;
}

body:is(.home, .woocommerce-checkout) .gc-home-products-section .woocommerce ul.products li.product .gc-loop-simple-form,
body:is(.home, .woocommerce-checkout) .gc-home-products-section .woocommerce ul.products li.product .gc-loop-variation-form {
	display: grid !important;
	width: 100% !important;
	min-height: 0 !important;
	grid-template-rows: auto !important;
	justify-items: center;
	gap: 6px !important;
	margin: auto 0 0 !important;
	padding: 8px 0 0 !important;
}

body:is(.home, .woocommerce-checkout) .gc-home-products-section .woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills {
	gap: 4px !important;
}

body:is(.home, .woocommerce-checkout) .gc-home-products-section .woocommerce ul.products li.product .gc-loop-simple-form .button,
body:is(.home, .woocommerce-checkout) .gc-home-products-section .woocommerce ul.products li.product .gc-loop-variation-form .button {
	width: 138px !important;
	min-height: 42px !important;
	margin: 6px auto 0 !important;
	border-radius: 7px !important;
	font-size: 13px !important;
}

/* Related products use the shared Shop product card layout. */
body .woocommerce :is(.related.products, .upsells.products) ul.products {
	align-items: stretch !important;
}

body .woocommerce :is(.related.products, .upsells.products) ul.products li.product {
	min-height: 0 !important;
	height: auto !important;
	padding: 12px !important;
	align-self: stretch !important;
}

body .woocommerce :is(.related.products, .upsells.products) ul.products li.product a img {
	aspect-ratio: 1 / 1 !important;
	margin: 0 0 8px !important;
	object-fit: cover;
}

body .woocommerce :is(.related.products, .upsells.products) ul.products li.product .woocommerce-loop-product__title {
	min-height: 2.35em !important;
	padding-inline: 4px !important;
	font-size: 15px !important;
	line-height: 1.2 !important;
}

body .woocommerce :is(.related.products, .upsells.products) ul.products li.product .price {
	min-height: 1.2em !important;
	margin: 3px 4px 0 !important;
	font-size: 16px !important;
}

body .woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-simple-form,
body .woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form {
	display: grid !important;
	width: 100% !important;
	min-height: 0 !important;
	grid-template-rows: auto !important;
	justify-items: center;
	gap: 6px !important;
	margin: auto 0 0 !important;
	padding: 8px 0 0 !important;
}

body .woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form .gc-variation-pills {
	min-height: 0 !important;
	gap: 4px !important;
}

body .woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form .gc-variation-pill {
	min-width: 0 !important;
	height: auto !important;
	padding: 4px 8px !important;
	border-radius: 7px !important;
	font-size: 11px !important;
}

body .woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-simple-form .button,
body .woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form .button {
	width: 138px !important;
	min-height: 42px !important;
	margin: 6px auto 0 !important;
	border-radius: 7px !important;
	font-size: 13px !important;
}

/* Direct related-product fallback for templates without a .woocommerce wrapper. */
:is(.related.products, .upsells.products) ul.products {
	align-items: stretch !important;
}

:is(.related.products, .upsells.products) ul.products li.product {
	min-height: 0 !important;
	height: auto !important;
	padding: 12px !important;
	align-self: stretch !important;
}

:is(.related.products, .upsells.products) ul.products li.product .gc-loop-simple-form,
:is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form {
	display: grid !important;
	width: 100% !important;
	min-height: 0 !important;
	grid-template-rows: auto !important;
	justify-items: center;
	gap: 6px !important;
	margin: auto 0 0 !important;
	padding: 8px 0 0 !important;
}

:is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form .gc-variation-pills {
	width: fit-content !important;
	max-width: 100% !important;
	margin-inline: auto !important;
	place-self: center !important;
	min-height: 0 !important;
	justify-content: center !important;
	gap: 4px !important;
}

:is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form .gc-variation-pill {
	min-width: 0 !important;
	height: auto !important;
	padding: 4px 8px !important;
}

:is(.related.products, .upsells.products) ul.products li.product .gc-loop-simple-form .button,
:is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form .button {
	width: 138px !important;
	min-height: 42px !important;
	margin: 6px auto 0 !important;
	border-radius: 7px !important;
	font-size: 13px !important;
}

html body.single-product.woocommerce :is(.related.products, .upsells.products) ul.products li.product .gc-loop-variation-form {
	width: calc(100% - 24px) !important;
	margin: auto auto 0 !important;
}

/* FizeGlow pink compact product detail */
body.single-product .woocommerce div.product div.images .flex-direction-nav {
	display: none !important;
}

body.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image,
body.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image a {
	margin-bottom: 0 !important;
}

body.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	padding: 0 !important;
	border-color: var(--gc-border);
	background: var(--gc-secondary);
}

body.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image a {
	aspect-ratio: 1 / 0.92;
}

body.single-product .woocommerce div.product div.images .flex-control-thumbs {
	margin-top: 12px;
}

/* WooCommerce renders a div.product wrapper here. Keep the complete gallery
 * and thumbnails inside one visible card. */
body.single-product .woocommerce .product .images {
	min-width: 0 !important;
	padding: 40px !important;
	box-sizing: border-box !important;
	border: 1px solid var(--gc-border) !important;
	border-radius: 32px !important;
	background: #fff8f9 !important;
	overflow: hidden !important;
}

body.single-product .woocommerce .product .images .woocommerce-product-gallery,
body.single-product .woocommerce .product .images .flex-viewport,
body.single-product .woocommerce .product .images .woocommerce-product-gallery__wrapper {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
}

body.single-product .woocommerce .product .images .woocommerce-product-gallery__image a {
	aspect-ratio: auto !important;
}

body.single-product .woocommerce .product .images .flex-control-thumbs {
	margin: 22px 0 0 !important;
}

body.single-product .woocommerce div.product .product_title {
	font-size: clamp(1.9rem, 3vw, 2.8rem);
	line-height: 1.12;
	letter-spacing: -0.035em;
}

body.single-product .woocommerce div.product form.cart,
body.single-product .woocommerce div.product form.variations_form {
	gap: 14px !important;
	padding: 20px !important;
	border: 1px solid var(--gc-border) !important;
	border-radius: 22px !important;
	background: var(--gc-card) !important;
	box-shadow: none !important;
}

body.single-product .woocommerce div.product form.cart .variations,
body.single-product .woocommerce div.product form.variations_form .variations {
	padding: 18px !important;
	border: 1px solid var(--gc-border) !important;
	border-radius: 16px !important;
	background: var(--gc-background) !important;
}

body.single-product .woocommerce div.product .gc-purchase-setup {
	color: var(--gc-foreground);
	font-size: 16px;
}

body.single-product .woocommerce div.product form.cart .quantity,
body.single-product .woocommerce div.product form.variations_form .quantity {
	border: 1px solid var(--gc-border) !important;
	border-radius: 12px !important;
	background: var(--gc-card) !important;
}

body.single-product .woocommerce div.product form.cart .single_add_to_cart_button,
body.single-product .woocommerce div.product form.variations_form .single_add_to_cart_button {
	border-color: var(--gc-add-to-cart) !important;
	border-radius: 12px !important;
	background: var(--gc-add-to-cart) !important;
	color: var(--gc-foreground) !important;
}

body.single-product .woocommerce div.product form.cart .single_add_to_cart_button:hover,
body.single-product .woocommerce div.product form.cart .single_add_to_cart_button:focus-visible,
body.single-product .woocommerce div.product form.variations_form .single_add_to_cart_button:hover,
body.single-product .woocommerce div.product form.variations_form .single_add_to_cart_button:focus-visible {
	border-color: var(--gc-primary-dark) !important;
	background: var(--gc-primary-dark) !important;
}

body.single-product .woocommerce div.product form.cart .gc-buy-now,
body.single-product .woocommerce div.product form.variations_form .gc-buy-now {
	border-color: var(--gc-primary) !important;
	border-radius: 12px !important;
	background: transparent !important;
	color: var(--gc-primary-dark) !important;
}

@media (min-width: 768px) {
	body.single-product .woocommerce div.product {
		grid-template-columns: minmax(0, 1.32fr) minmax(310px, 0.68fr);
		gap: clamp(28px, 3vw, 48px);
	}
}

.woocommerce ul.products li.product > .woocommerce-LoopProduct-link { flex: 0 0 auto; }
.woocommerce ul.products li.product a img { aspect-ratio: 1 / 1 !important; margin: 0 0 8px !important; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 2.35em; margin: 0; padding-inline: 4px !important; font-size: 15px !important; line-height: 1.2; }
.woocommerce ul.products li.product .price { min-height: 1.2em; margin: 3px 4px 0 !important; font-size: 16px !important; }

.woocommerce ul.products li.product .gc-loop-simple-form,
.woocommerce ul.products li.product .gc-loop-variation-form {
	display: grid !important;
	width: 100% !important;
	min-height: 0 !important;
	grid-template-rows: auto !important;
	justify-items: center;
	gap: 6px;
	margin: 8px 0 0 !important;
	padding: 8px 0 0;
}

.woocommerce ul.products li.product .gc-loop-variation-attribute,
.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills { min-height: 0 !important; margin: 0 !important; }
.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pills { gap: 4px !important; }
.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill { min-width: 0 !important; height: auto !important; padding: 4px 8px !important; border-radius: 7px !important; font-size: 11px !important; line-height: 1.1; }

.woocommerce ul.products li.product .gc-loop-simple-form .button,
.woocommerce ul.products li.product .gc-loop-variation-form .button {
	width: 138px !important;
	min-height: 42px;
	margin: 6px auto 0 !important;
	border: 0;
	border-radius: 7px;
	background: var(--gc-primary) !important;
	box-shadow: none;
	color: var(--gc-foreground) !important;
	font-size: 13px;
	font-weight: 700;
}

@media (max-width: 767px) {
	.woocommerce ul.products li.product { padding: 8px !important; }
	.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 12px !important; }
	.woocommerce ul.products li.product .price { font-size: 14px !important; }
	.woocommerce ul.products li.product .gc-loop-variation-form .gc-variation-pill { padding: 3px 6px !important; font-size: 9px !important; }
	.woocommerce ul.products li.product .gc-loop-simple-form .button,
	.woocommerce ul.products li.product .gc-loop-variation-form .button { width: 100% !important; min-height: 34px; font-size: 11px; }
}

/* Final product-detail finishing contracts. */
@font-face {
	font-family: "Plus Jakarta Sans";
	src: url('../fonts/plus-jakarta-sans/plus-jakarta-sans-latin-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Plus Jakarta Sans";
	src: url('../fonts/plus-jakarta-sans/plus-jakarta-sans-latin-600.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

/* The visible FlexSlider viewport owns the image corners; its wide track stays square. */
body.single-product .woocommerce .product .images .woocommerce-product-gallery,
body.single-product .woocommerce .product .images .woocommerce-product-gallery__wrapper {
	border-radius: 0 !important;
}

body.single-product .woocommerce div.product div.images .flex-viewport {
	border-radius: 15px !important;
	overflow: hidden !important;
}

body.single-product .woocommerce div.product .product_title.entry-title {
	font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

/* Final summary-bounded variation gallery and Reviews toggle. */
@media (min-width: 768px) {
	body.single-product.woocommerce .product > .gc-product-primary > .images,
	body.single-product.woocommerce .product > .gc-product-primary > .woo-variation-product-gallery {
		position: sticky !important;
		top: calc(var(--wp-admin--admin-bar--height, 0px) + 156px) !important;
		align-self: start !important;
	}
}

@media (max-width: 767px) {
	body.single-product.woocommerce .product > .gc-product-primary > .images,
	body.single-product.woocommerce .product > .gc-product-primary > .woo-variation-product-gallery {
		position: static !important;
		top: auto !important;
	}
}

body.single-product .woocommerce-tabs:not(.gc-reviews-open) .woocommerce-Tabs-panel {
	display: none !important;
}

body.single-product .woocommerce-tabs.gc-reviews-open .woocommerce-Tabs-panel#tab-reviews {
	display: block !important;
}

/* Final compact single-product accordion typography and spacing. */
body.single-product .gc-product-accordion summary {
	min-height: 56px;
	padding: 14px 16px;
	font-size: 14px;
	font-weight: 800;
}

body.single-product .gc-product-accordion-content {
	padding: 0 16px 16px;
	font-size: 12px;
	line-height: 1.5;
}

body.single-product .gc-product-accordion-content p:first-child {
	margin-top: 12px;
}

/* Related Products Shop-card parity override. */
body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track {
	display: flex !important;
	flex-wrap: nowrap !important;
	overflow-x: auto !important;
	scroll-snap-type: x mandatory !important;
	scrollbar-width: none !important;
}

body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track::-webkit-scrollbar {
	display: none !important;
}

body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-configure {
	left: 50% !important;
	right: auto !important;
	transform: translateX(-50%) !important;
}

body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product:hover .gc-configure,
body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-configure:focus {
	transform: translateX(-50%) translateY(0) !important;
}

@media (min-width: 768px) {
	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track {
		width: 100% !important;
		gap: 24px !important;
		margin: 36px 0 0 !important;
		padding: 0 !important;
		align-items: stretch !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product {
		display: flex !important;
		min-height: 420px !important;
		height: auto !important;
		margin: 0 !important;
		padding: 0 0 16px !important;
		flex: 0 0 calc((100% - 72px) / 4) !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		border: 1px solid var(--gc-border) !important;
		border-radius: 12px !important;
		background: var(--gc-card) !important;
		box-shadow: 0 12px 30px rgba(83, 49, 55, 0.08) !important;
		overflow: hidden !important;
		scroll-snap-align: start;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product > .woocommerce-LoopProduct-link {
		display: block !important;
		flex: 0 0 auto !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product a img {
		width: 100% !important;
		height: auto !important;
		aspect-ratio: 1 / .68 !important;
		margin: 0 0 14px !important;
		background: #fff6f4 !important;
		object-fit: contain !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .woocommerce-loop-product__title {
		display: -webkit-box !important;
		min-height: 2.5em !important;
		margin: 0 !important;
		padding-inline: 14px !important;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		font-size: 16px !important;
		font-weight: 700 !important;
		line-height: 1.25 !important;
		text-align: center !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .price {
		display: flex !important;
		min-height: 1.6em !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 8px !important;
		margin: 5px 14px 0 !important;
		font-size: 18px !important;
		font-weight: 800 !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form {
		display: flex !important;
		min-height: 118px !important;
		flex-direction: column !important;
		justify-content: flex-end !important;
		margin: auto 14px 0 !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-simple-form {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-simple-form .single_add_to_cart_button {
		grid-column: 1 !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form .gc-variation-pills {
		min-height: 58px !important;
		gap: 6px !important;
		margin-top: 0 !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form .gc-variation-pill {
		width: auto !important;
		min-width: 48px !important;
		height: auto !important;
		padding: 7px 10px !important;
		border-radius: 999px !important;
		font-size: 11px !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product > .button,
	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-simple-form .button,
	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form .single_add_to_cart_button {
		display: flex !important;
		justify-self: center !important;
		width: 220px !important;
		min-height: 44px !important;
		align-self: center !important;
		margin: auto 0 0 !important;
		font-size: 15px !important;
	}
}

@media (max-width: 767px) {
	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track {
		width: calc(100% - 16px) !important;
		gap: 10px !important;
		margin: 12px auto 16px !important;
		padding: 0 !important;
		align-items: stretch !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product {
		display: flex !important;
		min-height: 0 !important;
		height: auto !important;
		margin: 0 !important;
		padding: 0 0 8px !important;
		flex: 0 0 calc((100% - 10px) / 2) !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		border: 1px solid var(--gc-border) !important;
		border-radius: 9px !important;
		background: var(--gc-card) !important;
		box-shadow: 0 12px 30px rgba(83, 49, 55, 0.08) !important;
		overflow: hidden !important;
		scroll-snap-align: start;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product > .woocommerce-LoopProduct-link {
		display: block !important;
		flex: 0 0 auto !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product a img {
		width: 100% !important;
		height: auto !important;
		aspect-ratio: 1 / .78 !important;
		margin: 0 0 6px !important;
		background: #fff6f4 !important;
		object-fit: contain !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .woocommerce-loop-product__title {
		display: -webkit-box !important;
		min-height: 2.3em !important;
		margin: 0 !important;
		padding-inline: 6px !important;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		font-size: 10px !important;
		font-weight: 700 !important;
		line-height: 1.18 !important;
		text-align: center !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .price {
		display: flex !important;
		min-height: 1.2em !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 4px !important;
		margin: 3px 6px 0 !important;
		font-size: 12px !important;
		font-weight: 800 !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form {
		display: flex !important;
		min-height: 70px !important;
		padding-top: 3px !important;
		flex-direction: column !important;
		justify-content: flex-end !important;
		margin: auto 8px 0 !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-simple-form {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-simple-form .single_add_to_cart_button {
		grid-column: 1 !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form .gc-variation-pills {
		min-height: 28px !important;
		gap: 4px !important;
		margin-top: 0 !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form .gc-variation-pill {
		width: auto !important;
		min-width: 22px !important;
		height: 22px !important;
		padding: 2px 5px !important;
		border-radius: 999px !important;
		font-size: 8px !important;
	}

	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product > .button,
	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-simple-form .button,
	body.single-product.woocommerce .related.products ul.products.gc-related-carousel-track li.product .gc-loop-variation-form .single_add_to_cart_button {
		display: flex !important;
		justify-self: center !important;
		width: calc(100% - 16px) !important;
		min-height: 32px !important;
		height: 32px !important;
		align-self: center !important;
		margin: auto 0 0 !important;
		font-size: 10px !important;
	}
}

/* Mobile product-gallery image centering override. */
@media (max-width: 767px) {
	body.single-product .woo-variation-product-gallery {
		margin-inline: auto !important;
	}

	body.single-product .woo-variation-gallery-slider-wrapper {
		margin-inline: auto !important;
	}

	body.single-product .woocommerce-product-gallery__image img {
		display: block !important;
		margin-inline: auto !important;
		object-position: center center !important;
	}

	body.single-product .woo-variation-gallery-slider-wrapper .slick-slide img {
		display: block !important;
		margin-inline: auto !important;
		object-position: center center !important;
	}
}

@media (max-width: 767px) {
	body.single-product .wvg-single-gallery-image-container {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
	}
}

/* Final single-product summary typography and purchase-button contract. */
body.single-product.woocommerce div.product .summary.entry-summary .product_title.entry-title {
	font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.035em;
	margin-bottom: 8px;
}

body.single-product.woocommerce div.product .summary.entry-summary p.price,
body.single-product.woocommerce div.product .summary.entry-summary span.price {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 6px 10px;
	margin: 0 0 14px;
	border-radius: 10px;
	background: #f3f4f6;
	gap: 8px;
}

body.single-product.woocommerce div.product .summary.entry-summary .woocommerce-Price-amount.amount {
	color: var(--gc-foreground);
	font-size: 16px;
	font-weight: 700;
}

body.single-product.woocommerce div.product .summary.entry-summary p.price > span:not([class]) {
	font-size: 16px;
	line-height: 1;
	align-self: center;
}

body.single-product.woocommerce div.product .summary.entry-summary form.cart .single_add_to_cart_button.button.alt,
body.single-product.woocommerce div.product .summary.entry-summary form.variations_form .single_add_to_cart_button.button.alt,
body.single-product.woocommerce div.product .summary.entry-summary form.cart .single_add_to_cart_button.button.alt:hover,
body.single-product.woocommerce div.product .summary.entry-summary form.variations_form .single_add_to_cart_button.button.alt:hover,
body.single-product.woocommerce div.product .summary.entry-summary form.cart .single_add_to_cart_button.button.alt:focus-visible,
body.single-product.woocommerce div.product .summary.entry-summary form.variations_form .single_add_to_cart_button.button.alt:focus-visible,
body.single-product.woocommerce div.product .summary.entry-summary form.cart .single_add_to_cart_button.button.alt:active,
body.single-product.woocommerce div.product .summary.entry-summary form.variations_form .single_add_to_cart_button.button.alt:active,
body.single-product.woocommerce div.product .summary.entry-summary form.cart .single_add_to_cart_button.button.alt:disabled,
body.single-product.woocommerce div.product .summary.entry-summary form.variations_form .single_add_to_cart_button.button.alt:disabled,
body.single-product.woocommerce div.product .summary.entry-summary form.cart .single_add_to_cart_button.button.alt.disabled,
body.single-product.woocommerce div.product .summary.entry-summary form.variations_form .single_add_to_cart_button.button.alt.disabled,
body.single-product.woocommerce div.product .summary.entry-summary form.cart .single_add_to_cart_button.button.alt.wc-variation-selection-needed,
body.single-product.woocommerce div.product .summary.entry-summary form.variations_form .single_add_to_cart_button.button.alt.wc-variation-selection-needed {
	border: 0 !important;
	background: var(--gc-add-to-cart) !important;
	color: var(--gc-foreground) !important;
}
