/* =========================================================================
   HC Group Store — componentes
   -------------------------------------------------------------------------
   TODO valor vem do design system (assets/css/tokens.css).
   Não usar cor/tamanho/espaçamento solto aqui — sempre var(--hcg-*).
   ========================================================================= */

/* ---------- Base ---------- */

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--hcg-font-body);
	font-size: var(--hcg-text-base);
	line-height: var(--hcg-leading-base);
	color: var(--hcg-ink);
	background: var(--hcg-surface);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, h4 {
	font-family: var(--hcg-font-display);
	font-weight: var(--hcg-weight-bold);
	line-height: var(--hcg-leading-tight);
	letter-spacing: var(--hcg-tracking-tight);
	color: var(--hcg-ink);
	margin: 0 0 0.5em;
}

h1 { font-size: var(--hcg-text-2xl); }
h2 { font-size: var(--hcg-text-xl); }
h3 { font-size: var(--hcg-text-lg); }

a { color: var(--hcg-brand); text-decoration: none; }
a:hover { color: var(--hcg-brand-hover); }

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

ul { padding: 0; margin: 0; list-style: none; }

.hcg-container {
	width: min(var(--hcg-container-max), 100% - var(--hcg-container-gutter));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

.skip-link:focus {
	position: fixed; top: var(--hcg-space-2); left: var(--hcg-space-2);
	z-index: var(--hcg-z-skip);
	background: var(--hcg-ink); color: var(--hcg-neutral-0);
	padding: var(--hcg-space-2) var(--hcg-space-4);
	border-radius: var(--hcg-radius-sm);
	width: auto; height: auto; clip: auto;
}

/* ---------- Botões ----------
   Padrão: pílula, altura --hcg-control-h, texto --hcg-text-sm bold.
   Variantes: --ghost (contorno), --invert (sobre fundo rosa), --lg. */

.hcg-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--hcg-space-2);
	min-height: var(--hcg-control-h);
	background: var(--hcg-brand);
	color: var(--hcg-neutral-0) !important;
	border: var(--hcg-border-w) solid var(--hcg-brand);
	border-radius: var(--hcg-radius-pill);
	padding: var(--hcg-space-2) var(--hcg-btn-pad-x);
	font-family: var(--hcg-font-body);
	font-size: var(--hcg-text-sm);
	font-weight: var(--hcg-weight-bold);
	line-height: var(--hcg-leading-snug);
	cursor: pointer;
	transition: transform var(--hcg-ease-fast), box-shadow var(--hcg-ease-fast), background var(--hcg-ease-fast);
}

.hcg-btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce button[type="submit"]:hover {
	background: var(--hcg-brand-hover);
	border-color: var(--hcg-brand-hover);
	transform: translateY(-1px);
	box-shadow: var(--hcg-shadow-brand);
	color: var(--hcg-neutral-0) !important;
}

.hcg-btn--ghost {
	background: transparent;
	color: var(--hcg-brand) !important;
}
.hcg-btn--ghost:hover { background: var(--hcg-brand-soft); color: var(--hcg-brand-hover) !important; box-shadow: none; }

.hcg-btn--invert { background: var(--hcg-neutral-0); border-color: var(--hcg-neutral-0); color: var(--hcg-brand) !important; }
.hcg-btn--invert:hover { background: var(--hcg-brand-soft); border-color: var(--hcg-brand-soft); color: var(--hcg-brand-hover) !important; }

.hcg-btn--lg {
	min-height: var(--hcg-control-h-lg);
	padding-inline: var(--hcg-btn-pad-x-lg);
	font-size: var(--hcg-text-md);
}

.hcg-btn--shine {
	position: relative;
	isolation: isolate;
	overflow: hidden;
}
.hcg-btn--shine::after {
	content: "";
	position: absolute;
	inset: -40% auto -40% -35%;
	width: 34%;
	background: linear-gradient(90deg, transparent, var(--hcg-white-a42), transparent);
	transform: skewX(-18deg);
	transition: transform var(--hcg-ease-slow);
	pointer-events: none;
}
.hcg-btn--shine:hover::after { transform: translateX(430%) skewX(-18deg); }

.hcg-inline-icon {
	display: inline-grid;
	place-items: center;
	width: 1.2em;
	height: 1.2em;
	margin-right: 0.35em;
	vertical-align: -0.18em;
}
.hcg-inline-icon svg { width: 100%; height: 100%; }

/* ---------- Barra superior ---------- */

.hcg-topbar {
	background: var(--hcg-institutional-blue);
	color: var(--hcg-on-dark);
	font-size: var(--hcg-text-xs);
}

.hcg-topbar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--hcg-space-4);
	min-height: 36px;
	flex-wrap: wrap;
	padding-block: var(--hcg-space-1);
}

.hcg-topbar__msg { margin: 0; font-weight: var(--hcg-weight-semibold); }

.hcg-topbar__contact { display: flex; gap: var(--hcg-space-4); flex-wrap: wrap; }
.hcg-topbar__contact a { color: var(--hcg-on-dark); opacity: 0.85; }
.hcg-topbar__contact a:hover { opacity: 1; color: var(--hcg-neutral-0); }

/* ---------- Header ---------- */

.hcg-header {
	background: var(--hcg-surface);
	border-bottom: 1px solid var(--hcg-line);
	position: sticky;
	top: 0;
	z-index: var(--hcg-z-header);
}

.hcg-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: var(--hcg-space-6);
	min-height: 76px;
	padding-block: var(--hcg-space-3);
}

.hcg-header__toggle {
	display: none;
	background: none;
	border: 0;
	color: var(--hcg-ink);
	cursor: pointer;
	padding: var(--hcg-space-1);
}

.hcg-logotype {
	font-family: var(--hcg-font-display);
	font-size: var(--hcg-text-lg);
	font-weight: var(--hcg-weight-black);
	color: var(--hcg-ink);
	letter-spacing: var(--hcg-tracking-tight);
	white-space: nowrap;
}
.hcg-logotype strong { color: var(--hcg-brand); }
.hcg-logotype span { font-weight: var(--hcg-weight-regular); color: var(--hcg-ink-soft); }

.hcg-logo {
	display: inline-flex;
	align-items: center;
	width: clamp(168px, 15vw, 218px);
	line-height: 0;
}

.hcg-logo__img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 50px;
	object-fit: contain;
}

@media (min-width: 821px) {
	.hcg-header .hcg-header__logo {
		transform: none;
		margin-right: 0;
	}
}

.hcg-header__search form {
	display: flex;
	align-items: center;
	width: 100%;
	background: var(--hcg-surface-alt);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-pill);
	padding: var(--hcg-space-1);
	padding-left: var(--hcg-input-pad-x);
	max-width: 560px;
	transition: border-color var(--hcg-ease-fast);
}
.hcg-header__search form:focus-within { border-color: var(--hcg-brand); background: var(--hcg-surface); }

.hcg-header__search input[type="search"] {
	flex: 1;
	border: 0;
	background: transparent;
	font: inherit;
	color: var(--hcg-ink);
	outline: none;
	min-width: 0;
	padding: var(--hcg-space-2) 0;
}

.hcg-header__search button,
.woocommerce .hcg-header__search button[type="submit"] {
	flex: 0 0 var(--hcg-control-h-sm);
	background: var(--hcg-brand);
	color: var(--hcg-neutral-0);
	border: 0;
	border-radius: var(--hcg-radius-pill);
	width: var(--hcg-control-h-sm);
	min-width: var(--hcg-control-h-sm);
	height: var(--hcg-control-h-sm);
	min-height: var(--hcg-control-h-sm);
	display: grid;
	place-items: center;
	gap: 0;
	padding: 0;
	line-height: 1;
	box-shadow: none;
	transform: none;
	cursor: pointer;
}
.hcg-header__search button svg,
.woocommerce .hcg-header__search button[type="submit"] svg {
	display: block;
	flex: 0 0 18px;
	width: 18px;
	min-width: 18px;
	height: 18px;
}
.hcg-header__search button:hover,
.woocommerce .hcg-header__search button[type="submit"]:hover {
	background: var(--hcg-brand-hover);
	border-color: transparent;
	box-shadow: none;
	transform: none;
}

.hcg-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--hcg-space-5);
	min-width: 148px;
}

.hcg-action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--hcg-space-1);
	min-width: 52px;
	color: var(--hcg-ink);
	font-size: var(--hcg-text-2xs);
	font-weight: var(--hcg-weight-semibold);
	position: relative;
}
.hcg-action:hover { color: var(--hcg-brand); }

.hcg-cart-count {
	position: absolute;
	top: -6px; right: 2px;
	background: var(--hcg-brand);
	color: var(--hcg-neutral-0);
	font-size: var(--hcg-text-2xs);
	font-weight: var(--hcg-weight-bold);
	min-width: 17px; height: 17px;
	border-radius: var(--hcg-radius-pill);
	display: grid;
	place-items: center;
	padding-inline: 3px;
}

/* ---------- Navegação de categorias ---------- */

.hcg-nav { border-top: 1px solid var(--hcg-line); background: var(--hcg-surface); }

.hcg-nav__inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--hcg-space-3);
	min-height: 54px;
}

.hcg-nav__mega-toggle {
	display: inline-flex;
	align-items: center;
	gap: var(--hcg-space-2);
	min-height: 42px;
	border: 0;
	background: var(--hcg-brand);
	color: var(--hcg-neutral-0);
	border-radius: var(--hcg-radius-pill);
	padding: var(--hcg-space-2) var(--hcg-space-4);
	font: inherit;
	font-size: var(--hcg-text-sm);
	font-weight: var(--hcg-weight-bold);
	cursor: pointer;
	transition: transform var(--hcg-ease-fast), box-shadow var(--hcg-ease-fast), background var(--hcg-ease-fast);
}
.hcg-nav__mega-toggle svg { width: 18px; height: 18px; }
.hcg-nav__mega-toggle:hover,
.hcg-nav__mega-toggle[aria-expanded="true"] {
	background: var(--hcg-brand-hover);
	box-shadow: var(--hcg-shadow-brand);
	transform: translateY(-1px);
}

.hcg-nav__list {
	display: flex;
	gap: var(--hcg-space-1);
	flex-wrap: wrap;
	align-items: center;
}

.hcg-nav__list > li { position: relative; }

.hcg-nav__list > li > a {
	display: flex;
	align-items: center;
	min-height: 54px;
	padding: var(--hcg-space-3) var(--hcg-space-4);
	color: var(--hcg-ink);
	font-weight: var(--hcg-weight-semibold);
	font-size: var(--hcg-text-sm);
	border-radius: var(--hcg-radius-sm) var(--hcg-radius-sm) 0 0;
	border-bottom: 2.5px solid transparent;
}
.hcg-nav__list > li > a:hover,
.hcg-nav__list > li.current-menu-item > a {
	color: var(--hcg-brand);
	border-bottom-color: var(--hcg-brand);
}

.hcg-nav__promo > a { color: var(--hcg-brand) !important; font-weight: var(--hcg-weight-bold) !important; }

/* Submenu */
.hcg-nav__list .sub-menu {
	position: absolute;
	top: 100%; left: 0;
	min-width: 230px;
	background: var(--hcg-surface);
	border: 1px solid var(--hcg-line);
	border-radius: 0 0 var(--hcg-radius-sm) var(--hcg-radius-sm);
	box-shadow: var(--hcg-shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: var(--hcg-ease);
	z-index: var(--hcg-z-dropdown);
}
.hcg-nav__list li:hover > .sub-menu,
.hcg-nav__list li:focus-within > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.hcg-nav__list .sub-menu a {
	display: block;
	padding: var(--hcg-space-2) var(--hcg-space-4);
	color: var(--hcg-ink);
	font-size: var(--hcg-text-sm);
}
.hcg-nav__list .sub-menu a:hover { background: var(--hcg-brand-soft); color: var(--hcg-brand-hover); }

/* Mega menu */
.hcg-mega {
	position: absolute;
	top: calc(100% + 1px);
	left: 0;
	right: 0;
	z-index: var(--hcg-z-dropdown);
	padding-top: var(--hcg-space-3);
}
.hcg-mega[hidden] { display: none; }
.hcg-mega__panel {
	display: grid;
	grid-template-columns: minmax(248px, 0.78fr) minmax(0, 1.8fr) minmax(224px, 0.66fr);
	gap: var(--hcg-space-4);
	padding: var(--hcg-space-5);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: 0 0 var(--hcg-radius-md) var(--hcg-radius-md);
	background:
		radial-gradient(42% 120% at 90% 0%, var(--hcg-brand-a18), transparent 58%),
		var(--hcg-surface);
	box-shadow: var(--hcg-shadow-lg);
	transform-origin: top center;
	animation: hcg-mega-in var(--hcg-motion-base) var(--hcg-curve-spring) both;
}
.hcg-mega__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--hcg-space-3);
	padding: var(--hcg-space-4);
	border-radius: var(--hcg-radius-md);
	background: var(--hcg-surface-alt);
}
.hcg-mega__eyebrow {
	color: var(--hcg-brand);
	font-size: var(--hcg-text-2xs);
	font-weight: var(--hcg-weight-black);
	letter-spacing: var(--hcg-tracking-wide);
	text-transform: uppercase;
}
.hcg-mega__intro h2 {
	font-size: var(--hcg-text-lg);
	margin: 0;
}
.hcg-mega__intro p {
	color: var(--hcg-ink-soft);
	font-size: var(--hcg-text-sm);
	margin: 0;
}
.hcg-mega__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--hcg-space-3);
}
.hcg-mega-card {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: var(--hcg-space-3);
	align-items: center;
	min-height: 112px;
	padding: var(--hcg-space-3);
	border: 1px solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	background: var(--hcg-white-a78);
	color: var(--hcg-ink);
	transition: transform var(--hcg-ease-slow), border-color var(--hcg-ease), box-shadow var(--hcg-ease);
}
.hcg-mega-card:hover {
	color: var(--hcg-ink);
	border-color: var(--hcg-brand-a35);
	box-shadow: var(--hcg-shadow-md);
	transform: translateY(-4px);
}
.hcg-mega-card__media {
	display: grid;
	place-items: center;
	width: 64px;
	aspect-ratio: 1;
	border-radius: var(--hcg-radius-sm);
	overflow: hidden;
	background: var(--hcg-brand-soft);
	color: var(--hcg-brand);
	border: 1px solid var(--hcg-line);
}
.hcg-mega-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hcg-mega-card__media svg { width: 24px; height: 24px; }
.hcg-mega-card__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.hcg-mega-card__body strong {
	font-family: var(--hcg-font-display);
	font-size: var(--hcg-text-md);
	line-height: var(--hcg-leading-snug);
}
.hcg-mega-card__body small,
.hcg-mega-card__body em {
	color: var(--hcg-ink-soft);
	font-size: var(--hcg-text-xs);
	font-style: normal;
	line-height: var(--hcg-leading-snug);
}
.hcg-mega__promo {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: var(--hcg-space-2);
	min-height: 100%;
	padding: var(--hcg-space-5);
	border-radius: var(--hcg-radius-md);
	background:
		linear-gradient(145deg, var(--hcg-brand), var(--hcg-brand-hover));
	color: var(--hcg-neutral-0);
	box-shadow: var(--hcg-shadow-brand);
}
.hcg-mega__promo:hover { color: var(--hcg-neutral-0); }
.hcg-mega__promo strong {
	font-family: var(--hcg-font-display);
	font-size: var(--hcg-text-xl);
	line-height: 1;
}
.hcg-mega__promo span {
	color: var(--hcg-white-a85);
	font-size: var(--hcg-text-sm);
	line-height: var(--hcg-leading-snug);
}

/* ---------- Hero ---------- */

.hcg-hero {
	background:
		radial-gradient(42% 84% at 78% 16%, var(--hcg-brand-a18) 0%, transparent 62%),
		radial-gradient(34% 72% at 18% 90%, var(--hcg-success-a10) 0%, transparent 68%),
		linear-gradient(145deg, var(--hcg-surface-alt) 0%, var(--hcg-surface) 62%, #fff8fa 100%);
	overflow: hidden;
	position: relative;
	isolation: isolate;
}
.hcg-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--hcg-brand-a05) 1px, transparent 1px),
		linear-gradient(90deg, var(--hcg-brand-a05) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
	pointer-events: none;
	z-index: -1;
}

.hcg-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
	align-items: center;
	gap: clamp(var(--hcg-space-8), 7vw, var(--hcg-space-16));
	min-height: clamp(520px, 68vh, 720px);
	padding-block: clamp(var(--hcg-space-10), 7vw, var(--hcg-space-16));
	position: relative;
}

.hcg-hero__eyebrow {
	display: inline-block;
	background: var(--hcg-brand-soft);
	color: var(--hcg-brand-hover);
	font-size: var(--hcg-text-2xs);
	font-weight: var(--hcg-weight-bold);
	letter-spacing: var(--hcg-tracking-wide);
	text-transform: uppercase;
	border-radius: var(--hcg-radius-pill);
	padding: var(--hcg-space-1) var(--hcg-space-3);
	margin-bottom: var(--hcg-space-4);
}

.hcg-hero__copy h1 {
	max-width: 13ch;
	font-size: clamp(2.45rem, 6vw, 5.8rem);
	line-height: 0.94;
	margin-bottom: var(--hcg-space-5);
	color: var(--hcg-institutional-blue);
}
.hcg-hero__copy h1 span {
	color: var(--hcg-brand);
	text-shadow: 0 12px 34px var(--hcg-brand-a20);
}
.hcg-hero__copy p {
	color: var(--hcg-ink-soft);
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	max-width: 48ch;
	margin: 0;
}

.hcg-hero__cta { display: flex; gap: var(--hcg-space-3); flex-wrap: wrap; margin-top: var(--hcg-space-6); }

.hcg-hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: var(--hcg-space-2);
	margin-top: var(--hcg-space-6);
}
.hcg-hero__proof span {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	min-height: 34px;
	padding: var(--hcg-space-1) var(--hcg-space-3);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--hcg-radius-pill);
	background: var(--hcg-institutional-blue);
	color: var(--hcg-on-dark-soft);
	font-size: var(--hcg-text-xs);
	backdrop-filter: blur(14px);
}
.hcg-hero__proof strong { color: var(--hcg-neutral-0); }

