/*
 * Homepage final design pass.
 *
 * This file is deliberately scoped to body.hhm-front-page so the product,
 * archive, cart, checkout, account and editorial templates remain unchanged.
 */

body.hhm-front-page {
	--hhm-home-card: #fff;
	--hhm-home-card-line: #d9d6cf;
	--hhm-home-media: #f3f1ec;
	--hhm-home-ink: #181b1e;
	--hhm-home-muted: #667074;
	--hhm-home-gold: #d4af37;
	--hhm-home-gold-pale: #eee1bd;
}

body.hhm-front-page .hhm-balance-section { padding-block: 70px; }

/* Cleaner section transitions. */
body.hhm-front-page .hhm-catalog-explorer {
	background: #f1efea;
	color: var(--hhm-home-ink);
}

body.hhm-front-page .hhm-explorer-panel {
	padding: 22px;
	border-color: #d8d4cb;
	border-radius: 15px;
	background: #fbfaf7;
	box-shadow: 0 18px 54px rgba(27, 25, 20, .07);
}

body.hhm-front-page .hhm-explorer-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

body.hhm-front-page .hhm-explorer-grid--operation {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.hhm-front-page .hhm-new-shelf {
	border-block: 1px solid #20232b;
	background: #121519;
}

body.hhm-front-page .hhm-new-shelf .hhm-balance-heading h2 { color: #f4f1eb; }
body.hhm-front-page .hhm-new-shelf .hhm-balance-kicker { color: #d3b15d; }
body.hhm-front-page .hhm-new-shelf .hhm-balance-heading--inline > a { color: #e3cb89; }
body.hhm-front-page .hhm-product-shelf { gap: 12px; }

/* Homepage-only product card architecture. */
body.hhm-front-page .hhm-home-product {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--hhm-home-card-line);
	border-radius: 14px;
	background: var(--hhm-home-card);
	color: var(--hhm-home-ink);
	box-shadow: 0 2px 0 rgba(20, 22, 24, .02);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

body.hhm-front-page .hhm-home-product:hover,
body.hhm-front-page .hhm-home-product:focus-within {
	border-color: #bfa967;
	box-shadow: 0 18px 42px rgba(23, 24, 24, .12);
	transform: translateY(-3px);
}

body.hhm-front-page .hhm-home-product__media {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 252px;
	padding: 22px;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 42%, #fff 0 18%, rgba(255,255,255,.15) 58%, transparent 72%),
		var(--hhm-home-media);
}

body.hhm-front-page .hhm-home-product__media::after {
	position: absolute;
	inset: auto 18px 13px;
	height: 14px;
	border-radius: 50%;
	background: rgba(24, 26, 27, .08);
	filter: blur(9px);
	content: "";
	pointer-events: none;
	transform: scale(.7);
	transition: transform .2s ease, opacity .2s ease;
}

body.hhm-front-page .hhm-home-product__media img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 215px;
	margin: 0;
	padding: 0;
	object-fit: contain;
	object-position: center;
	filter: none;
	mix-blend-mode: multiply;
	transform: scale(.94);
	transition: transform .24s ease;
}

body.hhm-front-page .hhm-home-product:hover .hhm-home-product__media img,
body.hhm-front-page .hhm-home-product:focus-within .hhm-home-product__media img {
	transform: scale(.99);
}

body.hhm-front-page .hhm-home-product:hover .hhm-home-product__media::after {
	opacity: .72;
	transform: scale(.86);
}

body.hhm-front-page .hhm-home-product__badges {
	position: absolute;
	z-index: 3;
	top: 12px;
	left: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	max-width: calc(100% - 24px);
}

body.hhm-front-page .hhm-home-product__badge {
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	padding: 5px 8px;
	border: 1px solid rgba(27, 31, 33, .08);
	border-radius: 999px;
	background: rgba(255, 255, 255, .94);
	color: #33383a;
	box-shadow: 0 4px 13px rgba(25, 26, 27, .1);
	font-size: .56rem;
	font-weight: 880;
	letter-spacing: .05em;
	line-height: 1;
	text-transform: uppercase;
}

body.hhm-front-page .hhm-home-product__badge--sale { border-color: #8f342d; background: #8f342d; color: #fff; }
body.hhm-front-page .hhm-home-product__badge--new { border-color: #2b2312; background: #2b2312; color: #edf4f5; }
body.hhm-front-page .hhm-home-product__badge--stock { border-color: #d4c7a3; background: #f0e9d5; color: #544521; }
body.hhm-front-page .hhm-home-product__badge--low,
body.hhm-front-page .hhm-home-product__badge--request { border-color: #d6bd7d; background: #f1e4bf; color: #604817; }
body.hhm-front-page .hhm-home-product__badge--out { border-color: #d0d1cf; background: #e8e9e7; color: #484d50; }
body.hhm-front-page .hhm-home-product__badge--type { border-color: #c4c1ba; background: #fff; color: #50575a; }

body.hhm-front-page .hhm-home-product__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	padding: 15px 16px 16px;
}

body.hhm-front-page .hhm-home-product__identity {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 34px;
	margin-bottom: 9px;
}

body.hhm-front-page .hhm-home-product__identity > small {
	flex: none;
	color: #6a7275;
	font-size: .57rem;
	font-weight: 760;
	letter-spacing: .025em;
	text-transform: uppercase;
}

body.hhm-front-page .hhm-home-product__brand-empty {
	display: block;
	width: 1px;
	height: 28px;
}

body.hhm-front-page .hhm-home-product__identity .hhm-brand-mark-link { min-width: 0; }
body.hhm-front-page .hhm-home-product__identity .hhm-brand-mark {
	box-sizing: border-box;
	width: auto;
	max-width: 124px;
	height: 30px;
	max-height: 30px;
	padding: 4px 9px;
	overflow: visible;
	border-color: #dedbd3;
	border-radius: 7px;
	background: #f7f7f4;
}

body.hhm-front-page .hhm-home-product__identity .hhm-brand-mark img {
	display: block;
	width: auto;
	height: 100%;
	max-width: 100%;
	max-height: none;
	margin: 0;
	padding: 0;
	object-fit: contain !important;
	object-position: center !important;
	transform: none !important;
}

body.hhm-front-page .hhm-home-product__identity .hhm-brand-mark__fallback {
	color: #262b2e;
	font-size: .66rem;
	font-weight: 820;
	letter-spacing: .015em;
}

body.hhm-front-page .hhm-home-product__meta {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	min-height: 17px;
	color: var(--hhm-home-muted);
	font-size: .64rem;
}

body.hhm-front-page .hhm-home-product__meta small {
	max-width: 100%;
	overflow: hidden;
	color: #806329;
	font-size: .6rem;
	font-weight: 770;
	text-overflow: ellipsis;
	white-space: nowrap;
}

body.hhm-front-page .hhm-home-product h3 {
	display: -webkit-box;
	overflow: hidden;
	min-height: 58px;
	max-height: 58px;
	margin: 8px 0 5px;
	color: var(--hhm-home-ink);
	font-size: .88rem;
	font-weight: 780;
	letter-spacing: -.014em;
	line-height: 1.38;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

body.hhm-front-page .hhm-home-product h3 a { color: inherit; }
body.hhm-front-page .hhm-home-product h3 a:hover { color: #6d5220; }

body.hhm-front-page .hhm-variable-preview {
	gap: 5px;
	margin: -2px 0 11px;
}

body.hhm-front-page .hhm-variable-preview__label {
	color: #6c7477;
	font-size: .6rem;
}

body.hhm-front-page .hhm-variable-preview button {
	min-width: 34px;
	min-height: 29px;
	padding: 5px 7px;
	border: 1px solid #cfcac0;
	border-radius: 6px;
	background: #f7f5f0;
	color: #394043;
	font-size: .58rem;
}

body.hhm-front-page .hhm-variable-preview button.is-selected {
	border-color: #1d2028;
	background: #1d2028;
	color: #fff;
}

body.hhm-front-page .hhm-home-product__commerce {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 4px;
}

body.hhm-front-page .hhm-home-product__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 3px 6px;
	min-width: 0;
	color: #362b16;
	font-size: .9rem;
	font-weight: 860;
	line-height: 1.25;
}

body.hhm-front-page .hhm-home-product__price-current {
	color: #7e312b;
	font-size: .96rem;
}

body.hhm-front-page .hhm-home-product__price del {
	order: 2;
	color: #7a7d7b;
	font-size: .69rem;
	font-weight: 650;
	opacity: 1;
}

body.hhm-front-page .hhm-home-product__price ins { color: #7e312b; text-decoration: none; }
body.hhm-front-page .hhm-home-product__price > small {
	order: 3;
	flex-basis: 100%;
	color: #7e312b;
	font-size: .59rem;
	font-weight: 770;
}

body.hhm-front-page .hhm-home-product__price-request { color: #6a501a; font-size: .8rem; }

body.hhm-front-page .hhm-home-product__availability {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	flex: none;
	color: #5e6060;
	font-size: .58rem;
	font-weight: 750;
	white-space: nowrap;
}

body.hhm-front-page .hhm-home-product__availability > span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #b28d3d;
}

body.hhm-front-page .hhm-home-product.is-out-of-stock .hhm-home-product__availability { color: #74787a; }
body.hhm-front-page .hhm-home-product.is-out-of-stock .hhm-home-product__availability > span { background: #8a8e90; }
body.hhm-front-page .hhm-home-product.is-price-on-request .hhm-home-product__availability { color: #70591f; }

body.hhm-front-page .hhm-home-product__footer {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr);
	gap: 7px;
	margin-top: 13px;
}

body.hhm-front-page .hhm-home-product__action,
body.hhm-front-page .hhm-product-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	min-width: 0;
	min-height: 41px;
	padding: 9px 11px;
	border-radius: 8px;
	font-size: .65rem;
	font-weight: 820;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
}

body.hhm-front-page .hhm-home-product__action {
	border: 1px solid #161921;
	background: #161921;
	color: #f6f2e9;
}

body.hhm-front-page .hhm-home-product__action:hover,
body.hhm-front-page .hhm-home-product__action:focus-visible {
	border-color: #b58d38;
	background: #b58d38;
	color: #0e0d08;
}

body.hhm-front-page .hhm-product-whatsapp {
	border: 1px solid #25d366;
	background: #f5fff8;
	color: #128c4d;
}

body.hhm-front-page .hhm-product-whatsapp svg,
body.hhm-front-page .hhm-home-product__action svg {
	flex: none;
	width: 16px;
	height: 16px;
	color: currentColor;
}

body.hhm-front-page .hhm-product-whatsapp:hover,
body.hhm-front-page .hhm-product-whatsapp:focus-visible {
	border-color: #128c4d;
	background: #e8faee;
	color: #0d713d;
}

body.hhm-front-page .hhm-home-product__footer .hhm-product-whatsapp {
	flex: initial;
	width: 100%;
	min-width: 0;
	height: auto;
	min-height: 41px;
	padding: 9px 10px;
	border-color: #25d366;
	background: #f5fff8;
	color: #128c4d;
}

body.hhm-front-page .hhm-home-product__footer .hhm-product-whatsapp span {
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	clip: auto;
}

body.hhm-front-page .hhm-home-product__feedback {
	position: absolute;
	right: 4px;
	bottom: -18px;
	left: 4px;
	color: #6c5522;
	font-size: .57rem;
	text-align: center;
}

body.hhm-front-page .hhm-home-product.is-adding .hhm-home-product__action {
	pointer-events: none;
	opacity: .65;
}

body.hhm-front-page .hhm-home-product.is-added .hhm-home-product__action {
	border-color: #9c7b35;
	background: #d9bd74;
	color: #1c180f;
}

body.hhm-front-page .hhm-home-product .added_to_cart { display: none; }

/* Featured card inside the catalog spotlight. */
body.hhm-front-page .hhm-home-product--featured {
	display: grid;
	grid-template-columns: minmax(0, 1.14fr) minmax(220px, .86fr);
	grid-template-rows: 1fr;
	min-height: 390px;
	border-color: #3a3e45;
	background: #101218;
	color: #f3f1eb;
	box-shadow: 0 22px 54px rgba(0, 0, 0, .25);
}

body.hhm-front-page .hhm-home-product--featured .hhm-home-product__media {
	min-height: 390px;
	padding: 27px;
	border-right: 1px solid #282c35;
	background:
		radial-gradient(circle at 50% 42%, #fff 0 18%, rgba(255,255,255,.18) 58%, transparent 72%),
		#efede7;
}

body.hhm-front-page .hhm-home-product--featured .hhm-home-product__media img { height: 330px; }

body.hhm-front-page .hhm-home-product--featured .hhm-home-product__body {
	padding: 24px 20px;
	background: #101218;
}

body.hhm-front-page .hhm-home-product--featured .hhm-home-product__identity .hhm-brand-mark {
	border-color: #44484d;
	background: #f5f3ed;
}

body.hhm-front-page .hhm-home-product--featured .hhm-home-product__identity > small,
body.hhm-front-page .hhm-home-product--featured .hhm-home-product__meta,
body.hhm-front-page .hhm-home-product--featured .hhm-home-product__meta > :first-child { color: #afb3b6; }

body.hhm-front-page .hhm-home-product--featured .hhm-home-product__meta small { color: #d4af37; }
body.hhm-front-page .hhm-home-product--featured h3 {
	min-height: 0;
	margin-block: 12px 18px;
	color: #f4f2ed;
	font-size: 1.06rem;
	-webkit-line-clamp: 3;
}

body.hhm-front-page .hhm-home-product--featured .hhm-home-product__price { color: #e7ce88; }
body.hhm-front-page .hhm-home-product--featured .hhm-home-product__availability { color: #b9b5aa; }
body.hhm-front-page .hhm-home-product--featured .hhm-home-product__action {
	border-color: #d4af37;
	background: #d4af37;
	color: #0e0d08;
}
body.hhm-front-page .hhm-home-product--featured .hhm-product-whatsapp {
	border-color: #4a4d52;
	background: #161921;
	color: #f1ede4;
}
body.hhm-front-page .hhm-home-product--featured .hhm-home-product__footer { grid-template-columns: 1fr; }

/* Shelf cards remain compact, but their actions stay labeled. */
body.hhm-front-page .hhm-home-product--shelf .hhm-home-product__media { min-height: 205px; padding: 15px; }
body.hhm-front-page .hhm-home-product--shelf .hhm-home-product__media img { height: 177px; }
body.hhm-front-page .hhm-home-product--shelf .hhm-home-product__body { padding: 12px; }
body.hhm-front-page .hhm-home-product--shelf .hhm-home-product__identity { min-height: 29px; }
body.hhm-front-page .hhm-home-product--shelf .hhm-home-product__identity .hhm-brand-mark { width: auto; max-width: 110px; height: 28px; }
body.hhm-front-page .hhm-home-product--shelf .hhm-home-product__footer { grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr); }
body.hhm-front-page .hhm-home-product--shelf h3 { font-size: .78rem; }

/* Compact cards in the two curated zones share all card business logic. */
body.hhm-front-page .hhm-home-product--compact,
body.hhm-front-page .hhm-home-product--horizontal {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	grid-template-rows: 1fr;
	min-height: 182px;
}

body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) .hhm-home-product__media {
	grid-row: 1;
	min-height: 182px;
	padding: 12px;
	border-right: 1px solid #e0ddd6;
}

body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) .hhm-home-product__media img { height: 152px; }
body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) .hhm-home-product__body { padding: 10px 11px; }
body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) .hhm-home-product__identity {
	min-height: 28px;
	margin-bottom: 4px;
}
body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) .hhm-home-product__identity .hhm-brand-mark {
	width: auto;
	max-width: 108px;
	height: 28px;
	padding: 4px 8px;
}
body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) .hhm-home-product__identity > small { font-size: .5rem; }
body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) .hhm-home-product__meta { font-size: .56rem; }
body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) .hhm-home-product__meta small { display: block; }
body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) h3 {
	min-height: 44px;
	max-height: 44px;
	margin: 5px 0 6px;
	font-size: .69rem;
	line-height: 1.32;
}
body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) .hhm-variable-preview { display: none; }
body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) .hhm-home-product__price { font-size: .69rem; }
body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) .hhm-home-product__availability { font-size: .51rem; }
body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) .hhm-home-product__footer {
	grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr);
	gap: 5px;
	margin-top: 7px;
}
body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) :is(.hhm-home-product__action, .hhm-product-whatsapp) {
	min-height: 32px;
	padding: 6px;
	font-size: .54rem;
}
body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) :is(.hhm-home-product__action, .hhm-product-whatsapp) svg {
	width: 13px;
	height: 13px;
}