.hcg-hero__visual { min-width: 0; }
.hcg-hero-stage {
	position: relative;
	min-height: 480px;
	perspective: 1200px;
}
.hcg-hero-stage__glow {
	position: absolute;
	inset: 12% 8%;
	border-radius: 42px;
	background:
		radial-gradient(circle at 34% 20%, var(--hcg-white-a92), transparent 30%),
		linear-gradient(145deg, var(--hcg-brand-a28), var(--hcg-success-a10));
	filter: blur(4px);
	transform: rotate(-4deg);
}
.hcg-hero-stage__grid {
	position: absolute;
	inset: 6% 4% 0;
	border: 1px solid var(--hcg-brand-a14);
	border-radius: 36px;
	background:
		linear-gradient(var(--hcg-white-a75), var(--hcg-white-a36)),
		repeating-linear-gradient(90deg, transparent 0 46px, var(--hcg-brand-a09) 46px 47px),
		repeating-linear-gradient(0deg, transparent 0 46px, var(--hcg-brand-a09) 46px 47px);
	box-shadow: var(--hcg-shadow-lg);
	transform: rotate(-2deg);
}
.hcg-hero-stage__rail {
	position: absolute;
	inset: 0;
}
.hcg-hero-product {
	position: absolute;
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	align-items: center;
	gap: var(--hcg-space-4);
	width: min(390px, 82%);
	padding: var(--hcg-space-3);
	border: 1px solid var(--hcg-white-a72);
	border-radius: 24px;
	background: var(--hcg-white-a78);
	box-shadow: var(--hcg-shadow-float);
	color: var(--hcg-ink);
	backdrop-filter: blur(18px);
	transform-style: preserve-3d;
	transition: transform var(--hcg-ease-slow), box-shadow var(--hcg-ease-slow), border-color var(--hcg-ease);
}
.hcg-hero-product:hover {
	color: var(--hcg-ink);
	border-color: var(--hcg-brand-a35);
	box-shadow: 0 30px 80px -32px var(--hcg-burgundy-a58);
}
.hcg-hero-product--1 { top: 7%; right: 9%; transform: rotate(4deg); z-index: 3; }
.hcg-hero-product--2 { top: 34%; left: 0; transform: rotate(-5deg); z-index: 4; }
.hcg-hero-product--3 { right: 0; bottom: 5%; transform: rotate(3deg); z-index: 2; }
.hcg-hero-product__media {
	aspect-ratio: 1;
	border-radius: 20px;
	overflow: hidden;
	background: var(--hcg-surface-alt);
	border: 1px solid var(--hcg-line);
}
.hcg-hero-product__media img,
.hcg-hero-product__media svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hcg-hero-product__body {
	display: flex;
	flex-direction: column;
	gap: var(--hcg-space-2);
	min-width: 0;
}
.hcg-hero-product__name {
	font-weight: var(--hcg-weight-bold);
	line-height: var(--hcg-leading-snug);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.hcg-hero-product__price {
	width: fit-content;
	font-family: var(--hcg-font-display);
	font-size: var(--hcg-text-lg);
	font-weight: var(--hcg-weight-black);
	color: var(--hcg-success-dark);
}
.hcg-hero-orbit {
	position: absolute;
	z-index: 5;
	display: flex;
	flex-direction: column;
	gap: 1px;
	padding: var(--hcg-space-3) var(--hcg-space-4);
	border-radius: 20px;
	background: var(--hcg-ink);
	color: var(--hcg-neutral-0);
	box-shadow: var(--hcg-shadow-md);
}
.hcg-hero-orbit strong {
	font-family: var(--hcg-font-display);
	font-size: var(--hcg-text-md);
	line-height: 1;
}
.hcg-hero-orbit span { color: var(--hcg-on-dark-soft); font-size: var(--hcg-text-xs); }
.hcg-hero-orbit--pix { top: 0; left: 16%; }
.hcg-hero-orbit--ship { right: 12%; bottom: 27%; background: var(--hcg-success-dark); }

.hcg-hero--banners {
	background: var(--hcg-surface);
	overflow: hidden;
}

.hcg-hero--banners::before {
	content: none;
}

.hcg-hero-slider {
	position: relative;
	aspect-ratio: 1920 / 680;
	min-height: 0;
	background: var(--hcg-surface-alt);
}

.hcg-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 520ms ease, visibility 520ms ease;
}

.hcg-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.hcg-hero-slide__link {
	position: absolute;
	inset: 0;
	display: block;
	color: inherit;
	text-decoration: none;
}

.hcg-hero-slide__picture,
.hcg-hero-slide__picture img {
	display: block;
	height: 100%;
	width: 100%;
}

.hcg-hero-slide__picture img {
	object-fit: fill;
	object-position: center;
}

.hcg-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.hcg-hero-slider__controls {
	position: absolute;
	z-index: 3;
	left: 50%;
	bottom: var(--hcg-space-5);
	display: inline-flex;
	align-items: center;
	gap: var(--hcg-space-3);
	transform: translateX(-50%);
}

.hcg-hero-slider__arrow {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--hcg-line);
	border-radius: var(--hcg-radius-round);
	background: rgba(255, 255, 255, 0.9);
	color: var(--hcg-ink);
	cursor: pointer;
	transition: border-color var(--hcg-ease-fast), color var(--hcg-ease-fast), background var(--hcg-ease-fast);
}

.hcg-hero-slider__arrow:hover,
.hcg-hero-slider__arrow:focus-visible {
	background: var(--hcg-surface);
	border-color: var(--hcg-brand);
	color: var(--hcg-brand);
	outline: none;
}

.hcg-hero-slider__dots {
	display: inline-flex;
	align-items: center;
	gap: var(--hcg-space-2);
}

.hcg-hero-slider__dots button {
	width: 9px;
	height: 9px;
	border: 0;
	border-radius: var(--hcg-radius-round);
	background: rgba(42, 30, 36, 0.24);
	padding: 0;
	cursor: pointer;
	transition: width var(--hcg-ease-fast), background var(--hcg-ease-fast);
}

.hcg-hero-slider__dots button.is-active {
	width: 28px;
	background: var(--hcg-brand);
}

/* ---------- Barra de benefícios ---------- */

.hcg-benefits {
	border-bottom: 1px solid var(--hcg-line);
	background: var(--hcg-surface);
}

.hcg-benefits__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--hcg-gap-grid);
	padding-block: calc(var(--hcg-space-4) + 20px);
}

.hcg-benefits__item { display: flex; align-items: center; gap: var(--hcg-space-3); }

.hcg-benefits__icon {
	flex: none;
	width: var(--hcg-control-h);
	height: var(--hcg-control-h);
	display: grid;
	place-items: center;
	background: var(--hcg-brand-soft);
	color: var(--hcg-brand);
	border-radius: var(--hcg-radius-md);
}

.hcg-benefits__text { display: flex; flex-direction: column; line-height: var(--hcg-leading-snug); }
.hcg-benefits__text strong,
.hcg-benefits__text small {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.hcg-benefits__text strong { -webkit-line-clamp: 1; }
.hcg-benefits__text small { -webkit-line-clamp: 1; }
.hcg-benefits__text strong { font-size: var(--hcg-text-sm); }
.hcg-benefits__text small { color: var(--hcg-ink-soft); font-size: var(--hcg-text-xs); }

/* ---------- Faixa viva de diferenciais ---------- */

.hcg-motion-strip {
	overflow: hidden;
	border-bottom: 1px solid var(--hcg-line);
	background: var(--hcg-institutional-blue);
	color: var(--hcg-on-dark);
	margin-bottom: var(--hcg-space-4);
}
.hcg-motion-strip__track {
	display: flex;
	width: max-content;
	max-width: none;
	gap: var(--hcg-space-5);
	padding-block: var(--hcg-space-3);
	animation: hcg-marquee 38s linear infinite;
	will-change: transform;
}
.hcg-motion-strip__track span {
	display: inline-flex;
	align-items: center;
	gap: var(--hcg-space-2);
	white-space: nowrap;
	font-size: var(--hcg-text-xs);
	font-weight: var(--hcg-weight-bold);
}
.hcg-motion-strip__track span::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: var(--hcg-radius-round);
	background: var(--hcg-neutral-0);
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

/* ---------- Categorias (home) ---------- */

.hcg-cats { padding-block: var(--hcg-space-10) var(--hcg-space-4); }

.hcg-cats__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: var(--hcg-gap-grid);
}

.hcg-cats__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--hcg-space-1);
	min-height: 184px;
	background: var(--hcg-surface-alt);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	padding: var(--hcg-space-6) var(--hcg-space-4);
	text-align: center;
	color: var(--hcg-ink);
	transition: var(--hcg-ease);
}
.hcg-cats__card:hover {
	border-color: var(--hcg-brand);
	background: var(--hcg-brand-soft);
	transform: translateY(-3px);
	color: var(--hcg-ink);
}

.hcg-cats__thumb {
	width: 72px; height: 72px;
	border-radius: var(--hcg-radius-round);
	overflow: hidden;
	background: var(--hcg-surface);
	display: grid;
	place-items: center;
	color: var(--hcg-brand);
	border: var(--hcg-border-w) solid var(--hcg-line);
}
.hcg-cats__thumb img { width: 100%; height: 100%; object-fit: cover; }

.hcg-cats__name { font-weight: var(--hcg-weight-bold); font-family: var(--hcg-font-display); }
.hcg-cats__count { font-size: var(--hcg-text-xs); color: var(--hcg-ink-soft); }

/* ---------- Vitrines ---------- */

.hcg-showcase { padding-block: var(--hcg-space-8); }

.hcg-showcase__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--hcg-space-4);
	margin-bottom: var(--hcg-space-5);
	min-height: 42px;
}
.hcg-showcase__head h2 { margin: 0; position: relative; padding-left: var(--hcg-space-3); }
.hcg-showcase__head h2::before {
	content: "";
	position: absolute;
	left: 0; top: 0.18em; bottom: 0.18em;
	width: 4px;
	border-radius: 4px;
	background: var(--hcg-brand);
}
.hcg-showcase__more {
	flex: none;
	font-weight: var(--hcg-weight-bold);
	font-size: var(--hcg-text-sm);
	white-space: nowrap;
}

.hcg-carousel-controls {
	display: none;
}

/* ---------- Banners editoriais 50/50 ---------- */

.hcg-duo-banners {
	padding-block: var(--hcg-space-6) var(--hcg-space-8);
}

.hcg-duo-banners__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--hcg-space-6);
}

.hcg-duo-banner {
	display: grid;
	grid-template-rows: minmax(260px, 34vw) auto;
	min-height: 460px;
	background: var(--hcg-surface);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	overflow: hidden;
	color: var(--hcg-ink);
	box-shadow: 0 20px 52px -38px rgba(42, 30, 36, 0.45);
	transition: transform var(--hcg-ease-slow), box-shadow var(--hcg-ease-slow), border-color var(--hcg-ease);
}

.hcg-duo-banner:hover {
	color: var(--hcg-ink);
	border-color: var(--hcg-rose-300);
	transform: translateY(-4px);
	box-shadow: var(--hcg-shadow-lg);
}

.hcg-duo-banner__media {
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 78% 18%, var(--hcg-white-a92), transparent 27%),
		linear-gradient(145deg, var(--hcg-brand-a14), var(--hcg-blue-50));
}

.hcg-duo-banner--care .hcg-duo-banner__media {
	background:
		radial-gradient(circle at 20% 15%, var(--hcg-white-a92), transparent 28%),
		linear-gradient(145deg, var(--hcg-blue-50), var(--hcg-brand-a18));
}

.hcg-duo-banner__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 58%, rgba(255, 255, 255, 0.72));
	pointer-events: none;
}

.hcg-duo-banner__media img {
	position: relative;
	z-index: 1;
	width: min(72%, 460px);
	height: min(88%, 430px);
	object-fit: contain;
	filter: drop-shadow(0 28px 32px rgba(42, 30, 36, 0.18));
	transform: scale(1.01);
	transition: transform var(--hcg-ease-slow);
}

.hcg-duo-banner:hover .hcg-duo-banner__media img {
	transform: scale(1.06) rotate(-1deg);
}

.hcg-duo-banner__body {
	display: grid;
	gap: var(--hcg-space-2);
	padding: var(--hcg-space-5);
	text-align: center;
}

.hcg-duo-banner__eyebrow {
	color: var(--hcg-brand);
	font-size: var(--hcg-text-2xs);
	font-weight: var(--hcg-weight-black);
	letter-spacing: var(--hcg-tracking-wide);
	text-transform: uppercase;
}

.hcg-duo-banner__title {
	font-family: var(--hcg-font-display);
	font-size: clamp(1.35rem, 2.2vw, 2rem);
	font-weight: var(--hcg-weight-black);
	line-height: var(--hcg-leading-tight);
}

.hcg-duo-banner__text {
	max-width: 44ch;
	margin-inline: auto;
	color: var(--hcg-ink-soft);
	font-size: var(--hcg-text-sm);
}

/* ---------- Faixa promocional ---------- */

.hcg-promoband {
	background: linear-gradient(120deg, var(--hcg-brand) 0%, var(--hcg-brand-hover) 100%);
	color: var(--hcg-neutral-0);
	margin-block: var(--hcg-space-6);
	overflow: visible;
	position: relative;
}
.hcg-promoband__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
	align-items: center;
	gap: clamp(var(--hcg-space-6), 6vw, var(--hcg-space-12));
	min-height: 430px;
	padding-block: var(--hcg-space-8);
	position: relative;
	z-index: 1;
}
.hcg-promoband::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
		linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 54%);
	pointer-events: none;
}
.hcg-promoband__copy {
	max-width: 620px;
}
.hcg-promoband__eyebrow {
	display: inline-flex;
	margin-bottom: var(--hcg-space-3);
	color: var(--hcg-neutral-0);
	font-size: var(--hcg-text-2xs);
	font-weight: var(--hcg-weight-black);
	letter-spacing: var(--hcg-tracking-wide);
	text-transform: uppercase;
	opacity: 0.88;
}
.hcg-promoband h2 { color: var(--hcg-neutral-0); margin: 0; }
.hcg-promoband p { margin: var(--hcg-space-3) 0 var(--hcg-space-5); opacity: 0.92; max-width: 58ch; }
.hcg-promoband__media {
	align-self: end;
	display: grid;
	place-items: end center;
	min-height: 390px;
	margin-top: calc((var(--hcg-space-16) + var(--hcg-space-6)) * -1);
}
.hcg-promoband__media img {
	width: min(620px, 100%);
	max-height: 500px;
	margin-top: calc(var(--hcg-space-10) * -1);
	object-fit: contain;
	filter: drop-shadow(0 30px 38px rgba(74, 18, 34, 0.28));
	transform: translateY(var(--hcg-space-8));
}

/* ---------- Sobre (home) ---------- */

.hcg-about-strip {
	background: var(--hcg-surface-alt);
	border-top: 1px solid var(--hcg-line);
	text-align: center;
	padding-block: var(--hcg-space-12);
	margin-top: var(--hcg-space-8);
}
.hcg-about-strip p { max-width: 68ch; margin-inline: auto; color: var(--hcg-ink-soft); }
.hcg-about-strip .hcg-btn { margin-top: var(--hcg-space-4); }

/* ---------- Grade de produtos (WooCommerce) ---------- */

.woocommerce ul.products,
ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--hcg-gap-grid);
	margin: 0 0 var(--hcg-space-6);
	list-style: none;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }

.woocommerce ul.products li.product,
ul.products li.product {
	width: auto !important;
	float: none !important;
	height: 100%;
	margin: 0 !important;
}

/* Card */
.hcg-card {
	background: var(--hcg-surface);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
	transition: transform var(--hcg-ease-slow), box-shadow var(--hcg-ease-slow), border-color var(--hcg-ease), background var(--hcg-ease);
}
.hcg-card:hover {
	border-color: var(--hcg-rose-300);
	box-shadow: var(--hcg-shadow-lg);
	transform: translateY(-6px);
}

.hcg-card__media {
	position: relative;
	aspect-ratio: 1;
	flex: none;
	background:
		radial-gradient(circle at 50% 0%, var(--hcg-white-a85), transparent 34%),
		var(--hcg-surface-alt);
	overflow: hidden;
}
.hcg-card__link {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	width: auto;
	height: auto;
	min-height: 0;
	padding: var(--hcg-space-3);
	overflow: hidden;
}
.hcg-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 100%;
	aspect-ratio: auto;
	object-fit: contain;
	transform: scale(1.01);
	transition: transform var(--hcg-ease-slow), filter var(--hcg-ease);
}
.hcg-card:hover .hcg-card__media img { transform: scale(1.07); filter: saturate(1.06); }
.hcg-card__shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 25%, var(--hcg-white-a56) 46%, transparent 62%);
	opacity: 0;
	transform: translateX(-100%);
	pointer-events: none;
}
.hcg-card:hover .hcg-card__shine {
	opacity: 1;
	animation: hcg-card-shine 760ms var(--hcg-curve-standard) both;
}

.hcg-badge,
.woocommerce span.onsale {
	position: absolute;
	top: var(--hcg-space-2); left: var(--hcg-space-2);
	z-index: 5;
	background: var(--hcg-ink);
	color: var(--hcg-neutral-0);
	font-size: var(--hcg-text-2xs);
	font-weight: var(--hcg-weight-black);
	letter-spacing: var(--hcg-tracking-wide);
	padding: var(--hcg-space-1) var(--hcg-space-2);
	border-radius: var(--hcg-radius-pill);
	line-height: 1;
	min-width: 0; min-height: 0;
}

.hcg-card__body {
	display: flex;
	flex-direction: column;
	gap: var(--hcg-space-2);
	padding: var(--hcg-card-pad);
	flex: 1;
}

.hcg-card__stock {
	min-height: 1.2em;
	color: var(--hcg-success);
	font-size: var(--hcg-text-2xs);
	font-weight: var(--hcg-weight-bold);
	text-transform: uppercase;
	letter-spacing: var(--hcg-tracking-wide);
}

.hcg-card__title {
	font-size: var(--hcg-text-sm);
	font-weight: var(--hcg-weight-semibold);
	font-family: var(--hcg-font-body);
	margin: 0;
	line-height: var(--hcg-leading-snug);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.7em;
}
.hcg-card__title a { color: var(--hcg-ink); }
.hcg-card__title a:hover { color: var(--hcg-brand); }

.hcg-card__price .price,
.woocommerce ul.products li.product .price {
	display: flex;
	align-items: baseline;
	gap: var(--hcg-space-2);
	flex-wrap: wrap;
	row-gap: var(--hcg-space-1);
	color: var(--hcg-ink);
	font-size: var(--hcg-text-md);
	font-weight: var(--hcg-weight-black);
	font-family: var(--hcg-font-display);
	margin: 0;
	min-height: 1.9em;
}
.hcg-card__price del,
.woocommerce .price del {
	color: var(--hcg-ink-soft);
	font-size: var(--hcg-text-xs);
	font-weight: var(--hcg-weight-medium);
	opacity: 1;
	flex-basis: 100%;
}
.hcg-card__price ins,
.woocommerce .price ins { text-decoration: none; }

.hcg-installments {
	margin: 0;
	font-size: var(--hcg-text-xs);
	color: var(--hcg-ink-soft);
	min-height: 1.35em;
}
.hcg-installments strong { color: var(--hcg-success); }

.hcg-card__actions {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: var(--hcg-space-2);
	padding-top: var(--hcg-space-2);
	min-height: 82px;
}
.hcg-card__actions .button { width: 100%; text-align: center; }
.hcg-card__actions .button {
	position: relative;
	overflow: hidden;
}
.hcg-card__actions .button::after { content: none; }

.hcg-card__whats {
	font-size: var(--hcg-text-xs);
	font-weight: var(--hcg-weight-semibold);
	color: var(--hcg-success);
	text-align: center;
}
.hcg-card__whats:hover { color: var(--hcg-success-dark); text-decoration: underline; }

/* ---------- Loja: layout com sidebar ---------- */

.hcg-shop {
	display: grid;
	grid-template-columns: 292px minmax(0, 1fr);
	gap: var(--hcg-space-8);
	padding-block: var(--hcg-space-8) var(--hcg-space-12);
}
.hcg-shop__main {
	min-width: 0;
}
.hcg-woo {
	padding-block: var(--hcg-space-8) var(--hcg-space-12);
}
.hcg-woo .hcg-shop__main {
	width: 100%;
}
.hcg-shop__sidebar {
	position: sticky;
	top: calc(var(--hcg-space-5) + 32px);
	align-self: start;
}

.hcg-shop__sidebar .widget {
	background: var(--hcg-surface);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	padding: var(--hcg-card-pad);
	margin-bottom: var(--hcg-space-4);
	font-size: var(--hcg-text-sm);
}
.hcg-shop__sidebar .widget-title {
	font-size: var(--hcg-text-sm);
	margin-bottom: var(--hcg-space-3);
}
.hcg-shop__sidebar ul li { padding-block: var(--hcg-space-1); }
.hcg-shop__sidebar a { color: var(--hcg-ink); }
.hcg-shop__sidebar a:hover { color: var(--hcg-brand); }
.hcg-shop__sidebar .wp-block-search {
	display: grid;
	gap: var(--hcg-space-2);
}
.hcg-shop__sidebar .wp-block-search__inside-wrapper {
	display: grid;
	gap: var(--hcg-space-2);
}

.hcg-shop-filters {
	margin-bottom: var(--hcg-space-4);
	padding: var(--hcg-space-5);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	background: var(--hcg-surface);
	box-shadow: var(--hcg-shadow-sm);
}
.hcg-shop-filters__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--hcg-space-3);
	margin-bottom: var(--hcg-space-4);
}
.hcg-shop-filters__head span {
	font-family: var(--hcg-font-display);
	font-size: var(--hcg-text-md);
	font-weight: var(--hcg-weight-black);
	color: var(--hcg-ink);
}
.hcg-shop-filters__head a {
	color: var(--hcg-brand);
	font-size: var(--hcg-text-xs);
	font-weight: var(--hcg-weight-bold);
}
.hcg-shop-filters__group {
	display: grid;
	gap: var(--hcg-space-3);
	padding-block: var(--hcg-space-4);
	border-top: var(--hcg-border-w) solid var(--hcg-line);
}
.hcg-shop-filters__group h3 {
	margin: 0;
	color: var(--hcg-ink);
	font-family: var(--hcg-font-body);
	font-size: var(--hcg-text-xs);
	font-weight: var(--hcg-weight-black);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.hcg-shop-filters__chips {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--hcg-space-2);
}
.hcg-shop-filters__chips a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 38px;
	padding: var(--hcg-space-2) var(--hcg-space-4);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-sm);
	color: var(--hcg-ink);
	background: var(--hcg-surface-alt);
	font-size: var(--hcg-text-xs);
	font-weight: var(--hcg-weight-bold);
}
.hcg-shop-filters__chips a:hover,
.hcg-shop-filters__chips a.is-active {
	border-color: var(--hcg-brand);
	background: var(--hcg-brand);
	color: var(--hcg-neutral-0);
}
.hcg-shop-filters__form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}
.hcg-shop-filters__form label {
	display: grid;
	gap: var(--hcg-space-1);
	margin: 0 0 var(--hcg-space-3);
}
.hcg-shop-filters__form label span {
	color: var(--hcg-ink-soft);
	font-size: var(--hcg-text-xs);
	font-weight: var(--hcg-weight-bold);
}
.hcg-shop-filters__form input,
.hcg-shop-filters__form select {
	width: 100%;
	min-height: var(--hcg-control-h);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-pill);
	background: var(--hcg-surface);
	color: var(--hcg-ink);
	font-family: var(--hcg-font-body);
	font-size: var(--hcg-text-sm);
	font-weight: var(--hcg-weight-semibold);
	padding: var(--hcg-space-2) var(--hcg-space-4);
}
.hcg-shop-filters__form input:focus,
.hcg-shop-filters__form select:focus {
	border-color: var(--hcg-brand);
	box-shadow: var(--hcg-focus-ring);
	outline: none;
}
.hcg-shop-filters__form .hcg-btn {
	width: 100%;
	margin-top: var(--hcg-space-4);
}
.hcg-shop__jet-filters {
	display: grid;
	gap: var(--hcg-space-4);
}

.woocommerce .woocommerce-result-count {
	color: var(--hcg-ink-soft);
	font-size: var(--hcg-text-sm);
	margin: 0 0 var(--hcg-space-5);
	float: left;
}

.woocommerce .woocommerce-ordering select,
select {
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-pill);
	padding: var(--hcg-space-2) var(--hcg-space-4);
	font: inherit;
	font-size: var(--hcg-text-sm);
	background: var(--hcg-surface);
	color: var(--hcg-ink);
}
.woocommerce .woocommerce-ordering {
	float: right;
	display: inline-flex;
	width: auto;
	margin: 0 0 var(--hcg-space-5);
}
.hcg-shop .woocommerce-ordering { display: none; }

/* Breadcrumb */
.woocommerce .woocommerce-breadcrumb {
	font-size: var(--hcg-text-xs);
	color: var(--hcg-ink-soft);
	margin-bottom: var(--hcg-space-5);
}
.woocommerce .woocommerce-breadcrumb a { color: var(--hcg-ink-soft); }
.woocommerce .woocommerce-breadcrumb a:hover { color: var(--hcg-brand); }

/* Título da categoria */
.woocommerce-products-header {
	position: relative;
	margin-bottom: var(--hcg-space-6);
	padding: var(--hcg-space-6);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	background:
		linear-gradient(135deg, rgba(0, 92, 132, 0.08), rgba(229, 60, 97, 0.08)),
		var(--hcg-surface);
	overflow: hidden;
}
.woocommerce-products-header::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 5px;
	background: var(--hcg-brand);
}
.woocommerce-products-header__title {
	margin-bottom: var(--hcg-space-2);
	color: var(--hcg-ink);
}
.term-description {
	color: var(--hcg-ink-soft);
	max-width: 75ch;
}
.term-description p:last-child { margin-bottom: 0; }
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	position: relative;
	z-index: 1;
}
.woocommerce .woocommerce-result-count {
	display: inline-flex;
	align-items: center;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}
.woocommerce .woocommerce-ordering::after {
	content: "";
	display: table;
	clear: both;
}
.hcg-shop .woocommerce ul.products,
.hcg-shop ul.products {
	clear: both;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Paginação */
.woocommerce nav.woocommerce-pagination ul,
.hcg-pagination .nav-links {
	display: flex;
	gap: var(--hcg-space-2);
	justify-content: center;
	border: 0;
	margin-top: var(--hcg-space-4);
}
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.hcg-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 40px; height: 40px;
	border-radius: var(--hcg-radius-pill);
	border: var(--hcg-border-w) solid var(--hcg-line);
	color: var(--hcg-ink);
	font-weight: var(--hcg-weight-semibold);
	padding: 0;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.hcg-pagination a.page-numbers:hover { border-color: var(--hcg-brand); color: var(--hcg-brand); background: var(--hcg-surface); }
.woocommerce nav.woocommerce-pagination ul li span.current,
.hcg-pagination .page-numbers.current { background: var(--hcg-brand); border-color: var(--hcg-brand); color: var(--hcg-neutral-0); }

/* ---------- Página do produto ---------- */

.woocommerce div.product {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: var(--hcg-space-8);
	align-items: start;
	padding-block: var(--hcg-space-4) var(--hcg-space-8);
}

.woocommerce div.product > span.onsale {
	position: absolute;
	top: var(--hcg-space-4);
	left: var(--hcg-space-2);
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related,
.woocommerce div.product .upsells {
	grid-column: 1 / -1;
	width: 100%;
}

@media (max-width: 820px) {
	.woocommerce div.product { grid-template-columns: 1fr; }
}

.woocommerce div.product .product_title {
	font-family: var(--hcg-font-display);
	font-size: var(--hcg-text-xl);
	line-height: var(--hcg-leading-tight);
}

.woocommerce div.product .woocommerce-product-gallery {
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	overflow: hidden;
	background: var(--hcg-surface-alt);
}
.woocommerce div.product .woocommerce-product-gallery .flex-viewport {
	background: var(--hcg-surface);
}
.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__image > a {
	display: block;
	background: var(--hcg-surface);
}
.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__image > a img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
	background: var(--hcg-surface);
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--hcg-space-2);
	margin: 0;
	padding: var(--hcg-space-3);
	border-top: var(--hcg-border-w) solid var(--hcg-line);
	background: var(--hcg-surface);
	list-style: none;
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li {
	width: auto;
	float: none;
	margin: 0;
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-sm);
	background: var(--hcg-surface-alt);
	opacity: 0.72;
	cursor: pointer;
	transition: opacity var(--hcg-ease-fast), border-color var(--hcg-ease-fast), transform var(--hcg-ease-fast);
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs img.flex-active,
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs img:hover {
	border-color: var(--hcg-brand);
	opacity: 1;
	transform: translateY(-1px);
}

.woocommerce div.product p.price {
	color: var(--hcg-ink);
	font-family: var(--hcg-font-display);
	font-size: var(--hcg-text-price);
	font-weight: var(--hcg-weight-black);
}
.woocommerce div.product p.price del { font-size: var(--hcg-text-base); color: var(--hcg-ink-soft); }
.woocommerce div.product p.price ins { text-decoration: none; }

.woocommerce div.product .woocommerce-product-details__short-description {
	color: var(--hcg-ink-soft);
	border-top: 1px solid var(--hcg-line);
	padding-top: var(--hcg-space-4);
	margin-top: var(--hcg-space-4);
}

.woocommerce div.product form.cart {
	display: flex;
	align-items: stretch;
	gap: var(--hcg-space-3);
	flex-wrap: wrap;
	margin-block: var(--hcg-space-5);
}

.woocommerce div.product form.cart div.quantity .qty,
.woocommerce .quantity .qty {
	width: 76px;
	height: 100%;
	min-height: var(--hcg-control-h);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-pill);
	text-align: center;
	font: inherit;
	font-weight: var(--hcg-weight-bold);
}

.woocommerce div.product form.cart .button {
	flex: 1;
	min-width: 200px;
	min-height: var(--hcg-control-h-lg);
	font-size: var(--hcg-text-md);
}

.hcg-btn-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: var(--hcg-space-2);
	min-height: var(--hcg-control-h-sm);
	background: var(--hcg-success-soft);
	border: var(--hcg-border-w) solid var(--hcg-success);
	color: var(--hcg-success);
	font-weight: var(--hcg-weight-bold);
	font-size: var(--hcg-text-sm);
	border-radius: var(--hcg-radius-pill);
	padding: var(--hcg-space-2) var(--hcg-space-5);
	margin-block: var(--hcg-space-1) var(--hcg-space-2);
	transition: var(--hcg-ease-fast);
}
.hcg-btn-whatsapp:hover { background: var(--hcg-success); color: var(--hcg-neutral-0); }

.hcg-trust-note {
	display: flex;
	align-items: center;
	gap: var(--hcg-space-2);
	color: var(--hcg-ink-soft);
	font-size: var(--hcg-text-xs);
	margin-top: var(--hcg-space-2);
}

.woocommerce div.product .product_meta {
	border-top: 1px solid var(--hcg-line);
	padding-top: var(--hcg-space-4);
	font-size: var(--hcg-text-xs);
	color: var(--hcg-ink-soft);
}

/* Abas */
.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
	margin: var(--hcg-space-8) 0 0;
	display: flex;
	gap: var(--hcg-space-2);
	border-bottom: var(--hcg-border-w) solid var(--hcg-line);
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: transparent;
	border: 0;
	border-radius: 0;
	margin: 0;
	padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: var(--hcg-space-3) var(--hcg-space-4);
	font-weight: var(--hcg-weight-bold);
	color: var(--hcg-ink-soft);
	border-bottom: 2.5px solid transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--hcg-brand);
	border-bottom-color: var(--hcg-brand);
}
.woocommerce div.product .woocommerce-tabs .panel { padding-top: var(--hcg-space-6); }

/* Relacionados / upsell */
.woocommerce div.product .related,
.woocommerce div.product .upsells {
	margin-top: var(--hcg-space-10);
	padding-top: var(--hcg-space-8);
	border-top: var(--hcg-border-w) solid var(--hcg-line);
}

.woocommerce .related > h2,
.woocommerce .upsells > h2,
.cross-sells > h2 {
	position: relative;
	padding-left: var(--hcg-space-3);
	margin: 0 0 var(--hcg-space-5);
	font-size: var(--hcg-text-xl);
}
.woocommerce .related > h2::before,
.woocommerce .upsells > h2::before,
.cross-sells > h2::before {
	content: "";
	position: absolute;
	left: 0; top: 0.18em; bottom: 0.18em;
	width: 4px; border-radius: 4px;
	background: var(--hcg-brand);
}

.woocommerce div.product .related ul.products,
.woocommerce div.product .upsells ul.products {
	margin-bottom: 0;
}

/* ---------- Avisos WooCommerce ---------- */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-top: 0;
	border-left: 4px solid var(--hcg-brand);
	background: var(--hcg-surface-alt);
	border-radius: var(--hcg-radius-sm);
	color: var(--hcg-ink);
	padding: var(--hcg-space-4) var(--hcg-space-5) var(--hcg-space-4) var(--hcg-space-12);
}
.woocommerce-message { border-left-color: var(--hcg-success); }
.woocommerce-message::before { color: var(--hcg-success); }
.woocommerce-info::before { color: var(--hcg-brand); }
.woocommerce-error { border-left-color: var(--hcg-danger); }

/* ---------- Carrinho ---------- */

.woocommerce-cart .hcg-content,
.woocommerce-checkout .hcg-content,
.woocommerce-account .hcg-content { padding-block: var(--hcg-space-8) var(--hcg-space-12); }

.woocommerce-cart .hcg-content--page,
.woocommerce-checkout .hcg-content--page,
.woocommerce-account .hcg-content--page {
	max-width: min(var(--hcg-container-max), 100% - var(--hcg-container-gutter));
}

.woocommerce-cart .hcg-page,
.woocommerce-checkout .hcg-page,
.woocommerce-account .hcg-page,
.woocommerce-cart .hcg-page__body,
.woocommerce-checkout .hcg-page__body,
.woocommerce-account .hcg-page__body {
	max-width: 100%;
	width: 100%;
}

.hcg-freeship {
	background: var(--hcg-surface-alt);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	padding: var(--hcg-card-pad);
	margin-bottom: var(--hcg-space-6);
}
.hcg-freeship p { margin: 0 0 var(--hcg-space-2); font-size: var(--hcg-text-sm); }
.hcg-freeship strong { color: var(--hcg-brand); }
.hcg-freeship__bar {
	height: 8px;
	background: var(--hcg-line);
	border-radius: var(--hcg-radius-pill);
	overflow: hidden;
}
.hcg-freeship__bar span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--hcg-brand) 0%, var(--hcg-success) 100%);
	border-radius: var(--hcg-radius-pill);
	transition: width var(--hcg-ease-slow);
}

.woocommerce table.shop_table {
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
}
.woocommerce table.shop_table th {
	background: var(--hcg-surface-alt);
	font-family: var(--hcg-font-display);
	font-size: var(--hcg-text-xs);
	text-transform: uppercase;
	letter-spacing: var(--hcg-tracking-wide);
}
.woocommerce table.shop_table td { border-top: 1px solid var(--hcg-line); padding: var(--hcg-space-3) var(--hcg-space-4); vertical-align: middle; }

.woocommerce table.shop_table td.product-thumbnail,
.woocommerce table.shop_table th.product-thumbnail { width: 88px; }
.woocommerce table.shop_table img,
.woocommerce-cart table.cart img {
	width: 72px;
	min-width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: var(--hcg-radius-sm);
	border: 1px solid var(--hcg-line);
}
.woocommerce table.shop_table td.product-name { min-width: 180px; }
.woocommerce table.shop_table td.product-name a { color: var(--hcg-ink); font-weight: var(--hcg-weight-semibold); }
.woocommerce table.shop_table td.product-name a:hover { color: var(--hcg-brand); }

.woocommerce a.remove {
	color: var(--hcg-ink-soft) !important;
	width: 26px; height: 26px; line-height: 24px;
	border: var(--hcg-border-w) solid var(--hcg-line);
}
.woocommerce a.remove:hover { background: var(--hcg-brand) !important; border-color: var(--hcg-brand); }

.woocommerce #coupon_code {
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-pill);
	padding: var(--hcg-space-2) var(--hcg-space-4);
	font: inherit;
	font-size: var(--hcg-text-sm);
	width: 140px;
}

.cart_totals h2, #order_review_heading { font-size: var(--hcg-text-lg); }
.cart-collaterals .cart_totals,
.woocommerce-cart-form,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-account .woocommerce-MyAccount-content {
	background: var(--hcg-surface);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	padding: var(--hcg-card-pad);
}
.cart-collaterals .cart_totals h2,
.woocommerce-checkout #order_review_heading {
	margin-top: 0;
}

/* ---------- Checkout / formulários ----------
   Padrão de campo: altura --hcg-control-h, raio sm, borda --hcg-line,
   foco = borda rosa + anel --hcg-focus-ring. */

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row input.input-text,
input[type="text"], input[type="email"], input[type="tel"],
input[type="password"], input[type="search"], textarea {
	min-height: var(--hcg-control-h);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-sm);
	padding: var(--hcg-space-2) var(--hcg-input-pad-x);
	font: inherit;
	color: var(--hcg-ink);
	background: var(--hcg-surface);
	transition: border-color var(--hcg-ease-fast);
}
textarea { min-height: calc(var(--hcg-control-h) * 2); }

.woocommerce form .form-row input.input-text:focus,
input:focus, textarea:focus, select:focus {
	outline: none;
	border-color: var(--hcg-brand);
	box-shadow: var(--hcg-focus-ring);
}

.woocommerce form .form-row label { font-weight: var(--hcg-weight-semibold); font-size: var(--hcg-text-xs); }