/* Make curated products large enough for their truthful type/price states. */
body.hhm-front-page .hhm-curated-zone > div { gap: 9px; }
body.hhm-front-page .hhm-curated-zone { border-radius: 15px; }

/* Official green is reserved for the floating WhatsApp control. */
body.hhm-front-page #ht-ctc-chat {
	right: max(20px, env(safe-area-inset-right)) !important;
	bottom: max(20px, env(safe-area-inset-bottom)) !important;
	z-index: 9998 !important;
	transition: opacity .16s ease, visibility .16s ease !important;
}

body.hhm-front-page #ht-ctc-chat svg {
	width: 56px !important;
	height: 56px !important;
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .28));
}

body.hhm-front-page #ht-ctc-chat svg stop:first-child { stop-color: #25d366 !important; }
body.hhm-front-page #ht-ctc-chat svg stop:last-child { stop-color: #25d366 !important; }
body.hhm-front-page #ht-ctc-chat .ht-ctc-cta {
	background: #25d366 !important;
	color: #fff !important;
	box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
}

@media (max-width: 1180px) {
	body.hhm-front-page .hhm-explorer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	body.hhm-front-page .hhm-explorer-grid:not(.hhm-explorer-grid--operation) .hhm-home-product:nth-child(n+7) { display: none; }
	body.hhm-front-page .hhm-explorer-grid--operation { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	body.hhm-front-page .hhm-home-product__media { min-height: 222px; padding: 17px; }
	body.hhm-front-page .hhm-home-product__media img { height: 191px; }
}

@media (max-width: 1024px) {
	body.hhm-front-page .hhm-home-product--featured { grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr); }
	body.hhm-front-page .hhm-home-product--featured .hhm-home-product__footer { grid-template-columns: 1fr 1fr; }
	body.hhm-front-page .hhm-home-product--shelf .hhm-home-product__footer { grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr); }
}