/* Layout dos formulários (checkout, endereço, conta) */
.woocommerce form .form-row {
	display: block;
	margin: 0 0 var(--hcg-space-4);
	padding: 0;
}
.woocommerce form .form-row label { display: block; margin-bottom: var(--hcg-space-1); }
.woocommerce form .form-row .woocommerce-input-wrapper { display: block; width: 100%; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea { width: 100%; }
.woocommerce form .form-row-first { float: left; width: calc(50% - var(--hcg-space-2)); }
.woocommerce form .form-row-last { float: right; width: calc(50% - var(--hcg-space-2)); }
.woocommerce form .form-row-wide { clear: both; }
.woocommerce .woocommerce-billing-fields::after,
.woocommerce .woocommerce-shipping-fields::after,
.woocommerce .woocommerce-address-fields::after {
	content: "";
	display: block;
	clear: both;
}

/* Checkout em 2 colunas: dados à esquerda, resumo à direita */
@media (min-width: 1025px) {
	.woocommerce-checkout form.checkout.woocommerce-checkout {
		display: grid;
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
		gap: var(--hcg-space-8);
		align-items: start;
	}
	.woocommerce-checkout form.checkout #customer_details { grid-column: 1; grid-row: 1 / span 3; }
	.woocommerce-checkout form.checkout #order_review_heading,
	.woocommerce-checkout form.checkout #order_review { grid-column: 2; }
	.woocommerce-checkout form.checkout #order_review_heading { margin-top: 0; }
}

/* Compatível com Brazilian Market on WooCommerce (CPF/CNPJ) — os campos
   extras herdam o mesmo padrão de campo acima. */
#billing_cpf_field input, #billing_cnpj_field input,
#billing_birthdate_field input, #billing_cellphone_field input {
	width: 100%;
}

.woocommerce-checkout #payment {
	background: var(--hcg-surface-alt);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	padding: var(--hcg-space-4);
}
.woocommerce-checkout #payment ul.payment_methods {
	list-style: none;
	margin: 0;
	padding: 0 0 var(--hcg-space-3);
	border-bottom: 1px solid var(--hcg-line);
}
.woocommerce-checkout #payment ul.payment_methods li {
	padding: var(--hcg-space-2);
	border-radius: var(--hcg-radius-sm);
}
.woocommerce-checkout #payment ul.payment_methods li:has(input:checked) {
	background: var(--hcg-surface);
}
.woocommerce-checkout #payment ul.payment_methods label {
	font-weight: var(--hcg-weight-semibold);
	cursor: pointer;
}
.woocommerce-checkout #payment div.payment_box {
	background: var(--hcg-surface);
	border-radius: var(--hcg-radius-sm);
	color: var(--hcg-ink-soft);
	margin: var(--hcg-space-2) 0 0;
	padding: var(--hcg-space-3);
}
.woocommerce-checkout #payment div.payment_box p { margin: 0; }
.woocommerce-checkout #payment div.payment_box::before { display: none; }
.woocommerce #payment #place_order {
	width: 100%;
	min-height: var(--hcg-control-h-lg);
	font-size: var(--hcg-text-md);
	margin-top: var(--hcg-space-3);
}

/* ---------- Carrinho e checkout em blocos WooCommerce ---------- */

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
	width: 100%;
	max-width: 100% !important;
	margin-inline: auto;
}

.woocommerce-cart .hcg-content--page .wp-block-woocommerce-cart.alignwide,
.woocommerce-checkout .hcg-content--page .wp-block-woocommerce-checkout.alignwide {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.wc-block-components-sidebar-layout {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
	gap: var(--hcg-space-8);
	align-items: flex-start;
	width: 100% !important;
	max-width: 100% !important;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
	width: 100% !important;
	max-width: none !important;
	flex: none !important;
	padding-right: 0 !important;
}

.wc-block-components-sidebar-layout .wc-block-components-sidebar {
	width: 100% !important;
	max-width: none !important;
	flex: none !important;
	padding: var(--hcg-card-pad) !important;
}

.wc-block-components-main,
.wc-block-components-sidebar,
.wc-block-checkout__form,
.wc-block-cart-items,
.wc-block-components-checkout-step,
.wc-block-components-order-summary,
.wp-block-woocommerce-cart-order-summary-block {
	min-width: 0;
}

.wc-block-cart-items,
.wc-block-components-sidebar,
.wc-block-components-checkout-step,
.wc-block-components-order-summary,
.wp-block-woocommerce-cart-order-summary-block {
	background: var(--hcg-surface);
	border: 0;
	border-radius: var(--hcg-radius-md);
	overflow: hidden;
	box-shadow: 0 16px 38px -32px rgba(42, 30, 36, 0.38);
}

.wc-block-components-checkout-step,
.wc-block-components-checkout-step.wc-block-components-checkout-step,
.wc-block-components-order-summary,
.wp-block-woocommerce-cart-order-summary-block {
	padding: var(--hcg-card-pad);
}

.woocommerce-checkout .wc-block-components-checkout-step.wc-block-components-checkout-step {
	background: var(--hcg-surface) !important;
	border: 0 !important;
	border-radius: var(--hcg-radius-md) !important;
	padding: var(--hcg-card-pad) !important;
	box-shadow: 0 16px 38px -32px rgba(42, 30, 36, 0.38);
}

.woocommerce-checkout .wc-block-checkout__order-notes.wc-block-components-checkout-step,
.woocommerce-checkout .wc-block-checkout__terms.wc-block-components-checkout-step,
.woocommerce-checkout .wc-block-checkout__actions.wc-block-components-checkout-step {
	background: transparent !important;
	border: 0 !important;
	padding: 0 !important;
	border-radius: 0 !important;
}

.wc-block-components-checkout-step__heading {
	align-items: center;
	gap: var(--hcg-space-3);
	margin-bottom: var(--hcg-space-4);
}

.wc-block-components-checkout-step + .wc-block-components-checkout-step,
.wc-block-checkout__order-notes,
.wc-block-checkout__terms,
.wc-block-checkout__actions {
	margin-top: var(--hcg-space-5);
}

.wc-block-cart-items__header th,
.wc-block-cart__totals-title,
.wc-block-components-title {
	background: var(--hcg-surface-alt);
	color: var(--hcg-ink);
	font-family: var(--hcg-font-display);
	font-size: var(--hcg-text-sm);
	font-weight: var(--hcg-weight-bold);
	letter-spacing: 0;
	text-transform: none;
}

.wc-block-cart__totals-title {
	margin: calc(var(--hcg-card-pad) * -1) calc(var(--hcg-card-pad) * -1) var(--hcg-space-3);
	padding: var(--hcg-space-4) var(--hcg-card-pad);
	border-bottom: 1px solid var(--hcg-line);
}

.wc-block-cart-items__row td {
	border-top: 1px solid rgba(234, 223, 227, 0.72) !important;
	vertical-align: middle;
}
.wc-block-cart-items__row:first-child td {
	border-top: 0 !important;
}

.wc-block-cart-item__image img {
	width: 72px;
	height: 72px;
	object-fit: contain;
	border: 1px solid var(--hcg-line);
	border-radius: var(--hcg-radius-sm);
	background: var(--hcg-surface-alt);
}

.wc-block-cart-item__wrap a,
.wc-block-components-product-name {
	color: var(--hcg-ink);
	font-size: var(--hcg-text-base);
	font-weight: var(--hcg-weight-black);
	line-height: var(--hcg-leading-snug);
}

.woocommerce-cart .wc-block-cart-item__wrap a,
.woocommerce-cart .wc-block-components-product-name,
.woocommerce-cart .wc-block-components-product-name a {
	color: var(--hcg-ink) !important;
	font-size: var(--hcg-text-md) !important;
	font-weight: var(--hcg-weight-black) !important;
	line-height: var(--hcg-leading-snug) !important;
}

.wc-block-cart-item__wrap .wc-block-components-product-name {
	margin-bottom: var(--hcg-space-1);
}

.wc-block-components-product-metadata,
.wc-block-components-product-price,
.wc-block-cart-item__prices {
	color: var(--hcg-ink-soft);
	font-size: var(--hcg-text-xs);
	line-height: var(--hcg-leading-snug);
}

.wc-block-cart-item__total .wc-block-components-product-price,
.wc-block-components-order-summary-item__total-price {
	color: var(--hcg-ink);
	font-size: var(--hcg-text-sm);
	font-weight: var(--hcg-weight-black);
}

.wc-block-components-quantity-selector {
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-pill);
	overflow: hidden;
}

.wc-block-components-quantity-selector input {
	min-height: 42px;
	font-weight: var(--hcg-weight-bold);
}

.wc-block-components-button,
.wc-block-components-button:not(.is-link) {
	min-height: var(--hcg-control-h-lg);
	border-radius: var(--hcg-radius-pill);
	background: var(--hcg-brand);
	color: var(--hcg-neutral-0);
	font-weight: var(--hcg-weight-bold);
	box-shadow: none;
	transition: transform var(--hcg-ease-fast), box-shadow var(--hcg-ease-fast), background var(--hcg-ease-fast);
}

.wc-block-components-button .wc-block-components-button__text {
	color: inherit;
	font-weight: inherit;
	line-height: var(--hcg-leading-snug);
}

.wc-block-cart__submit {
	min-height: var(--hcg-control-h-lg);
	margin-top: var(--hcg-space-4);
}

.wc-block-cart__submit .wc-block-cart__submit-container,
.wc-block-cart__submit .wc-block-cart__submit-container--sticky {
	position: static !important;
	display: block !important;
	width: 100% !important;
	min-height: var(--hcg-control-h-lg);
	background: transparent !important;
	padding: 0 !important;
	box-shadow: none !important;
}

.wc-block-cart__submit .wc-block-cart__submit-button {
	position: static !important;
	display: inline-flex !important;
	width: 100% !important;
	height: auto !important;
	min-height: var(--hcg-control-h-lg) !important;
	padding: var(--hcg-space-2) var(--hcg-btn-pad-x) !important;
}

.wc-block-components-button:hover,
.wc-block-components-button:not(.is-link):hover {
	background: var(--hcg-brand-hover);
	color: var(--hcg-neutral-0);
	transform: translateY(-1px);
	box-shadow: var(--hcg-shadow-brand);
}

.woocommerce-checkout .wc-block-checkout__main {
	counter-reset: hcg-checkout-step;
}

.woocommerce-checkout .wc-block-components-checkout-step {
	position: relative;
	padding-left: var(--hcg-card-pad) !important;
}

.woocommerce-checkout .wc-block-components-checkout-step::before {
	content: none !important;
	display: none !important;
}

.woocommerce-checkout .wc-block-components-checkout-step__title {
	background: transparent !important;
	color: var(--hcg-ink);
	font-size: var(--hcg-text-lg);
	font-weight: var(--hcg-weight-black);
	padding: 0 !important;
	margin: 0 !important;
	box-shadow: none !important;
}

.woocommerce-checkout .wc-block-components-checkout-step__heading,
.woocommerce-checkout .wc-block-components-checkout-step__heading-content,
.woocommerce-checkout .wc-block-components-checkout-step__container,
.woocommerce-checkout .wc-block-components-title {
	background: transparent !important;
	box-shadow: none !important;
}

.woocommerce-checkout .wc-block-checkout__order-notes.wc-block-components-checkout-step::before,
.woocommerce-checkout .wc-block-checkout__terms.wc-block-components-checkout-step::before,
.woocommerce-checkout .wc-block-checkout__actions.wc-block-components-checkout-step::before {
	display: none;
}

.woocommerce-checkout .wc-block-components-order-summary-item__description {
	min-width: 0;
}

.woocommerce-checkout .wc-block-components-order-summary-item__description .wc-block-components-product-name {
	font-size: var(--hcg-text-sm);
}

.woocommerce-checkout .wc-block-components-order-summary-item__individual-prices,
.woocommerce-checkout .wc-block-components-order-summary-item__description .wc-block-components-product-metadata {
	display: none !important;
}

.hcg-checkout-progress {
	display: grid;
	grid-template-columns: repeat(var(--hcg-checkout-count, 3), minmax(0, 1fr));
	gap: var(--hcg-space-2);
	margin-bottom: var(--hcg-space-5);
}

.hcg-checkout-progress__item {
	display: flex;
	align-items: center;
	gap: var(--hcg-space-2);
	min-height: 44px;
	border: 0;
	border-radius: var(--hcg-radius-pill);
	padding: var(--hcg-space-2) var(--hcg-space-3);
	background: var(--hcg-surface-alt);
	color: var(--hcg-ink-soft);
	font-size: var(--hcg-text-xs);
	font-weight: var(--hcg-weight-bold);
	text-align: left;
	cursor: pointer;
	transition: background var(--hcg-ease-fast), color var(--hcg-ease-fast), transform var(--hcg-ease-fast), box-shadow var(--hcg-ease-fast);
}

.hcg-checkout-progress__item:hover {
	background: var(--hcg-brand-soft);
	color: var(--hcg-brand-hover);
	transform: translateY(-1px);
}

.hcg-checkout-progress__item:disabled,
.hcg-checkout-flow__next:disabled {
	cursor: not-allowed;
	opacity: 0.55;
	transform: none;
	box-shadow: none;
}

.hcg-checkout-progress__item:disabled:hover,
.hcg-checkout-flow__next:disabled:hover {
	background: var(--hcg-surface-alt);
	color: var(--hcg-ink-soft);
	transform: none;
}

.hcg-checkout-progress__num {
	display: grid;
	place-items: center;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border-radius: var(--hcg-radius-round);
	background: var(--hcg-neutral-0);
	color: currentColor;
	font-size: 0.72rem;
	font-weight: var(--hcg-weight-black);
}

.hcg-checkout-progress__item.is-active {
	background: rgba(235, 54, 102, 0.12);
	color: var(--hcg-brand);
}

.hcg-checkout-progress__item.is-complete {
	background: rgba(0, 104, 138, 0.1);
	color: var(--hcg-blue);
}

.hcg-checkout-stage {
	display: none !important;
}

.hcg-checkout-stage.is-active {
	display: block !important;
}

.hcg-checkout-flow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--hcg-space-3);
	margin-top: var(--hcg-space-5);
}

.hcg-checkout-flow__back,
.hcg-checkout-flow__next {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border-radius: var(--hcg-radius-pill);
	padding: var(--hcg-space-2) var(--hcg-btn-pad-x);
	font-weight: var(--hcg-weight-bold);
	cursor: pointer;
	transition: background var(--hcg-ease-fast), border-color var(--hcg-ease-fast), color var(--hcg-ease-fast), transform var(--hcg-ease-fast), box-shadow var(--hcg-ease-fast);
}

.hcg-checkout-flow__back {
	border: var(--hcg-border-w) solid var(--hcg-line);
	background: var(--hcg-surface);
	color: var(--hcg-ink);
}

.hcg-checkout-flow__next {
	border: 0;
	background: var(--hcg-brand);
	color: var(--hcg-neutral-0);
	box-shadow: var(--hcg-shadow-brand);
}

.hcg-checkout-flow__next:disabled,
.hcg-checkout-flow__next:disabled:hover {
	background: var(--hcg-brand);
	color: var(--hcg-neutral-0);
}

.woocommerce-checkout .wc-block-checkout__main:has(.hcg-checkout-stage.is-active :is(input, select, textarea):required:invalid) .hcg-checkout-flow__next,
.woocommerce-checkout .wc-block-checkout__main:has(.hcg-checkout-stage.is-active :is(input, select, textarea):required:invalid) .hcg-checkout-progress__item:not(.is-active):not(.is-complete) {
	pointer-events: none;
	cursor: not-allowed;
	opacity: 0.55;
	transform: none;
	box-shadow: none;
}

.hcg-checkout-flow__back:hover,
.hcg-checkout-flow__back:focus-visible {
	border-color: var(--hcg-brand);
	background: var(--hcg-brand-soft);
	color: var(--hcg-brand-hover);
	transform: translateY(-1px);
}

.hcg-checkout-flow__next:hover,
.hcg-checkout-flow__next:focus-visible {
	background: var(--hcg-brand-hover);
	color: var(--hcg-neutral-0);
	transform: translateY(-1px);
	box-shadow: 0 18px 38px -20px rgba(229, 60, 97, 0.72);
}

.hcg-checkout-flow__back:focus-visible,
.hcg-checkout-flow__next:focus-visible,
.hcg-checkout-progress__item:focus-visible {
	outline: none;
	box-shadow: var(--hcg-focus-ring);
}

.hcg-checkout-error {
	margin: calc(var(--hcg-space-2) * -1) 0 var(--hcg-space-4);
	border-radius: var(--hcg-radius-sm);
	background: var(--hcg-danger-soft);
	color: var(--hcg-danger);
	font-size: var(--hcg-text-xs);
	font-weight: var(--hcg-weight-bold);
	line-height: var(--hcg-leading-snug);
	padding: var(--hcg-space-2) var(--hcg-space-3);
}

.hcg-field-invalid {
	border-color: var(--hcg-danger) !important;
	box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12) !important;
}

.wc-block-components-text-input input,
.wc-blocks-components-select select,
.wc-block-components-address-form input,
.wc-block-components-address-form select {
	min-height: var(--hcg-control-h);
	border: var(--hcg-border-w) solid var(--hcg-line) !important;
	border-radius: var(--hcg-radius-sm) !important;
	background: var(--hcg-surface);
	color: var(--hcg-ink);
	font-family: var(--hcg-font-body);
}

.wc-block-components-text-input input:focus,
.wc-blocks-components-select select:focus {
	border-color: var(--hcg-brand) !important;
	box-shadow: var(--hcg-focus-ring);
	outline: none;
}

.wc-block-components-notice-banner {
	border-radius: var(--hcg-radius-sm);
	border-color: var(--hcg-line);
	align-items: flex-start;
	gap: var(--hcg-space-3);
	padding: var(--hcg-space-4);
}

.wc-block-components-notice-banner.is-error {
	background: var(--hcg-danger-soft);
	border-color: var(--hcg-danger);
	color: var(--hcg-ink);
}

.wc-block-components-notice-banner__content {
	line-height: 1.45;
}

.wc-block-checkout__payment-method,
.wc-block-checkout__shipping-method,
.wc-block-components-radio-control,
.wc-block-components-checkbox {
	min-width: 0;
}

.wc-block-components-checkbox .wc-block-components-checkbox__label {
	line-height: 1.45;
}

/* Campos unificados: WooCommerce clássico, Woo Blocks, conta, checkout e filtros */
.hcg-main :is(
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="password"],
	input[type="number"],
	input[type="url"],
	input[type="date"],
	select,
	textarea
),
.woocommerce :is(
	input.input-text,
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="password"],
	input[type="number"],
	select,
	textarea
),
.woocommerce-page :is(
	input.input-text,
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="password"],
	input[type="number"],
	select,
	textarea
),
.wc-block-components-text-input input,
.wc-block-components-address-form input,
.wc-block-components-combobox input,
.wc-blocks-components-select select,
.wc-block-components-address-form select,
.hcg-elementor-shell :is(input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]), select, textarea),
.jet-smart-filters-wrap :is(input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]), select),
.jet-filter :is(input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]), select),
.select2-container .select2-selection--single {
	width: 100%;
	min-height: var(--hcg-control-h-lg) !important;
	border: var(--hcg-border-w) solid var(--hcg-line) !important;
	border-radius: var(--hcg-radius-sm) !important;
	background-color: var(--hcg-surface) !important;
	color: var(--hcg-ink) !important;
	font-family: var(--hcg-font-body) !important;
	font-size: var(--hcg-text-sm) !important;
	font-weight: var(--hcg-weight-semibold) !important;
	line-height: var(--hcg-leading-snug) !important;
	padding: var(--hcg-space-3) var(--hcg-input-pad-x) !important;
	box-shadow: none !important;
	transition: border-color var(--hcg-ease-fast), box-shadow var(--hcg-ease-fast), background-color var(--hcg-ease-fast);
}

.hcg-main textarea,
.woocommerce textarea,
.woocommerce-page textarea {
	min-height: 112px !important;
	resize: vertical;
}

.hcg-main select,
.woocommerce select,
.woocommerce-page select,
.wc-blocks-components-select select,
.wc-block-components-address-form select,
.jet-smart-filters-wrap select,
.jet-filter select {
	appearance: none;
	padding-right: var(--hcg-space-10) !important;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--hcg-ink-soft) 50%),
		linear-gradient(135deg, var(--hcg-ink-soft) 50%, transparent 50%);
	background-position:
		calc(100% - 20px) 50%,
		calc(100% - 14px) 50%;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.hcg-main :is(input, select, textarea)::placeholder,
.woocommerce :is(input, select, textarea)::placeholder,
.woocommerce-page :is(input, select, textarea)::placeholder,
.wc-block-components-text-input input::placeholder {
	color: var(--hcg-ink-soft);
	font-weight: var(--hcg-weight-medium);
	opacity: 0.75;
}

.hcg-main :is(input, select, textarea):focus,
.woocommerce :is(input, select, textarea):focus,
.woocommerce-page :is(input, select, textarea):focus,
.wc-block-components-text-input input:focus,
.wc-blocks-components-select select:focus,
.wc-block-components-address-form :is(input, select):focus,
.jet-smart-filters-wrap :is(input, select):focus,
.jet-filter :is(input, select):focus,
.select2-container--open .select2-selection--single {
	border-color: var(--hcg-brand) !important;
	box-shadow: var(--hcg-focus-ring) !important;
	outline: none !important;
}

.woocommerce form .form-row,
.woocommerce-page form .form-row,
.wc-block-components-address-form .wc-block-components-text-input,
.wc-block-components-text-input,
.wc-blocks-components-select,
.wc-block-components-combobox {
	margin-bottom: var(--hcg-space-4) !important;
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label,
.wc-block-components-text-input label,
.wc-blocks-components-select label,
.wc-block-components-checkbox label,
.wc-block-components-radio-control__option,
.hcg-elementor-shell label,
.jet-filter-label,
.jet-filter-label .jet-filter-label__text {
	color: var(--hcg-ink) !important;
	font-family: var(--hcg-font-body) !important;
	font-size: var(--hcg-text-sm) !important;
	font-weight: var(--hcg-weight-bold) !important;
	line-height: var(--hcg-leading-snug) !important;
	margin-bottom: var(--hcg-space-1);
}

.woocommerce .required,
.woocommerce-page .required,
.wc-block-components-text-input .required {
	color: var(--hcg-brand) !important;
	text-decoration: none;
}

.hcg-label-optional {
	color: var(--hcg-ink-soft);
	font-size: var(--hcg-text-xs);
	font-weight: var(--hcg-weight-semibold);
}

.woocommerce .form-row.woocommerce-invalid :is(input.input-text, select, textarea),
.woocommerce-page .form-row.woocommerce-invalid :is(input.input-text, select, textarea),
.hcg-field-invalid,
.wc-block-components-validation-error + :is(input, select, textarea) {
	border-color: var(--hcg-danger) !important;
	box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12) !important;
}

.woocommerce .form-row .woocommerce-error,
.woocommerce .form-row .woocommerce-input-wrapper + .woocommerce-error,
.wc-block-components-validation-error {
	color: var(--hcg-danger) !important;
	font-size: var(--hcg-text-xs) !important;
	font-weight: var(--hcg-weight-bold) !important;
	line-height: var(--hcg-leading-snug) !important;
	margin-top: var(--hcg-space-1) !important;
}

.hcg-field-note,
.woocommerce form .form-row .description,
.woocommerce-page form .form-row .description,
.wc-block-components-text-input .hcg-field-note,
.wc-blocks-components-select .hcg-field-note {
	display: block;
	margin: var(--hcg-space-1) 0 0 !important;
	color: var(--hcg-ink-soft);
	font-size: var(--hcg-text-xs);
	font-weight: var(--hcg-weight-medium);
	line-height: var(--hcg-leading-normal);
}

.hcg-checkout-guest-note {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--hcg-space-3);
	margin: 0 0 var(--hcg-space-4);
	padding: var(--hcg-space-3) var(--hcg-space-4);
	background: color-mix(in srgb, var(--hcg-institutional-blue) 8%, var(--hcg-surface));
	border: var(--hcg-border-w) solid color-mix(in srgb, var(--hcg-institutional-blue) 22%, var(--hcg-line));
	border-radius: var(--hcg-radius-sm);
	color: var(--hcg-ink);
	font-size: var(--hcg-text-sm);
	line-height: var(--hcg-leading-snug);
}

.hcg-checkout-guest-note strong {
	color: var(--hcg-institutional-blue);
	font-weight: var(--hcg-weight-bold);
}

.hcg-checkout-guest-note span {
	color: var(--hcg-ink-soft);
	font-weight: var(--hcg-weight-semibold);
}

.hcg-main :is(input[type="checkbox"], input[type="radio"]),
.woocommerce :is(input[type="checkbox"], input[type="radio"]),
.woocommerce-page :is(input[type="checkbox"], input[type="radio"]),
.wc-block-components-checkbox input[type="checkbox"],
.wc-block-components-radio-control input[type="radio"] {
	width: 18px !important;
	height: 18px !important;
	min-height: 18px !important;
	margin: 0 var(--hcg-space-2) 0 0 !important;
	accent-color: var(--hcg-brand);
	border-radius: 4px;
	box-shadow: none !important;
}

.woocommerce-checkout .wc-block-components-radio-control__option,
.woocommerce-checkout .wc-block-components-shipping-rates-control__package .wc-block-components-radio-control__option,
.woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-radio-control__option {
	padding: var(--hcg-space-3) var(--hcg-space-4) !important;
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-sm);
	background: var(--hcg-surface);
	transition: border-color var(--hcg-ease-fast), box-shadow var(--hcg-ease-fast), background-color var(--hcg-ease-fast);
}

.woocommerce-checkout .wc-block-components-radio-control__option:hover {
	border-color: color-mix(in srgb, var(--hcg-brand) 38%, var(--hcg-line));
	box-shadow: var(--hcg-shadow-soft);
}

.woocommerce-checkout .wc-block-components-radio-control__option:has(input:checked) {
	background: var(--hcg-brand-soft);
	border-color: var(--hcg-brand);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--hcg-brand) 12%, transparent);
}

.woocommerce-checkout .wc-block-components-radio-control__label,
.woocommerce-checkout .wc-block-components-radio-control__description {
	line-height: var(--hcg-leading-snug);
}

.woocommerce .password-input,
.woocommerce-page .password-input {
	position: relative;
	display: block;
	width: 100%;
}

.woocommerce .password-input input,
.woocommerce-page .password-input input {
	padding-right: var(--hcg-space-12) !important;
}

.woocommerce .show-password-input,
.woocommerce-page .show-password-input {
	position: absolute;
	top: 50%;
	right: var(--hcg-space-3);
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	margin: 0;
	background: transparent !important;
	border: 0 !important;
	border-radius: var(--hcg-radius-round);
	box-shadow: none !important;
	cursor: pointer;
	opacity: 1;
	transform: translateY(-50%);
}

.woocommerce .show-password-input::after,
.woocommerce-page .show-password-input::after {
	content: "\f06e" !important;
	display: block;
	width: auto;
	height: auto;
	margin: 0;
	border: 0;
	color: var(--hcg-ink-soft);
	font-family: "Font Awesome 6 Free";
	font-size: var(--hcg-text-sm);
	font-weight: 900;
	line-height: 1;
	transition: color var(--hcg-ease-fast), transform var(--hcg-ease-fast);
}

.woocommerce .show-password-input:hover::after,
.woocommerce .show-password-input:focus-visible::after,
.woocommerce-page .show-password-input:hover::after,
.woocommerce-page .show-password-input:focus-visible::after {
	color: var(--hcg-brand);
	transform: scale(1.05);
}

.select2-container .select2-selection--single .select2-selection__rendered {
	color: var(--hcg-ink) !important;
	line-height: calc(var(--hcg-control-h-lg) - 2px) !important;
	padding: 0 !important;
}

.select2-container .select2-selection--single .select2-selection__arrow {
	top: 50% !important;
	right: var(--hcg-space-3) !important;
	transform: translateY(-50%);
}

.hcg-header__search input[type="search"],
.hcg-newsletter__form input[type="email"] {
	border-radius: var(--hcg-radius-pill) !important;
}

@media (max-width: 820px) {
	.wc-block-components-sidebar-layout {
		display: grid !important;
		grid-template-columns: 1fr;
		gap: var(--hcg-space-5);
	}
	.wc-block-components-main,
	.wc-block-components-sidebar,
	.wc-block-checkout__form {
		width: 100% !important;
	}
	.wc-block-cart-items,
	.wc-block-cart-items tbody,
	.wc-block-cart-items tr,
	.wc-block-cart-items td {
		display: block;
		width: 100%;
	}
	.wc-block-cart-items__header { display: none !important; }
	.wc-block-cart-items__row {
		padding: var(--hcg-space-4);
		border-top: 1px solid var(--hcg-line);
	}
	.wc-block-cart-item__image,
		.wc-block-cart-item__product,
		.wc-block-cart-item__total {
			padding: 0 !important;
		}
		.wc-block-components-checkout-step,
		.wc-block-components-order-summary,
		.wp-block-woocommerce-cart-order-summary-block {
			padding: var(--hcg-space-4);
		}
		.wc-block-components-notice-banner {
			padding: var(--hcg-space-3);
		}
	}

	/* ---------- Minha conta ---------- */

	body:not(.logged-in).woocommerce-account .woocommerce {
		width: min(100%, 560px);
		margin: var(--hcg-space-6) 0 0;
		padding: clamp(var(--hcg-space-5), 4vw, var(--hcg-space-8));
		display: block;
		background:
			radial-gradient(circle at 92% 0%, rgba(237, 248, 251, 0.95), transparent 34%),
			var(--hcg-surface);
		border: var(--hcg-border-w) solid var(--hcg-line);
		border-radius: var(--hcg-radius-md);
		box-shadow: var(--hcg-shadow-lg);
	}

	body:not(.logged-in).woocommerce-account .woocommerce:has(.u-columns) {
		width: 100%;
		padding: 0;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	body:not(.logged-in).woocommerce-account .woocommerce > h2 {
		margin: 0 0 var(--hcg-space-6);
		color: var(--hcg-brand);
		font-size: clamp(1.75rem, 4vw, 2.35rem);
		line-height: var(--hcg-leading-tight);
		text-align: left;
	}

	body:not(.logged-in).woocommerce-account .woocommerce form.login,
	body:not(.logged-in).woocommerce-account .woocommerce form.register {
		margin: 0;
		padding: 0;
		border: 0;
		background: transparent;
	}

	body:not(.logged-in).woocommerce-account .woocommerce-form-row {
		margin-bottom: var(--hcg-space-4);
	}

	body:not(.logged-in).woocommerce-account .woocommerce form .form-row label {
		color: var(--hcg-ink);
		font-size: var(--hcg-text-sm);
		font-weight: var(--hcg-weight-bold);
	}

	body:not(.logged-in).woocommerce-account .woocommerce form .form-row input.input-text {
		min-height: var(--hcg-control-h-lg);
		border-radius: var(--hcg-radius-sm);
		background: var(--hcg-surface);
	}

	body:not(.logged-in).woocommerce-account .woocommerce .password-input {
		position: relative;
		display: block;
		width: 100%;
	}

	body:not(.logged-in).woocommerce-account .woocommerce .show-password-input {
		position: absolute;
		top: 50%;
		right: var(--hcg-space-3);
		width: 32px;
		height: 32px;
		margin: 0;
		display: grid;
		place-items: center;
		background: transparent !important;
		border: 0 !important;
		border-radius: var(--hcg-radius-round);
		box-shadow: none !important;
		cursor: pointer;
		opacity: 1;
		transform: translateY(-50%);
	}

	body:not(.logged-in).woocommerce-account .woocommerce .show-password-input::after {
		content: "\f06e" !important;
		display: block;
		width: auto;
		height: auto;
		margin: 0;
		border: 0;
		color: var(--hcg-ink-soft);
		font-family: "Font Awesome 6 Free";
		font-size: var(--hcg-text-sm);
		font-weight: 900;
		line-height: 1;
		transition: color var(--hcg-ease-fast), transform var(--hcg-ease-fast);
	}

	body:not(.logged-in).woocommerce-account .woocommerce .show-password-input:hover::after,
	body:not(.logged-in).woocommerce-account .woocommerce .show-password-input:focus-visible::after {
		color: var(--hcg-brand);
		transform: scale(1.05);
	}

	body:not(.logged-in).woocommerce-account .woocommerce-form-login__rememberme {
		display: inline-flex !important;
		align-items: center;
		gap: var(--hcg-space-2);
		margin: 0 0 var(--hcg-space-4);
		color: var(--hcg-ink);
		font-size: var(--hcg-text-sm);
		font-weight: var(--hcg-weight-semibold);
	}

	body:not(.logged-in).woocommerce-account .woocommerce-form__input-checkbox,
	body:not(.logged-in).woocommerce-account input[type="checkbox"] {
		width: 18px;
		height: 18px;
		accent-color: var(--hcg-brand);
	}

	body:not(.logged-in).woocommerce-account .woocommerce-form-login__submit {
		width: 100%;
		min-height: var(--hcg-control-h-lg);
		margin: 0;
		font-size: var(--hcg-text-base);
	}

	body:not(.logged-in).woocommerce-account .lost_password {
		margin: var(--hcg-space-4) 0 0;
		text-align: center;
	}

	body:not(.logged-in).woocommerce-account .lost_password a {
		color: var(--hcg-brand);
		font-size: var(--hcg-text-sm);
		font-weight: var(--hcg-weight-bold);
	}

	body:not(.logged-in).woocommerce-account .lost_password a:hover {
		color: var(--hcg-brand-hover);
	}

	body:not(.logged-in).woocommerce-account .u-columns {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--hcg-space-6);
		width: 100%;
	}

	body:not(.logged-in).woocommerce-account .u-column1,
	body:not(.logged-in).woocommerce-account .u-column2 {
		width: 100%;
		margin: 0;
		padding: clamp(var(--hcg-space-5), 4vw, var(--hcg-space-8));
		background: var(--hcg-surface);
		border: var(--hcg-border-w) solid var(--hcg-line);
		border-radius: var(--hcg-radius-md);
		box-shadow: var(--hcg-shadow-md);
	}

	body:not(.logged-in).woocommerce-account .u-column1 > h2,
	body:not(.logged-in).woocommerce-account .u-column2 > h2 {
		margin-top: 0;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		border: var(--hcg-border-w) solid var(--hcg-line);
		border-radius: var(--hcg-radius-md);
	overflow: hidden;
	background: var(--hcg-surface);
	box-shadow: var(--hcg-shadow-sm);
	list-style: none;
	margin: 0;
	padding: var(--hcg-space-2);
}
.woocommerce-account .woocommerce-MyAccount-navigation li { border-bottom: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation a {
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--hcg-space-2);
	padding: var(--hcg-space-3) var(--hcg-space-4);
	color: var(--hcg-ink);
	font-weight: var(--hcg-weight-semibold);
	font-size: var(--hcg-text-sm);
	border-radius: var(--hcg-radius-sm);
	transition: background var(--hcg-ease-fast), color var(--hcg-ease-fast), transform var(--hcg-ease-fast);
}
.woocommerce-account .woocommerce-MyAccount-navigation a::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--hcg-line);
	flex: 0 0 8px;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
	background: var(--hcg-brand-soft);
	color: var(--hcg-brand-hover);
	transform: translateX(2px);
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a::before,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover::before {
	background: var(--hcg-brand);
}
.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
	display: grid;
	gap: var(--hcg-space-6);
}
@media (min-width: 821px) {
	.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
		grid-template-columns: 260px minmax(0, 1fr);
		align-items: start;
	}
}
	.woocommerce-account .woocommerce-MyAccount-content {
		background: var(--hcg-surface);
		border: var(--hcg-border-w) solid var(--hcg-line);
		border-radius: var(--hcg-radius-md);
		padding: var(--hcg-space-6);
		box-shadow: var(--hcg-shadow-sm);
		min-width: 0;
	}
.woocommerce-account .woocommerce-MyAccount-content p:first-child { margin-top: 0; }
.woocommerce-account .woocommerce-MyAccount-content p:last-child { margin-bottom: 0; }
.woocommerce-account .woocommerce-MyAccount-content a { font-weight: var(--hcg-weight-semibold); }
.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	overflow: hidden;
}
	.woocommerce-account .woocommerce-MyAccount-content fieldset {
		border: var(--hcg-border-w) solid var(--hcg-line);
		border-radius: var(--hcg-radius-md);
		padding: var(--hcg-space-5);
		margin-top: var(--hcg-space-5);
	}

	@media (max-width: 820px) {
		body:not(.logged-in).woocommerce-account .woocommerce {
			width: 100%;
			margin-top: var(--hcg-space-6);
			padding: var(--hcg-space-5);
		}

		body:not(.logged-in).woocommerce-account .u-columns {
			grid-template-columns: 1fr;
		}

		.woocommerce-account .woocommerce-MyAccount-content {
			padding: var(--hcg-space-5);
		}
	}

	/* ---------- Conteúdo / páginas ---------- */

.hcg-content { padding-block: var(--hcg-space-8) var(--hcg-space-12); }
.hcg-content--page { max-width: min(var(--hcg-container-max), 100% - var(--hcg-container-gutter)); }

.hcg-page {
	max-width: 940px;
}

.hcg-page--wide {
	max-width: 100%;
	width: 100%;
}

.hcg-page-head { margin-bottom: var(--hcg-space-6); }
.hcg-page-head h1 { position: relative; padding-bottom: var(--hcg-space-2); }
.hcg-page-head h1::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 56px; height: 4px;
	border-radius: 4px;
	background: var(--hcg-brand);
}
.hcg-post-meta { color: var(--hcg-ink-soft); font-size: var(--hcg-text-xs); }

.hcg-page-lead {
	margin: 0 0 var(--hcg-space-8);
	padding: var(--hcg-space-5);
	border: var(--hcg-border-w) solid var(--hcg-brand-a14);
	border-left: 5px solid var(--hcg-brand);
	border-radius: var(--hcg-radius-md);
	background: linear-gradient(135deg, var(--hcg-brand-soft), var(--hcg-surface));
	color: var(--hcg-ink);
	font-size: var(--hcg-text-md);
	font-weight: var(--hcg-weight-semibold);
	line-height: var(--hcg-leading-base);
}