@media (max-width: 820px) {
	body.hhm-front-page .hhm-balance-section { padding-block: 56px; }
	body.hhm-front-page .hhm-explorer-grid,
	body.hhm-front-page .hhm-explorer-grid--operation {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}
	body.hhm-front-page .hhm-explorer-grid:not(.hhm-explorer-grid--operation) .hhm-home-product:nth-child(n+7) { display: flex; }
	body.hhm-front-page .hhm-explorer-panel { padding: 14px; }
	body.hhm-front-page .hhm-product-shelf {
		display: flex;
		gap: 10px;
		overflow-x: auto;
		margin-inline: -14px;
		padding: 0 14px 10px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}
	body.hhm-front-page .hhm-product-shelf::-webkit-scrollbar { display: none; }
	body.hhm-front-page .hhm-product-shelf .hhm-home-product {
		flex: 0 0 min(43vw, 255px);
		scroll-snap-align: start;
	}
	body.hhm-front-page .hhm-home-product__media { min-height: 205px; padding: 14px; }
	body.hhm-front-page .hhm-home-product__media img { height: 178px; }
}

@media (max-width: 600px) {
	body.hhm-front-page .hhm-home-product--featured {
		display: flex;
		min-height: 0;
	}
	body.hhm-front-page .hhm-home-product--featured .hhm-home-product__media {
		min-height: 280px;
		border-right: 0;
		border-bottom: 1px solid #282c35;
	}
	body.hhm-front-page .hhm-home-product--featured .hhm-home-product__media img { height: 245px; }
	body.hhm-front-page .hhm-home-product--featured .hhm-home-product__footer { grid-template-columns: 1fr 1fr; }
	body.hhm-front-page .hhm-curated-zone { flex-basis: min(92vw, 580px); }
}