.hcg-page__body {
	color: var(--hcg-ink);
	max-width: 86ch;
}

.hcg-page--wide .hcg-page__body {
	max-width: 100%;
}

.hcg-page__body h2,
.hcg-page__body h3 {
	margin: var(--hcg-space-8) 0 var(--hcg-space-3);
	color: var(--hcg-brand-hover);
}

.hcg-page__body h2:first-child,
.hcg-page__body h3:first-child {
	margin-top: 0;
}

.hcg-page__body p {
	margin-bottom: var(--hcg-space-4);
}

.hcg-page__body ul,
.hcg-page__body ol {
	list-style: disc;
	padding-left: var(--hcg-space-5);
	margin: 0 0 var(--hcg-space-5);
}

.hcg-page__body li {
	margin-bottom: var(--hcg-space-2);
	padding-left: var(--hcg-space-1);
}

.hcg-page__body strong {
	color: var(--hcg-ink);
	font-weight: var(--hcg-weight-bold);
}

/* ---------- Página Quem Somos ---------- */

.hcg-about-page-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
	align-items: center;
	gap: clamp(var(--hcg-space-6), 6vw, var(--hcg-space-12));
	margin-bottom: var(--hcg-space-10);
}

.hcg-about-page__eyebrow {
	display: inline-flex;
	margin-bottom: var(--hcg-space-3);
	color: var(--hcg-institutional-blue);
	font-size: var(--hcg-text-2xs);
	font-weight: var(--hcg-weight-black);
	letter-spacing: var(--hcg-tracking-wide);
	text-transform: uppercase;
}

.hcg-about-page-hero h2 {
	color: var(--hcg-institutional-blue);
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: var(--hcg-leading-tight);
	margin-top: 0;
}

.hcg-about-page-hero__media {
	position: relative;
	margin: 0;
	border-radius: var(--hcg-radius-md);
	overflow: hidden;
	background:
		radial-gradient(circle at 72% 12%, var(--hcg-white-a92), transparent 28%),
		linear-gradient(145deg, var(--hcg-brand-a14), var(--hcg-blue-50));
	box-shadow: 0 26px 70px -44px rgba(42, 30, 36, 0.52);
}

.hcg-about-page-hero__media::before {
	content: "";
	display: block;
	aspect-ratio: 1;
}

.hcg-about-page-hero__media img {
	position: absolute;
	inset: 8%;
	width: 84%;
	height: 84%;
	object-fit: contain;
	filter: drop-shadow(0 24px 30px rgba(42, 30, 36, 0.18));
}

.hcg-about-page-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--hcg-space-3);
	margin-bottom: var(--hcg-space-10);
}

.hcg-about-page-stats div {
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	background: var(--hcg-surface);
	padding: var(--hcg-space-4);
}

.hcg-about-page-stats strong {
	display: block;
	color: var(--hcg-brand);
	font-family: var(--hcg-font-display);
	font-size: var(--hcg-text-2xl);
	line-height: 1;
}

.hcg-about-page-stats span {
	color: var(--hcg-ink-soft);
	font-size: var(--hcg-text-xs);
	font-weight: var(--hcg-weight-bold);
}

.hcg-about-page-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--hcg-space-6);
	margin-bottom: var(--hcg-space-10);
}

.hcg-about-page-grid > div,
.hcg-about-page-lines {
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	background: var(--hcg-surface);
	padding: var(--hcg-card-pad);
}

.hcg-about-page-lines__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--hcg-space-4);
	margin-top: var(--hcg-space-4);
}

.hcg-about-page-lines article {
	border-radius: var(--hcg-radius-sm);
	background: var(--hcg-surface-alt);
	padding: var(--hcg-space-4);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.hcg-about-page-lines img {
	width: 160px;
	max-width: 100%;
	height: 60px;
	object-fit: contain;
	object-position: left center;
	margin-bottom: var(--hcg-space-3);
}

.hcg-about-page-lines h4 {
	margin: 0 0 var(--hcg-space-2);
	color: var(--hcg-ink);
	font-family: var(--hcg-font-display);
	font-size: var(--hcg-text-md);
}

.hcg-about-page-lines__social {
	margin-top: auto;
	color: var(--hcg-brand);
	font-size: var(--hcg-text-xs);
	font-weight: var(--hcg-weight-bold);
}

.hcg-about-page-lines__social:hover {
	color: var(--hcg-brand-hover);
}

.hcg-posts {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--hcg-space-6);
}
.hcg-post-card {
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	padding: var(--hcg-card-pad);
	display: flex;
	flex-direction: column;
	gap: var(--hcg-space-2);
}
.hcg-post-card__title { font-size: var(--hcg-text-lg); margin: 0; }
.hcg-post-card__title a { color: var(--hcg-ink); }

.hcg-empty { text-align: center; padding-block: var(--hcg-space-16); }
.hcg-empty__code {
	font-family: var(--hcg-font-display);
	font-size: 5rem;
	font-weight: var(--hcg-weight-black);
	color: var(--hcg-brand-soft);
	-webkit-text-stroke: 2px var(--hcg-brand);
	margin: 0;
	line-height: 1;
}
.hcg-empty__actions { display: flex; gap: var(--hcg-space-3); justify-content: center; margin-top: var(--hcg-space-6); flex-wrap: wrap; }

/* ---------- Elementor: páginas editáveis sem quebrar o tema ---------- */

.hcg-elementor-shell {
	width: 100%;
	background: var(--hcg-surface);
}

.hcg-elementor-shell .elementor-section.elementor-section-boxed > .elementor-container,
.hcg-elementor-shell .e-con.e-con-boxed > .e-con-inner {
	max-width: var(--hcg-container-max);
}

.hcg-elementor-shell .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6),
.hcg-elementor-shell :is(h1, h2, h3, h4, h5, h6) {
	font-family: var(--hcg-font-display);
	color: var(--hcg-ink);
	letter-spacing: 0;
}

.hcg-elementor-shell .elementor-widget-text-editor,
.hcg-elementor-shell .elementor-widget-text-editor p {
	font-family: var(--hcg-font-body);
	color: var(--hcg-ink-soft);
	line-height: var(--hcg-leading-base);
}

.hcg-elementor-shell .elementor-button,
.hcg-elementor-shell .elementor-widget-button .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--hcg-control-h);
	padding: var(--hcg-space-2) var(--hcg-btn-pad-x);
	border-radius: var(--hcg-radius-pill);
	background: var(--hcg-brand);
	color: var(--hcg-neutral-0);
	font-family: var(--hcg-font-body);
	font-size: var(--hcg-text-sm);
	font-weight: var(--hcg-weight-bold);
	line-height: var(--hcg-leading-snug);
	box-shadow: none;
	transition: transform var(--hcg-ease-fast), box-shadow var(--hcg-ease-fast), background var(--hcg-ease-fast);
}

.hcg-elementor-shell .elementor-button:hover,
.hcg-elementor-shell .elementor-widget-button .elementor-button:hover {
	background: var(--hcg-brand-hover);
	color: var(--hcg-neutral-0);
	transform: translateY(-1px);
	box-shadow: var(--hcg-shadow-brand);
}

.hcg-elementor-shell .elementor-widget-image img {
	border-radius: var(--hcg-radius-md);
}

.hcg-elementor-shell .elementor-widget-divider .elementor-divider-separator {
	border-color: var(--hcg-line);
}

.hcg-elementor-shell :is(input, select, textarea) {
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	color: var(--hcg-ink);
	font-family: var(--hcg-font-body);
}

/* ---------- Crocoblock / Jet plugins ---------- */

.jet-smart-filters-wrap,
.jet-filter,
.jet-checkboxes-list,
.jet-radio-list,
.jet-range,
.jet-select {
	font-family: var(--hcg-font-body);
	color: var(--hcg-ink);
}

.jet-smart-filters-wrap :is(input, select),
.jet-filter :is(input, select),
.jet-range :is(input, select) {
	min-height: var(--hcg-control-h);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-pill);
	background: var(--hcg-surface);
	color: var(--hcg-ink);
}

.jet-smart-filters-wrap :is(button, .jet-filters-pagination__item),
.jet-remove-all-filters__button {
	border-radius: var(--hcg-radius-pill);
	background: var(--hcg-brand);
	color: var(--hcg-neutral-0);
	font-weight: var(--hcg-weight-bold);
}

.jet-checkboxes-list__item,
.jet-radio-list__item {
	margin-bottom: var(--hcg-space-2);
}

.jet-checkboxes-list__label,
.jet-radio-list__label {
	color: var(--hcg-ink);
	font-size: var(--hcg-text-sm);
}

.jet-woo-builder .woocommerce-MyAccount-navigation ul,
.jet-woo-builder .woocommerce-MyAccount-content,
.jet-woo-builder .woocommerce-product-gallery,
.jet-product-gallery {
	border-radius: var(--hcg-radius-md);
}

.jet-product-gallery :is(img, .jet-woo-product-gallery__image) {
	border-radius: var(--hcg-radius-md);
	background: var(--hcg-surface);
}

/* ---------- Newsletter ---------- */

.hcg-newsletter {
	background: var(--hcg-surface-dark);
	color: var(--hcg-on-dark);
}
.hcg-newsletter__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--hcg-space-8);
	flex-wrap: wrap;
	padding-block: var(--hcg-space-10);
}
.hcg-newsletter h2 { color: var(--hcg-neutral-0); margin: 0 0 var(--hcg-space-1); }
.hcg-newsletter p { margin: 0; opacity: 0.8; }

.hcg-newsletter__form { display: flex; gap: var(--hcg-space-2); flex-wrap: wrap; }
.hcg-newsletter__form input[type="email"] {
	min-width: 260px;
	border-radius: var(--hcg-radius-pill);
	border: var(--hcg-border-w) solid rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.08);
	color: var(--hcg-neutral-0);
	padding: var(--hcg-space-2) var(--hcg-space-5);
}
.hcg-newsletter__form input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.55); }

.hcg-newsletter__thanks {
	background: rgba(30, 158, 106, 0.18);
	border: var(--hcg-border-w) solid var(--hcg-success);
	border-radius: var(--hcg-radius-pill);
	padding: var(--hcg-space-3) var(--hcg-space-6);
	font-weight: var(--hcg-weight-semibold);
	color: var(--hcg-success-on-dark);
}

/* ---------- Rodapé ---------- */

.hcg-footer { background: var(--hcg-surface-dark); color: var(--hcg-on-dark-soft); font-size: var(--hcg-text-sm); }

.hcg-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: var(--hcg-space-8);
	padding-block: var(--hcg-space-12) var(--hcg-space-8);
}

.hcg-footer h3 {
	color: var(--hcg-neutral-0);
	font-size: var(--hcg-text-sm);
	text-transform: uppercase;
	letter-spacing: var(--hcg-tracking-wide);
	margin-bottom: var(--hcg-space-3);
}

.hcg-footer .hcg-logotype { color: var(--hcg-neutral-0); }
.hcg-footer .hcg-logotype span { color: var(--hcg-on-dark-soft); }
.hcg-footer .hcg-logo {
	width: 190px;
	padding: var(--hcg-space-2);
	border-radius: var(--hcg-radius-sm);
	background: var(--hcg-neutral-0);
}
.hcg-footer__brand p { max-width: 34ch; }

.hcg-footer__menu li, .hcg-footer__contact li { padding-block: var(--hcg-space-1); }
.hcg-footer a { color: var(--hcg-on-dark-soft); }
.hcg-footer a:hover { color: var(--hcg-neutral-0); }

.hcg-social { display: flex; gap: var(--hcg-space-2); flex-wrap: wrap; margin-top: var(--hcg-space-3); }
.hcg-social a {
	border: var(--hcg-border-w) solid rgba(255, 255, 255, 0.2);
	border-radius: var(--hcg-radius-pill);
	padding: var(--hcg-space-1) var(--hcg-space-2);
	font-size: var(--hcg-text-xs);
	font-weight: var(--hcg-weight-semibold);
	white-space: nowrap;
}
.hcg-social a:hover { border-color: var(--hcg-brand); color: var(--hcg-neutral-0); background: rgba(229, 60, 97, 0.18); }

.hcg-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: var(--hcg-text-xs);
}
.hcg-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	gap: var(--hcg-space-4);
	flex-wrap: wrap;
	padding-block: var(--hcg-space-4);
}
.hcg-footer__bottom p { margin: 0; opacity: 0.75; }

/* ---------- WhatsApp flutuante ---------- */

.hcg-whatsapp-float {
	position: fixed;
	right: var(--hcg-space-5);
	bottom: var(--hcg-space-5);
	z-index: var(--hcg-z-float);
	width: 56px; height: 56px;
	border-radius: var(--hcg-radius-round);
	background: var(--hcg-whatsapp);
	color: var(--hcg-neutral-0);
	display: grid;
	place-items: center;
	box-shadow: var(--hcg-shadow-whatsapp);
	transition: transform var(--hcg-ease-fast);
}
.hcg-whatsapp-float:hover { transform: scale(1.08); color: var(--hcg-neutral-0); }

/* ---------- Cart drawer ---------- */

.hcg-cart-drawer {
	position: fixed;
	inset: 0;
	z-index: var(--hcg-z-drawer);
	pointer-events: none;
	visibility: hidden;
}
.hcg-cart-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(42, 30, 36, 0.42);
	opacity: 0;
	transition: opacity var(--hcg-ease);
}
.hcg-cart-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: min(430px, 100%);
	height: 100%;
	background: var(--hcg-surface);
	box-shadow: var(--hcg-shadow-lg);
	transform: translateX(104%);
	transition: transform var(--hcg-ease-slow);
	outline: none;
}
body.has-cart-drawer-open {
	overflow: hidden;
}
body.has-cart-drawer-open .hcg-cart-drawer {
	pointer-events: auto;
	visibility: visible;
}
body.has-cart-drawer-open .hcg-cart-drawer__backdrop { opacity: 1; }
body.has-cart-drawer-open .hcg-cart-drawer__panel { transform: translateX(0); }

.hcg-cart-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--hcg-space-4);
	padding: var(--hcg-space-5);
	border-bottom: 1px solid var(--hcg-line);
}
.hcg-cart-drawer__eyebrow {
	color: var(--hcg-brand);
	font-size: var(--hcg-text-2xs);
	font-weight: var(--hcg-weight-black);
	letter-spacing: var(--hcg-tracking-wide);
	text-transform: uppercase;
}
.hcg-cart-drawer__head h2 {
	font-size: var(--hcg-text-xl);
	margin: 0;
}
.hcg-cart-drawer__close {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--hcg-line);
	border-radius: var(--hcg-radius-round);
	background: var(--hcg-surface-alt);
	color: var(--hcg-ink);
	cursor: pointer;
	transition: background var(--hcg-ease-fast), color var(--hcg-ease-fast), transform var(--hcg-ease-fast);
}
.hcg-cart-drawer__close:hover {
	background: var(--hcg-brand);
	color: var(--hcg-neutral-0);
	transform: rotate(4deg);
}
.hcg-cart-drawer__close svg { width: 20px; height: 20px; }
.hcg-cart-drawer__body {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	padding: var(--hcg-space-5);
}
.hcg-cart-drawer__items .woocommerce-mini-cart {
	display: flex;
	flex-direction: column;
	gap: var(--hcg-space-3);
}
.hcg-cart-drawer__items .woocommerce-mini-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: var(--hcg-space-3);
	align-items: center;
	padding: var(--hcg-space-3);
	border: 1px solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	background: var(--hcg-surface-alt);
}
.hcg-cart-drawer__items .woocommerce-mini-cart-item a:not(.remove) {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: var(--hcg-space-3);
	align-items: center;
	grid-column: 1 / -1;
	padding-right: var(--hcg-space-6);
	color: var(--hcg-ink);
	font-weight: var(--hcg-weight-bold);
	line-height: var(--hcg-leading-snug);
}
.hcg-cart-drawer__items .woocommerce-mini-cart-item img {
	width: 74px;
	height: 74px;
	object-fit: cover;
	border-radius: var(--hcg-radius-sm);
	border: 1px solid var(--hcg-line);
	background: var(--hcg-surface);
}
.hcg-cart-drawer__items .woocommerce-mini-cart-item .quantity {
	grid-column: 2;
	color: var(--hcg-ink-soft);
	font-size: var(--hcg-text-sm);
}
.hcg-cart-drawer__items a.remove {
	position: absolute;
	top: var(--hcg-space-2);
	right: var(--hcg-space-2);
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border: 1px solid var(--hcg-line);
	border-radius: var(--hcg-radius-round);
	color: var(--hcg-ink-soft) !important;
	background: var(--hcg-surface);
	line-height: 1;
}
.hcg-cart-drawer__items a.remove:hover {
	background: var(--hcg-brand) !important;
	border-color: var(--hcg-brand);
	color: var(--hcg-neutral-0) !important;
}
.hcg-cart-drawer__items .woocommerce-mini-cart__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: var(--hcg-space-5) 0 var(--hcg-space-3);
	padding-top: var(--hcg-space-4);
	border-top: 1px solid var(--hcg-line);
	font-size: var(--hcg-text-md);
}
.hcg-cart-drawer__items .woocommerce-mini-cart__buttons {
	display: grid;
	gap: var(--hcg-space-3);
	margin: 0;
}
.woocommerce .hcg-cart-drawer__items .woocommerce-mini-cart__buttons .button,
.hcg-cart-drawer__items .woocommerce-mini-cart__buttons .button,
.hcg-cart-drawer__items .woocommerce-mini-cart__buttons a.button.wc-forward {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: var(--hcg-control-h-lg);
	margin: 0;
	padding: var(--hcg-space-2) var(--hcg-btn-pad-x);
	border: var(--hcg-border-w) solid var(--hcg-brand);
	border-radius: var(--hcg-radius-pill);
	font-family: var(--hcg-font-body);
	font-size: var(--hcg-text-sm);
	font-weight: var(--hcg-weight-bold);
	line-height: var(--hcg-leading-snug);
	text-align: center;
}
.woocommerce .hcg-cart-drawer__items .woocommerce-mini-cart__buttons .button:first-child,
.hcg-cart-drawer__items .woocommerce-mini-cart__buttons .button:first-child {
	background: transparent;
	color: var(--hcg-brand) !important;
	border-color: var(--hcg-brand);
	box-shadow: none;
}
.woocommerce .hcg-cart-drawer__items .woocommerce-mini-cart__buttons .button:first-child:hover,
.hcg-cart-drawer__items .woocommerce-mini-cart__buttons .button:first-child:hover {
	background: var(--hcg-brand-soft);
	color: var(--hcg-brand-hover) !important;
	transform: none;
}
.woocommerce .hcg-cart-drawer__items .woocommerce-mini-cart__buttons .checkout,
.hcg-cart-drawer__items .woocommerce-mini-cart__buttons .checkout {
	background: var(--hcg-brand);
	color: var(--hcg-neutral-0) !important;
	border-color: var(--hcg-brand);
	min-height: var(--hcg-control-h-lg);
	font-size: var(--hcg-text-md);
}
.woocommerce .hcg-cart-drawer__items .woocommerce-mini-cart__buttons .checkout:hover,
.hcg-cart-drawer__items .woocommerce-mini-cart__buttons .checkout:hover {
	background: var(--hcg-brand-hover);
	border-color: var(--hcg-brand-hover);
	color: var(--hcg-neutral-0) !important;
	transform: translateY(-1px);
	box-shadow: var(--hcg-shadow-brand);
}
.hcg-cart-drawer__empty {
	display: grid;
	place-items: center;
	align-content: center;
	min-height: 70%;
	text-align: center;
	gap: var(--hcg-space-3);
}
.hcg-cart-drawer__empty-icon {
	display: grid;
	place-items: center;
	width: 76px;
	aspect-ratio: 1;
	border-radius: 24px;
	background: var(--hcg-brand-soft);
	color: var(--hcg-brand);
}
.hcg-cart-drawer__empty-icon svg { width: 30px; height: 30px; }
.hcg-cart-drawer__empty h2 {
	margin: 0;
	font-size: var(--hcg-text-xl);
}
.hcg-cart-drawer__empty p {
	max-width: 28ch;
	margin: 0;
	color: var(--hcg-ink-soft);
}

/* =========================================================================
   CRO — componentes de conversão (pesquisa Baymard / líderes de mercado)
   ========================================================================= */

/* ---------- Hierarquia de preço: Pix dominante ---------- */

.hcg-price-pix {
	margin: 0;
	font-family: var(--hcg-font-display);
	font-weight: var(--hcg-weight-black);
	color: var(--hcg-success-dark);
	font-size: var(--hcg-text-md);
	line-height: var(--hcg-leading-snug);
	display: flex;
	align-items: baseline;
	gap: var(--hcg-space-2);
	flex-wrap: wrap;
}
.hcg-price-pix .woocommerce-Price-amount { font-size: 1.25em; }
.hcg-price-pix > span { font-size: var(--hcg-text-sm); font-weight: var(--hcg-weight-semibold); }
.hcg-price-pix em {
	font-style: normal;
	font-family: var(--hcg-font-body);
	font-size: var(--hcg-text-2xs);
	font-weight: var(--hcg-weight-bold);
	background: var(--hcg-success-soft);
	color: var(--hcg-success-dark);
	border-radius: var(--hcg-radius-pill);
	padding: 0.15em 0.6em;
}

/* Na PDP: "de/por" vira referência; Pix é o herói */
.woocommerce div.product p.price { font-size: var(--hcg-text-md); margin-bottom: var(--hcg-space-1); }
.woocommerce div.product p.price ins .woocommerce-Price-amount,
.woocommerce div.product p.price > .woocommerce-Price-amount { color: var(--hcg-ink); }
.woocommerce div.product .hcg-price-pix { font-size: var(--hcg-text-price); }
.woocommerce div.product .hcg-price-pix .woocommerce-Price-amount { font-size: 1em; }
.woocommerce div.product .hcg-installments { margin-bottom: var(--hcg-space-2); }

/* No card: pix compacto */
.hcg-card .hcg-price-pix { font-size: var(--hcg-text-base); }
.hcg-card__price .price { font-size: var(--hcg-text-sm); font-weight: var(--hcg-weight-semibold); color: var(--hcg-ink-soft); }

/* ---------- Buy box: CTAs empilhados ---------- */

.hcg-btn-buynow {
	flex: 1 1 100%;
	order: 3;
	min-height: var(--hcg-control-h-lg);
	background: var(--hcg-brand);
	color: var(--hcg-neutral-0);
	border: var(--hcg-border-w) solid var(--hcg-brand);
	border-radius: var(--hcg-radius-pill);
	font-family: var(--hcg-font-body);
	font-size: var(--hcg-text-md);
	font-weight: var(--hcg-weight-bold);
	cursor: pointer;
	transition: transform var(--hcg-ease-fast), box-shadow var(--hcg-ease-fast), background var(--hcg-ease-fast);
}
.hcg-btn-buynow:hover {
	background: var(--hcg-brand-hover);
	border-color: var(--hcg-brand-hover);
	transform: translateY(-1px);
	box-shadow: var(--hcg-shadow-brand);
}

/* "Adicionar ao carrinho" vira secundário (ghost) */
.woocommerce div.product form.cart { flex-wrap: wrap; }
.woocommerce div.product form.cart div.quantity { order: 1; }
.woocommerce div.product form.cart .single_add_to_cart_button {
	order: 2;
	flex: 1;
	background: transparent;
	color: var(--hcg-brand) !important;
	border-color: var(--hcg-brand);
	min-height: var(--hcg-control-h);
	font-size: var(--hcg-text-sm);
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
	background: var(--hcg-brand-soft);
	color: var(--hcg-brand-hover) !important;
	box-shadow: none;
	transform: none;
}

.hcg-low-stock {
	color: var(--hcg-warning);
	font-size: var(--hcg-text-xs);
	font-weight: var(--hcg-weight-bold);
	margin: 0 0 var(--hcg-space-2);
}

/* ---------- Bloco de confiança na PDP ---------- */

.hcg-trust {
	display: flex;
	flex-direction: column;
	gap: var(--hcg-space-2);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	padding: var(--hcg-space-4);
	margin: var(--hcg-space-4) 0 var(--hcg-space-2);
}
.hcg-trust li { display: flex; align-items: center; gap: var(--hcg-space-3); }
.hcg-trust svg { color: var(--hcg-success); flex: none; width: 20px; height: 20px; }
.hcg-trust strong { font-size: var(--hcg-text-sm); }
.hcg-trust small { color: var(--hcg-ink-soft); font-size: var(--hcg-text-xs); }

.hcg-payments-line {
	color: var(--hcg-ink-soft);
	font-size: var(--hcg-text-2xs);
	letter-spacing: 0.02em;
	margin: var(--hcg-space-1) 0 0;
}

/* ---------- Calculadora de frete (PDP) ---------- */

.hcg-shipcalc {
	border-top: 1px solid var(--hcg-line);
	padding-top: var(--hcg-space-4);
	margin-top: var(--hcg-space-2);
}
.hcg-shipcalc label {
	font-weight: var(--hcg-weight-semibold);
	font-size: var(--hcg-text-xs);
	display: block;
	margin-bottom: var(--hcg-space-1);
}
.hcg-shipcalc__row { display: flex; gap: var(--hcg-space-2); max-width: 320px; }
.hcg-shipcalc__row input { flex: 1; min-width: 0; }
.hcg-shipcalc__result ul { margin-top: var(--hcg-space-2); }
.hcg-shipcalc__result li {
	display: flex;
	justify-content: space-between;
	gap: var(--hcg-space-4);
	font-size: var(--hcg-text-sm);
	padding-block: var(--hcg-space-1);
	border-bottom: 1px dashed var(--hcg-line);
	max-width: 320px;
}
.hcg-shipcalc__result strong { color: var(--hcg-success-dark); }
.hcg-shipcalc__result p { font-size: var(--hcg-text-xs); color: var(--hcg-ink-soft); margin: var(--hcg-space-2) 0 0; }
.hcg-shipcalc__err { color: var(--hcg-danger) !important; }

/* ---------- Barra sticky de compra (mobile) ---------- */

.hcg-stickybar {
	position: fixed;
	inset: auto 0 0 0;
	z-index: var(--hcg-z-float);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--hcg-space-4);
	background: var(--hcg-surface);
	border-top: var(--hcg-border-w) solid var(--hcg-line);
	box-shadow: 0 -8px 24px -12px rgba(42, 30, 36, 0.25);
	padding: var(--hcg-space-2) var(--hcg-space-4);
	padding-bottom: calc(var(--hcg-space-2) + env(safe-area-inset-bottom, 0px));
}
.hcg-stickybar__price { display: flex; flex-direction: column; line-height: 1.2; }
.hcg-stickybar__price strong {
	font-family: var(--hcg-font-display);
	font-size: var(--hcg-text-md);
	color: var(--hcg-success-dark);
}
.hcg-stickybar__price small { color: var(--hcg-ink-soft); font-size: var(--hcg-text-2xs); }
.hcg-stickybar .hcg-btn { min-height: var(--hcg-control-h); padding-inline: var(--hcg-space-8); }
@media (min-width: 821px) { .hcg-stickybar { display: none; } }
.woocommerce-cart .hcg-stickybar, .woocommerce-checkout .hcg-stickybar { display: none; }

/* ---------- Steppers de quantidade ---------- */

.hcg-qty {
	display: inline-flex;
	align-items: stretch;
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-pill);
	overflow: hidden;
	background: var(--hcg-surface);
}
.hcg-qty__btn {
	width: 44px;
	min-height: 44px;
	border: 0;
	background: transparent;
	color: var(--hcg-ink);
	font-size: var(--hcg-text-md);
	font-weight: var(--hcg-weight-bold);
	cursor: pointer;
}
.hcg-qty__btn:hover { background: var(--hcg-brand-soft); color: var(--hcg-brand); }
.hcg-qty input.qty,
.woocommerce .hcg-qty .qty {
	border: 0;
	border-radius: 0;
	width: 48px;
	min-height: 44px;
	text-align: center;
	font-weight: var(--hcg-weight-bold);
}
.hcg-qty input.qty:focus { box-shadow: none; }
.woocommerce div.product form.cart .hcg-qty { height: var(--hcg-control-h); }

/* ---------- Etapas do funil ---------- */

.hcg-steps {
	display: flex;
	justify-content: center;
	gap: var(--hcg-space-2);
	margin: 0 0 var(--hcg-space-6);
	font-size: var(--hcg-text-xs);
	flex-wrap: wrap;
}
.hcg-steps li {
	display: flex;
	align-items: center;
	gap: var(--hcg-space-2);
	color: var(--hcg-ink-soft);
	font-weight: var(--hcg-weight-semibold);
}
.hcg-steps li::before {
	content: "";
	width: 8px; height: 8px;
	border-radius: var(--hcg-radius-round);
	background: var(--hcg-line);
}
.hcg-steps li.is-done { color: var(--hcg-success-dark); }
.hcg-steps li.is-done::before { background: var(--hcg-success); }
.hcg-steps li.is-current { color: var(--hcg-brand); }
.hcg-steps li.is-current::before { background: var(--hcg-brand); }
.hcg-steps li:not(:last-child)::after {
	content: "";
	width: 34px; height: 1.5px;
	background: var(--hcg-line);
	margin-left: var(--hcg-space-2);
}

/* ---------- Carrinho: layout 2 colunas + resumo fixo ---------- */

@media (min-width: 1025px) {
	.woocommerce-cart .hcg-content .woocommerce,
	.woocommerce-cart.hcg-content .woocommerce {
		display: grid;
		grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
		gap: var(--hcg-space-8);
		align-items: start;
	}
	.woocommerce-cart .hcg-content .woocommerce-notices-wrapper,
	.woocommerce-cart .hcg-content .hcg-steps,
	.woocommerce-cart .hcg-content .hcg-freeship,
	.woocommerce-cart .hcg-content .cross-sells,
	.woocommerce-cart.hcg-content .woocommerce-notices-wrapper,
	.woocommerce-cart.hcg-content .hcg-steps,
	.woocommerce-cart.hcg-content .hcg-freeship,
	.woocommerce-cart.hcg-content .cross-sells { grid-column: 1 / -1; }
	.woocommerce-cart .hcg-content .woocommerce-cart-form,
	.woocommerce-cart.hcg-content .woocommerce-cart-form { grid-column: 1; }
	.woocommerce-cart .hcg-content .cart-collaterals,
	.woocommerce-cart.hcg-content .cart-collaterals {
		grid-column: 2;
		position: sticky;
		top: var(--hcg-space-4);
	}
}
.cart_totals .hcg-btn,
.wc-proceed-to-checkout .checkout-button {
	width: 100%;
	min-height: var(--hcg-control-h-lg);
	font-size: var(--hcg-text-md);
}
.hcg-continue {
	display: block;
	text-align: center;
	margin-top: var(--hcg-space-3);
	font-size: var(--hcg-text-sm);
	font-weight: var(--hcg-weight-semibold);
	color: var(--hcg-ink-soft);
}
.hcg-continue:hover { color: var(--hcg-brand); }

/* Cupom recolhido */
.hcg-coupon-toggle {
	background: none;
	border: 0;
	color: var(--hcg-brand);
	font: inherit;
	font-size: var(--hcg-text-sm);
	font-weight: var(--hcg-weight-semibold);
	cursor: pointer;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.woocommerce-cart-form .coupon.is-collapsed { display: none !important; }
.woocommerce-cart-form .coupon { display: inline-flex; gap: var(--hcg-space-2); margin-left: var(--hcg-space-4); }

/* Item do carrinho */
.woocommerce-cart table.cart td.product-remove a.remove { margin-inline: auto; }
.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-subtotal { white-space: nowrap; }
.woocommerce table.shop_table button[name="update_cart"] { display: none; } /* atualização automática via JS */

/* Mensagem "adicionado ao carrinho" com CTA dominante */
.woocommerce-message .hcg-btn { float: right; margin-left: var(--hcg-space-3); }
.hcg-msg-link {
	float: right;
	align-self: center;
	margin: var(--hcg-space-2) var(--hcg-space-3) 0 0;
	font-weight: var(--hcg-weight-semibold);
	font-size: var(--hcg-text-sm);
}

/* ---------- Checkout sem distrações ---------- */

.hcg-checkout-header {
	background: var(--hcg-surface);
	border-bottom: 1px solid var(--hcg-line);
	position: sticky;
	top: 0;
	z-index: var(--hcg-z-header);
}
.hcg-checkout-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 64px;
}
.hcg-checkout-header__back {
	justify-self: start;
	color: var(--hcg-ink-soft);
	font-weight: var(--hcg-weight-semibold);
	font-size: var(--hcg-text-sm);
}
.hcg-checkout-header__back:hover { color: var(--hcg-brand); }
.hcg-checkout-header__secure {
	justify-self: end;
	color: var(--hcg-success-dark);
	font-size: var(--hcg-text-xs);
	font-weight: var(--hcg-weight-bold);
}

.hcg-main--checkout { background: var(--hcg-surface-alt); min-height: 70vh; }
.hcg-main--checkout .hcg-content { padding-block: var(--hcg-space-6) var(--hcg-space-12); }

.hcg-footer--slim { background: transparent; color: var(--hcg-ink-soft); border-top: 1px solid var(--hcg-line); }
.hcg-footer--slim p { margin: 0; font-size: var(--hcg-text-xs); }
.hcg-footer--slim a { color: var(--hcg-success-dark); font-weight: var(--hcg-weight-semibold); }

/* Painéis brancos no checkout */
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
	background: var(--hcg-surface);
	border: var(--hcg-border-w) solid var(--hcg-line);
	border-radius: var(--hcg-radius-md);
	padding: var(--hcg-space-6);
}
.woocommerce-checkout #order_review_heading {
	background: transparent;
	margin-bottom: var(--hcg-space-2);
}
@media (min-width: 1025px) {
	.woocommerce-checkout form.checkout #order_review { position: sticky; top: 84px; }
}
.woocommerce-checkout #payment { background: var(--hcg-surface-alt); }

.woocommerce-checkout #order_review table.shop_table { font-size: var(--hcg-text-sm); }
.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td { padding: var(--hcg-space-2) var(--hcg-space-3); }
.woocommerce-checkout #order_review table.shop_table {
	width: 100%;
	margin-bottom: var(--hcg-space-4);
}
.woocommerce-checkout #order_review table.shop_table td:last-child,
.woocommerce-checkout #order_review table.shop_table th:last-child {
	text-align: right;
}
.woocommerce-checkout #order_review ul#shipping_method,
.woocommerce-checkout #order_review .woocommerce-shipping-methods { margin: 0; }

.hcg-checkout-trust { text-align: center; margin-top: var(--hcg-space-3); }
.hcg-checkout-trust p { margin: 0 0 var(--hcg-space-1); font-size: var(--hcg-text-xs); color: var(--hcg-ink-soft); }

/* ---------- Carrinho e checkout: acabamento limpo, sem excesso de cards ---------- */

.woocommerce-cart .wc-block-cart-items,
.woocommerce-cart .wc-block-components-sidebar,
.woocommerce-cart .wp-block-woocommerce-cart-order-summary-block,
.woocommerce-checkout .wc-block-components-sidebar,
.woocommerce-checkout .wc-block-components-order-summary,
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
.woocommerce-checkout .wc-block-components-checkout-step.wc-block-components-checkout-step {
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	overflow: visible !important;
}

.woocommerce-cart .wc-block-cart-items {
	background: transparent !important;
	border-top: 1px solid var(--hcg-line) !important;
	border-bottom: 1px solid var(--hcg-line) !important;
}

.woocommerce-cart .wc-block-components-sidebar {
	background: transparent !important;
	padding: 0 !important;
}

.woocommerce-cart .wp-block-woocommerce-cart-order-summary-block,
.woocommerce-checkout .wc-block-components-order-summary,
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
	background: var(--hcg-surface) !important;
	border-top: 1px solid var(--hcg-line) !important;
	border-bottom: 1px solid var(--hcg-line) !important;
}

.woocommerce-checkout .wc-block-components-sidebar {
	background: transparent !important;
	padding: 0 !important;
}

.woocommerce-checkout .wc-block-components-checkout-step.wc-block-components-checkout-step {
	background: var(--hcg-surface) !important;
	border-top: 1px solid var(--hcg-line) !important;
	padding: var(--hcg-space-5) 0 !important;
}

.woocommerce-checkout .wc-block-components-checkout-step:first-of-type {
	border-top: 0 !important;
	padding-top: 0 !important;
}