@media (max-width: 480px) {
	body.hhm-front-page .hhm-container { width: min(calc(100% - 24px), 1340px); }
	body.hhm-front-page .hhm-explorer-grid,
	body.hhm-front-page .hhm-explorer-grid--operation { gap: 8px; }
	body.hhm-front-page .hhm-home-product { border-radius: 11px; }
	body.hhm-front-page .hhm-home-product__media { min-height: 155px; padding: 10px; }
	body.hhm-front-page .hhm-home-product__media img { height: 136px; }
	body.hhm-front-page .hhm-home-product__media::after { inset-inline: 10px; }
	body.hhm-front-page .hhm-home-product__badges { top: 7px; left: 7px; gap: 3px; }
	body.hhm-front-page .hhm-home-product__badge { min-height: 20px; padding: 3px 5px; font-size: .48rem; }
	body.hhm-front-page .hhm-home-product__body { padding: 9px; }
	body.hhm-front-page .hhm-home-product__identity { min-height: 27px; margin-bottom: 5px; }
	body.hhm-front-page .hhm-home-product__identity .hhm-brand-mark {
		width: 82px;
		height: 27px;
		padding: 4px 6px;
	}
	body.hhm-front-page .hhm-home-product__identity > small { display: none; }
	body.hhm-front-page .hhm-home-product__brand-empty { height: 25px; }
	body.hhm-front-page .hhm-home-product__meta { align-items: flex-start; flex-direction: column; gap: 2px; font-size: .56rem; }
	body.hhm-front-page .hhm-home-product__meta small { max-width: 100%; font-size: .54rem; }
	body.hhm-front-page .hhm-home-product h3 {
		display: block;
		min-height: 47px;
		max-height: 47px;
		margin: 6px 0 10px;
		font-size: .72rem;
		line-height: 1.34;
		-webkit-line-clamp: initial;
	}
	body.hhm-front-page .hhm-variable-preview { display: none; }
	body.hhm-front-page .hhm-home-product__commerce { align-items: flex-start; flex-direction: column; gap: 3px; }
	body.hhm-front-page .hhm-home-product__price { font-size: .72rem; }
	body.hhm-front-page .hhm-home-product__price-current { font-size: .78rem; }
	body.hhm-front-page .hhm-home-product__availability { font-size: .51rem; }
	body.hhm-front-page .hhm-home-product__footer { grid-template-columns: 1fr; gap: 5px; margin-top: 9px; }
	body.hhm-front-page .hhm-home-product__action,
	body.hhm-front-page .hhm-product-whatsapp {
		width: 100%;
		min-height: 35px;
		padding: 7px 6px;
		font-size: .58rem;
	}
	body.hhm-front-page .hhm-home-product__action-label {
		position: static;
		width: auto;
		height: auto;
		overflow: visible;
		clip: auto;
	}
	body.hhm-front-page .hhm-product-whatsapp span { display: inline; }
	body.hhm-front-page .hhm-home-product--featured .hhm-home-product__media { min-height: 255px; }
	body.hhm-front-page .hhm-home-product--featured .hhm-home-product__media img { height: 225px; }
	body.hhm-front-page .hhm-home-product--featured .hhm-home-product__body { padding: 15px; }
	body.hhm-front-page .hhm-home-product--featured .hhm-home-product__footer { grid-template-columns: 1fr 1fr; }
	body.hhm-front-page .hhm-home-product--shelf .hhm-home-product__media { min-height: 165px; padding: 10px; }
	body.hhm-front-page .hhm-home-product--shelf .hhm-home-product__media img { height: 145px; }
	body.hhm-front-page .hhm-home-product--compact,
	body.hhm-front-page .hhm-home-product--horizontal {
		grid-template-columns: 104px minmax(0, 1fr);
		min-height: 190px;
	}
	body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) .hhm-home-product__media {
		min-height: 190px;
		padding: 8px;
	}
	body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) .hhm-home-product__media img { height: 165px; }
	body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) .hhm-home-product__identity { min-height: 24px; }
	body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) .hhm-home-product__footer { grid-template-columns: 1fr; }
	body.hhm-front-page :is(.hhm-home-product--compact, .hhm-home-product--horizontal) :is(.hhm-home-product__action, .hhm-product-whatsapp) {
		min-height: 30px;
		font-size: .51rem;
	}
	body.hhm-front-page #ht-ctc-chat {
		right: max(14px, env(safe-area-inset-right)) !important;
		bottom: max(14px, env(safe-area-inset-bottom)) !important;
	}
	body.hhm-front-page #ht-ctc-chat svg { width: 52px !important; height: 52px !important; }
}

@media (prefers-reduced-motion: reduce) {
	body.hhm-front-page .hhm-home-product,
	body.hhm-front-page .hhm-home-product__media img,
	body.hhm-front-page .hhm-home-product__media::after { transition: none; }
}