.woocommerce-checkout .wc-block-components-checkout-step__container,
.woocommerce-checkout .wc-block-components-checkout-step__content {
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce-checkout .wc-block-checkout__contact-fields .wc-block-components-checkout-step__container {
	padding-bottom: 0 !important;
}

.woocommerce-checkout .wc-block-checkout__contact-fields.wc-block-components-checkout-step {
	margin-bottom: var(--hcg-space-3) !important;
	padding-bottom: var(--hcg-space-3) !important;
}

.woocommerce-checkout .wc-block-checkout__contact-fields .wc-block-components-checkout-step__heading {
	margin-bottom: var(--hcg-space-3) !important;
}

.woocommerce-cart .wc-block-cart__totals-title,
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary__button-text,
.woocommerce-checkout .wc-block-components-title {
	background: transparent !important;
	border: 0 !important;
	margin: 0 0 var(--hcg-space-4) !important;
	padding: 0 !important;
	text-transform: none !important;
}

.woocommerce-cart .wc-block-cart-items__row td,
.woocommerce-checkout .wc-block-components-order-summary-item,
.woocommerce-checkout .wc-block-components-totals-wrapper {
	border-color: var(--hcg-line) !important;
}

.woocommerce-cart .wc-block-cart-items__row td {
	padding-block: var(--hcg-space-5) !important;
}

.woocommerce-cart .wc-block-cart-items__row:first-child td {
	border-top: 0 !important;
}

.woocommerce-cart .wc-block-cart-item__image img,
.woocommerce-checkout .wc-block-components-order-summary-item__image img,
.hcg-cart-drawer__items .woocommerce-mini-cart-item img {
	border-radius: 4px !important;
	box-shadow: none !important;
}

.wc-block-components-product-badge.wc-block-components-sale-badge {
	display: none !important;
}

.wc-block-components-quantity-selector,
.hcg-qty {
	border-radius: 4px !important;
	box-shadow: none !important;
}

.wc-block-components-quantity-selector input,
.hcg-qty input.qty,
.woocommerce .hcg-qty .qty {
	border-left: 1px solid var(--hcg-line) !important;
	border-right: 1px solid var(--hcg-line) !important;
}

.woocommerce-cart .wc-block-cart__submit .wc-block-cart__submit-button,
.woocommerce-checkout .wc-block-components-button:not(.is-link),
.hcg-checkout-flow__next,
.woocommerce .hcg-cart-drawer__items .woocommerce-mini-cart__buttons .checkout,
.hcg-cart-drawer__items .woocommerce-mini-cart__buttons .checkout {
	box-shadow: none !important;
}

.woocommerce-cart .wc-block-cart__submit .wc-block-cart__submit-button:hover,
.woocommerce-checkout .wc-block-components-button:not(.is-link):hover,
.hcg-checkout-flow__next:hover,
.hcg-checkout-flow__next:focus-visible {
	transform: none !important;
	box-shadow: none !important;
}

.hcg-checkout-progress {
	gap: 0;
	border-bottom: 1px solid var(--hcg-line);
}

.hcg-checkout-progress__item {
	border-radius: 0;
	background: transparent;
	border-bottom: 2px solid transparent;
	justify-content: center;
}

.hcg-checkout-progress__item:hover {
	background: transparent;
	color: var(--hcg-brand);
	transform: none;
}

.hcg-checkout-progress__item.is-active {
	background: transparent;
	border-bottom-color: var(--hcg-brand);
}

.hcg-checkout-progress__item.is-complete {
	background: transparent;
	color: var(--hcg-institutional-blue);
}

.hcg-checkout-error {
	border-radius: 0;
	background: transparent;
	border-left: 3px solid var(--hcg-danger);
	padding: var(--hcg-space-1) 0 var(--hcg-space-1) var(--hcg-space-3);
}

.hcg-field-invalid {
	box-shadow: none !important;
}

.hcg-checkout-guest-note {
	border-radius: 0;
	box-shadow: none;
}

.woocommerce-checkout .wc-block-components-radio-control__option,
.woocommerce-checkout .wc-block-components-shipping-rates-control__package .wc-block-components-radio-control__option,
.woocommerce-checkout .wc-block-components-payment-methods .wc-block-components-radio-control__option {
	border-radius: 4px;
	box-shadow: none !important;
}

.woocommerce-checkout .wc-block-components-radio-control__option:hover,
.woocommerce-checkout .wc-block-components-radio-control__option:has(input:checked) {
	box-shadow: none !important;
}

.hcg-cart-drawer__items .woocommerce-mini-cart {
	gap: 0;
}

.hcg-cart-drawer__items .woocommerce-mini-cart-item {
	border: 0;
	border-bottom: 1px solid var(--hcg-line);
	border-radius: 0;
	background: transparent;
	padding: var(--hcg-space-4) 0;
}

.hcg-cart-drawer__items .woocommerce-mini-cart-item:first-child {
	border-top: 1px solid var(--hcg-line);
}

.hcg-cart-drawer__items a.remove {
	border-radius: 4px;
}

.hcg-cart-drawer__items .woocommerce-mini-cart__buttons .button,
.woocommerce .hcg-cart-drawer__items .woocommerce-mini-cart__buttons .button,
.hcg-cart-drawer__items .woocommerce-mini-cart__buttons a.button.wc-forward {
	border-radius: 4px;
}

/* ---------- Animações de entrada ---------- */

@media (prefers-reduced-motion: no-preference) {
	.hcg-hero__copy > * { animation: hcg-rise 0.6s ease both; }
	.hcg-hero__copy > *:nth-child(2) { animation-delay: 0.08s; }
	.hcg-hero__copy > *:nth-child(3) { animation-delay: 0.16s; }
	.hcg-hero__copy > *:nth-child(4) { animation-delay: 0.24s; }
	.hcg-hero-product--1 { animation: hcg-float-a var(--hcg-motion-orbit) ease-in-out infinite alternate; }
	.hcg-hero-product--2 { animation: hcg-float-b calc(var(--hcg-motion-orbit) * 1.08) ease-in-out infinite alternate; }
	.hcg-hero-product--3 { animation: hcg-float-c calc(var(--hcg-motion-orbit) * 0.96) ease-in-out infinite alternate; }
	.hcg-hero-orbit--pix { animation: hcg-orbit-a 6.4s ease-in-out infinite alternate; }
	.hcg-hero-orbit--ship { animation: hcg-orbit-b 7.2s ease-in-out infinite alternate; }

	[data-hcg-reveal] {
		opacity: 0;
		transform: translateY(18px);
		transition: opacity var(--hcg-ease-slow), transform var(--hcg-ease-slow);
	}
	[data-hcg-reveal].is-visible {
		opacity: 1;
		transform: translateY(0);
	}
	ul.products > [data-hcg-reveal]:nth-child(2n) { transition-delay: 45ms; }
	ul.products > [data-hcg-reveal]:nth-child(3n) { transition-delay: 90ms; }
	ul.products > [data-hcg-reveal]:nth-child(4n) { transition-delay: 135ms; }

	@keyframes hcg-rise {
		from { opacity: 0; transform: translateY(14px); }
		to   { opacity: 1; transform: none; }
	}
	@keyframes hcg-float-a {
		from { transform: rotate(4deg) translate3d(0, 0, 0); }
		to { transform: rotate(2deg) translate3d(-10px, -16px, 26px); }
	}
	@keyframes hcg-float-b {
		from { transform: rotate(-5deg) translate3d(0, 0, 0); }
		to { transform: rotate(-2deg) translate3d(16px, -10px, 32px); }
	}
	@keyframes hcg-float-c {
		from { transform: rotate(3deg) translate3d(0, 0, 0); }
		to { transform: rotate(6deg) translate3d(-14px, 10px, 18px); }
	}
	@keyframes hcg-orbit-a {
		from { transform: translate3d(0, 0, 0) rotate(-2deg); }
		to { transform: translate3d(8px, 12px, 0) rotate(3deg); }
	}
	@keyframes hcg-orbit-b {
		from { transform: translate3d(0, 0, 0) rotate(2deg); }
		to { transform: translate3d(-10px, -8px, 0) rotate(-2deg); }
	}
	@keyframes hcg-card-shine {
		from { transform: translateX(-110%); }
		to { transform: translateX(110%); }
	}
	@keyframes hcg-marquee {
		from { transform: translateX(0); }
		to { transform: translateX(-50%); }
	}
	@keyframes hcg-mega-in {
		from { opacity: 0; transform: translateY(-10px) scaleY(0.98); }
		to { opacity: 1; transform: translateY(0) scaleY(1); }
	}
}

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

/* ---------- Responsivo ---------- */

@media (max-width: 1024px) {
	.woocommerce ul.products, ul.products { grid-template-columns: repeat(3, 1fr); }
	.hcg-benefits__grid { grid-template-columns: repeat(2, 1fr); }
	.hcg-footer__grid { grid-template-columns: 1fr 1fr; }
	.hcg-topbar__contact { display: none; }
	.hcg-topbar__inner { justify-content: center; }
	.hcg-header__inner {
		grid-template-columns: auto auto minmax(0, 1fr) auto;
		gap: var(--hcg-space-3);
	}
	.hcg-header__toggle { display: grid; place-items: center; }
	.hcg-header__search {
		grid-column: 1 / -1;
		grid-row: 2;
	}
	.hcg-header__search form { max-width: none; }
	.hcg-nav {
		position: fixed;
		inset: 0 38% 0 0;
		background: var(--hcg-surface);
		z-index: var(--hcg-z-drawer);
		transform: translateX(-102%);
		transition: transform var(--hcg-ease-slow);
		overflow-y: auto;
		box-shadow: var(--hcg-shadow-md);
		border-top: 0;
		padding: var(--hcg-space-5);
	}
	.hcg-nav.is-open { transform: none; }
	.hcg-nav__inner { display: block; width: auto; }
	.hcg-nav__mega-toggle,
	.hcg-mega { display: none !important; }
	.hcg-nav__list { flex-direction: column; gap: 0; }
	.hcg-nav__list > li > a {
		border-bottom: 1px solid var(--hcg-line);
		border-radius: 0;
		min-height: 0;
		padding: var(--hcg-space-3) var(--hcg-space-2);
	}
	.hcg-nav__list .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		border: 0;
		box-shadow: none;
		padding-left: var(--hcg-space-3);
	}
	.hcg-shop {
		grid-template-columns: 1fr;
		gap: var(--hcg-space-5);
	}
	.hcg-shop__sidebar {
		position: static;
		order: -1;
	}
	.hcg-shop .woocommerce ul.products,
	.hcg-shop ul.products { grid-template-columns: repeat(3, 1fr); }
	.hcg-hero__inner {
		grid-template-columns: 1fr;
		min-height: 0;
	}
	.hcg-hero__copy h1 { max-width: 13ch; }
	.hcg-hero-stage { min-height: 430px; }
}

@media (max-width: 820px) {
	.hcg-action span:last-child { display: none; }

	.hcg-nav {
		inset: 0 30% 0 0;
	}

	.hcg-hero__inner { gap: var(--hcg-space-8); }
	.hcg-hero-stage { min-height: 360px; }
	.hcg-hero-product {
		grid-template-columns: 96px minmax(0, 1fr);
		width: min(340px, 92%);
		border-radius: 20px;
	}
	.hcg-hero-product--1 { top: 0; right: 0; }
	.hcg-hero-product--2 { top: 31%; left: 0; }
	.hcg-hero-product--3 { right: 2%; bottom: 0; }
	.hcg-hero-orbit { padding: var(--hcg-space-2) var(--hcg-space-3); border-radius: 16px; }
	.hcg-hero-orbit--pix { left: 3%; }
	.hcg-hero-orbit--ship { right: 0; bottom: 30%; }

	.hcg-hero--banners .hcg-hero-slide__picture img {
		object-position: center;
	}

	.hcg-hero--banners .hcg-hero-slider__controls {
		bottom: var(--hcg-space-3);
	}

	.hcg-hero--banners .hcg-hero-slider__arrow {
		width: 38px;
		height: 38px;
	}

	.hcg-shop { grid-template-columns: 1fr; }
	.hcg-shop-filters__form .hcg-btn {
		width: 100%;
	}
	.woocommerce .woocommerce-result-count,
	.woocommerce .woocommerce-ordering {
		float: none;
		width: 100%;
	}
	.woocommerce .woocommerce-ordering {
		margin-top: var(--hcg-space-3);
		justify-content: stretch;
	}
	.woocommerce .woocommerce-ordering select { width: 100%; }

	.woocommerce ul.products, ul.products { grid-template-columns: repeat(2, 1fr); }
	.hcg-shop .woocommerce ul.products,
	.hcg-shop ul.products { grid-template-columns: repeat(2, 1fr); }

	.hcg-checkout-progress {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x proximity;
		padding-bottom: var(--hcg-space-1);
	}
	.hcg-checkout-progress__item {
		flex: 0 0 auto;
		scroll-snap-align: start;
	}
	.woocommerce-checkout .wc-block-components-checkout-step {
		padding-left: var(--hcg-card-pad) !important;
	}
	.woocommerce-checkout .wc-block-components-checkout-step::before {
		position: static;
		margin-bottom: var(--hcg-space-3);
	}
	.hcg-checkout-flow {
		flex-direction: column-reverse;
		align-items: stretch;
	}
	.hcg-checkout-flow__back,
	.hcg-checkout-flow__next {
		width: 100%;
	}

	.home .hcg-cats__grid,
	.home .hcg-showcase ul.products {
		display: flex !important;
		grid-template-columns: none;
		align-items: stretch;
		gap: var(--hcg-space-4);
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scroll-padding-left: calc(var(--hcg-container-gutter) / 2);
		padding: var(--hcg-space-1) 0 var(--hcg-space-4);
		margin-inline: calc(var(--hcg-container-gutter) / -2);
		padding-inline: calc(var(--hcg-container-gutter) / 2);
		-webkit-overflow-scrolling: touch;
	}
	.home .hcg-cats__grid::-webkit-scrollbar,
	.home .hcg-showcase ul.products::-webkit-scrollbar {
		display: none;
	}
	.home .hcg-cats__grid,
	.home .hcg-showcase ul.products {
		scrollbar-width: none;
	}
	.home .hcg-cats__card {
		flex: 0 0 min(58vw, 220px);
		scroll-snap-align: start;
	}
	.home .hcg-showcase ul.products li.product {
		display: flex;
		flex: 0 0 min(74vw, 286px);
		align-self: stretch;
		scroll-snap-align: start;
	}
	.home .hcg-showcase ul.products li.product .hcg-card {
		width: 100%;
		min-height: 100%;
	}
	.home .hcg-showcase__head {
		margin-bottom: var(--hcg-space-3);
	}
	.home .hcg-carousel-controls {
		display: flex;
		justify-content: flex-end;
		gap: var(--hcg-space-2);
		margin: calc(var(--hcg-space-2) * -1) 0 var(--hcg-space-3);
	}
	.home .hcg-carousel-btn {
		display: grid;
		place-items: center;
		width: 40px;
		height: 40px;
		border: var(--hcg-border-w) solid var(--hcg-line);
		border-radius: var(--hcg-radius-round);
		background: var(--hcg-surface);
		color: var(--hcg-brand);
		font-size: 1.45rem;
		font-weight: var(--hcg-weight-black);
		line-height: 1;
		box-shadow: var(--hcg-shadow-sm);
	}
	.home .hcg-carousel-btn i {
		font-size: 0.92rem;
		line-height: 1;
	}
	.home .hcg-carousel-btn:active { transform: translateY(1px); }

	.hcg-duo-banners__grid {
		grid-template-columns: 1fr;
		gap: var(--hcg-space-4);
	}
	.hcg-duo-banner {
		grid-template-rows: minmax(220px, 62vw) auto;
		min-height: 0;
	}
	.hcg-duo-banner__body {
		padding: var(--hcg-space-4);
	}

	.hcg-promoband__inner,
	.hcg-about-page-hero,
	.hcg-about-page-grid {
		grid-template-columns: 1fr;
	}
	.hcg-promoband__inner {
		min-height: 0;
		padding-block: var(--hcg-space-7) 0;
	}
	.hcg-promoband__media {
		min-height: 260px;
		margin-top: calc(var(--hcg-space-6) * -1);
	}
	.hcg-promoband__media img {
		width: min(520px, 112%);
		margin-top: calc(var(--hcg-space-6) * -1);
		transform: translateY(var(--hcg-space-4));
	}
	.hcg-about-page-stats,
	.hcg-about-page-lines__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hcg-newsletter__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
	.hcg-hero--banners .hcg-hero-slider,
	.hcg-hero--banners .hcg-hero-slide__link {
		aspect-ratio: 900 / 1200;
		min-height: 0;
	}
}

@media (max-width: 480px) {
	.hcg-benefits__grid { grid-template-columns: 1fr; }
	.hcg-footer__grid { grid-template-columns: 1fr; }
	.hcg-shop-filters {
		padding: var(--hcg-space-4);
	}
	.hcg-shop-filters__head {
		align-items: flex-start;
		flex-direction: column;
	}
	.hcg-shop-filters__form {
		grid-template-columns: 1fr;
	}
	.hcg-about-page-stats,
	.hcg-about-page-lines__grid {
		grid-template-columns: 1fr;
	}
	.woocommerce ul.products, ul.products,
	.hcg-shop .woocommerce ul.products,
	.hcg-shop ul.products { grid-template-columns: repeat(2, 1fr); gap: var(--hcg-space-3); }
	.hcg-card__body { padding: var(--hcg-space-3); }
	.hcg-hero__inner {
		padding-block: var(--hcg-space-8) var(--hcg-space-10);
		gap: var(--hcg-space-5);
	}
	.hcg-hero__copy h1 {
		font-size: clamp(2.45rem, 13vw, 3.35rem);
		max-width: 10ch;
		margin-bottom: var(--hcg-space-3);
	}
	.hcg-hero__copy p {
		font-size: var(--hcg-text-base);
		line-height: var(--hcg-leading-base);
	}
	.hcg-hero__cta { margin-top: var(--hcg-space-4); }
	.hcg-hero__cta .hcg-btn { width: 100%; }
	.hcg-hero__proof { margin-top: var(--hcg-space-4); }
	.hcg-hero-stage { min-height: 330px; }
	.hcg-hero-stage__grid { inset: 7% 0 0; }
	.hcg-hero-product {
		grid-template-columns: 82px minmax(0, 1fr);
		padding: var(--hcg-space-2);
	}
	.hcg-hero-product__name { font-size: var(--hcg-text-sm); }
	.hcg-hero-product__price { font-size: var(--hcg-text-md); }
	.hcg-hero-orbit--ship { display: none; }
	.hcg-showcase__head {
		align-items: flex-start;
		gap: var(--hcg-space-3);
	}
	.hcg-showcase__head h2 { flex: 1; }
	.hcg-showcase__more {
		font-size: var(--hcg-text-xs);
		padding-top: 0.25em;
	}
	.woocommerce-cart table.shop_table,
	.woocommerce-cart table.shop_table tbody,
	.woocommerce-cart table.shop_table tr,
	.woocommerce-cart table.shop_table td {
		display: block;
		width: 100%;
	}
	.woocommerce-cart table.shop_table tr {
		display: grid;
		grid-template-columns: 72px minmax(0, 1fr);
		gap: var(--hcg-space-3);
		padding: var(--hcg-space-3);
	}
	.woocommerce-cart table.shop_table td {
		border-top: 0;
		padding: 0;
	}
	.woocommerce-cart table.shop_table td.product-thumbnail {
		grid-row: span 3;
		width: 72px;
	}
	.woocommerce-cart table.shop_table td.product-name { min-width: 0; }
	.woocommerce-cart table.cart .product-subtotal { white-space: normal; }
	.woocommerce-cart .hcg-content .woocommerce,
	.woocommerce-cart .hcg-content .cart-collaterals,
	.woocommerce-cart .hcg-content .woocommerce-cart-form { min-width: 0; }
}
