/**
 * صفحه محصول تکی هانل
 */

.hanel-product {
	--hanel-p-ink: #151923;
	--hanel-p-muted: #6a7080;
	--hanel-p-soft: #8b90a0;
	--hanel-p-gold: #c5a059;
	--hanel-p-gold-hi: #e8c979;
	--hanel-p-line: rgba(21, 25, 35, 0.08);
	--hanel-p-surface: #ffffff;
	--hanel-p-tint: #faf8f5;
	--hanel-shop-ink: #151923;
	--hanel-shop-soft: #4a5061;
	--hanel-shop-muted: #8b90a0;
	--hanel-shop-gold: #c5a059;
	--hanel-shop-gold-hi: #e8c979;
	--hanel-shop-line: rgba(21, 25, 35, 0.08);
	--hanel-shop-line-soft: rgba(21, 25, 35, 0.05);
	--hanel-shop-surface: #ffffff;
	--hanel-shop-tint: #faf8f5;
	--hanel-shop-radius: 1.25rem;

	position: relative;
	padding-bottom: clamp(3rem, 8vw, 5.5rem);
	background: var(--hanel-p-surface);
	color: var(--hanel-p-ink);
}

.hanel-product-main {
	overflow-x: clip;
}

.hanel-product [hidden] {
	display: none !important;
}

.hanel-product__notices {
	padding-top: 0.75rem;
}

.hanel-product__notices .woocommerce-message,
.hanel-product__notices .woocommerce-info,
.hanel-product__notices .woocommerce-error {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.9rem;
	margin: 0.5rem 0 0;
	padding: 0.85rem 1rem;
	border: 1px solid var(--hanel-p-line);
	border-inline-start: 3px solid var(--hanel-p-gold);
	border-radius: 0.9rem;
	background: var(--hanel-p-tint);
	color: var(--hanel-p-ink);
	font-size: 0.9rem;
	line-height: 1.7;
	list-style: none;
}

.hanel-product__notices .woocommerce-message::before,
.hanel-product__notices .woocommerce-info::before,
.hanel-product__notices .woocommerce-error::before {
	content: none !important;
	display: none !important;
}

.hanel-product__notices .woocommerce-error {
	border-inline-start-color: #c0392b;
}

.hanel-product__notices .woocommerce-message {
	border-inline-start-color: #1f8a52;
}

.hanel-product__notices .button,
.hanel-product__notices .wc-forward {
	float: none !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	margin-inline-start: auto;
	padding: 0.4rem 1rem;
	border: 0;
	border-radius: 999px;
	background: var(--hanel-p-gold);
	color: #151923;
	font-size: 0.8rem;
	font-weight: 800;
	line-height: 1.3;
	text-decoration: none;
	white-space: nowrap;
}

.hanel-product__notices .button::before,
.hanel-product__notices .button::after {
	content: none !important;
	display: none !important;
}

.hanel-product__cart .stock {
	width: 100%;
	margin: 0;
	font-size: 0.86rem;
}

.hanel-product__cart .out-of-stock {
	color: #8a4a4a;
}

.hanel-product__crumbs {
	padding-block: 1rem 0.35rem;
}

.hanel-product__crumbs nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	color: var(--hanel-p-soft);
	font-size: 0.82rem;
}

.hanel-product__crumbs a {
	color: inherit;
	text-decoration: none;
}

.hanel-product__crumbs a:hover {
	color: var(--hanel-p-ink);
}

.hanel-product__crumbs span[aria-current] {
	color: var(--hanel-p-ink);
}

.hanel-product__crumbs .hanel-icon {
	width: 0.85rem;
	height: 0.85rem;
	opacity: 0.55;
}

.hanel-product__stage {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: start;
	padding-block: 1.25rem 2.75rem;
}

.hanel-product__gallery {
	position: sticky;
	top: calc(var(--hanel-header-h, 4.5rem) + 1rem);
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.75rem;
	min-width: 0;
}

.hanel-product__gallery:has(.hanel-product__thumbs) {
	grid-template-columns: 4.4rem minmax(0, 1fr);
	grid-template-areas: "thumbs main";
}

.hanel-product__gallery:has(.hanel-product__thumbs) .hanel-product__thumbs {
	grid-area: thumbs;
}

.hanel-product__gallery:has(.hanel-product__thumbs) .hanel-product__stage-media {
	grid-area: main;
}

.hanel-product__stage-media {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border-radius: 1.75rem;
	background: var(--hanel-p-tint);
	aspect-ratio: 1 / 1.08;
}

.hanel-product__zoom {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.hanel-product__zoom img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hanel-product__zoom:hover img {
	transform: scale(1.06);
}

.hanel-product__zoom-hint {
	position: absolute;
	inset-inline-start: 0.9rem;
	inset-block-end: 0.9rem;
	display: grid;
	place-items: center;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	color: var(--hanel-p-ink);
	box-shadow: 0 8px 18px rgba(21, 25, 35, 0.08);
	pointer-events: none;
}

.hanel-product__thumbs {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	max-height: min(46rem, calc(100dvh - var(--hanel-header-h, 4.5rem) - 3.5rem));
	overflow: auto;
	overscroll-behavior: contain;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.hanel-product__thumbs::-webkit-scrollbar {
	display: none;
}

.hanel-product__thumb {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid transparent;
	border-radius: 0.85rem;
	background: var(--hanel-p-tint);
	cursor: pointer;
}

.hanel-product__thumb.is-active {
	border-color: var(--hanel-p-gold);
}

.hanel-product__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hanel-product__lightbox {
	position: fixed;
	inset: 0;
	z-index: 400;
	display: grid;
	place-items: center;
	padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
	background: rgba(21, 25, 35, 0.88);
}

.hanel-product__lightbox[hidden] {
	display: none !important;
}

body.hanel-lightbox-open .hanel-header,
body.hanel-lightbox-open .hanel-product-bar,
body.hanel-lightbox-open .hanel-fab {
	visibility: hidden;
	pointer-events: none;
}

.hanel-product__lightbox img {
	max-width: min(92vw, 56rem);
	max-height: min(88dvh, 88vh);
	object-fit: contain;
	border-radius: 1rem;
}

.hanel-product__lightbox-close {
	position: absolute;
	inset-block-start: max(0.85rem, env(safe-area-inset-top));
	inset-inline-start: max(0.85rem, env(safe-area-inset-left));
	display: grid;
	place-items: center;
	width: 2.6rem;
	height: 2.6rem;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--hanel-p-ink);
	cursor: pointer;
}

html[dir="rtl"] .hanel-product__lightbox-close {
	inset-inline-start: max(0.85rem, env(safe-area-inset-right));
}

.hanel-product__buy {
	display: flex;
	flex-direction: column;
	container-name: hanel-buy;
	container-type: inline-size;
	gap: 1rem;
	min-width: 0;
	padding-top: 0.35rem;
}

.hanel-product__kicker {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.hanel-product__cat {
	color: var(--hanel-p-gold);
	font-size: 0.78rem;
	font-weight: 750;
	letter-spacing: 0.14em;
	text-decoration: none;
	text-transform: uppercase;
}

.hanel-product__badge {
	display: inline-flex;
	align-items: center;
	min-height: 1.6rem;
	padding: 0.15rem 0.6rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 750;
}

.hanel-product__badge--sale {
	background: var(--hanel-p-ink);
	color: #fff;
}

.hanel-product__badge--out {
	background: #ececec;
	color: #6a7080;
}

.hanel-product__title {
	margin: 0;
	font-size: clamp(1.7rem, 3.4vw, 2.45rem);
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: -0.03em;
}

.hanel-product__rating {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.hanel-product__reviews-link {
	color: var(--hanel-p-muted);
	font-size: 0.82rem;
	text-decoration: none;
}

.hanel-product__price {
	font-size: 1.45rem;
	font-weight: 800;
}

.hanel-product__price del {
	margin-inline-start: 0.45rem;
	color: var(--hanel-p-soft);
	font-size: 0.92rem;
	font-weight: 500;
}

.hanel-product__excerpt {
	color: var(--hanel-p-muted);
	font-size: 0.95rem;
	line-height: 1.85;
}

.hanel-product__excerpt p {
	margin: 0;
}

.hanel-product__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
	margin: 0.15rem 0 0;
	padding: 0;
	list-style: none;
}

.hanel-product__facts li:only-child {
	grid-column: 1 / -1;
}

.hanel-product__facts li {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.7rem 0.8rem;
	border: 1px solid var(--hanel-p-line);
	border-radius: 1rem;
	background: var(--hanel-p-tint);
}

.hanel-product__facts .hanel-icon {
	flex: none;
	width: 1.05rem;
	height: 1.05rem;
	color: var(--hanel-p-gold);
}

.hanel-product__facts small {
	display: block;
	color: var(--hanel-p-soft);
	font-size: 0.68rem;
}

.hanel-product__facts strong {
	display: block;
	font-size: 0.86rem;
	font-weight: 750;
}

.hanel-product__notes span {
	display: block;
	margin-bottom: 0.45rem;
	color: var(--hanel-p-soft);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.12em;
}

.hanel-product__notes div {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.hanel-product__notes em {
	padding: 0.32rem 0.7rem;
	border: 1px solid rgba(197, 160, 89, 0.35);
	border-radius: 999px;
	color: var(--hanel-p-gold);
	font-size: 0.78rem;
	font-style: normal;
	font-weight: 650;
}

.hanel-product__roast {
	display: grid;
	grid-template-columns: auto auto 1fr;
	align-items: center;
	gap: 0.55rem 0.75rem;
	width: 100%;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--hanel-p-line);
	border-radius: 1rem;
	background: var(--hanel-p-tint);
}

.hanel-product__roast > span {
	margin: 0;
	color: var(--hanel-p-soft);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	white-space: nowrap;
}

.hanel-product__roast ol {
	display: flex;
	flex: none;
	gap: 0.28rem;
	width: auto;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hanel-product__roast li {
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 50%;
	background: #ece7dc;
}

.hanel-product__roast li.is-on {
	background: var(--hanel-p-gold);
}

.hanel-product__roast strong {
	justify-self: end;
	margin: 0;
	font-size: 0.82rem;
	white-space: nowrap;
}

.hanel-product__cart form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem;
	margin: 0.35rem 0 0;
}

.hanel-product__cart .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.65rem;
	width: 100%;
	margin: 0;
}

.hanel-product__cart form.cart::before,
.hanel-product__cart form.cart::after {
	display: none !important;
	content: none !important;
}

.hanel-product__cart .variations,
.hanel-product__cart .single_variation_wrap,
.hanel-product__cart .group_table,
.hanel-product__cart .woocommerce-variation {
	flex: 1 0 100%;
	width: 100%;
}

.hanel-product__cart .quantity,
.woocommerce .hanel-product__cart form.cart div.quantity {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	align-self: center;
	float: none;
	width: auto;
	height: 3.05rem;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--hanel-p-line);
	border-radius: 999px;
	background: #fff;
}

.hanel-product__cart .qty,
.hanel-product__cart input.qty {
	width: 2.75rem;
	height: 3.05rem;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--hanel-p-ink);
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 700;
	text-align: center;
	appearance: textfield;
}

.hanel-product__cart .qty::-webkit-outer-spin-button,
.hanel-product__cart .qty::-webkit-inner-spin-button {
	margin: 0;
	appearance: none;
}

.hanel-product__qty-btn {
	display: grid;
	place-items: center;
	width: 2.55rem;
	height: 3.05rem;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--hanel-p-ink);
	font-size: 1.1rem;
	cursor: pointer;
}

.hanel-product__cart .single_add_to_cart_button,
.hanel-product__cart button.button,
.hanel-product__cart button.button.alt,
.woocommerce .hanel-product__cart .single_add_to_cart_button,
.woocommerce .hanel-product__cart button.button.alt,
.woocommerce-page .hanel-product__cart button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	align-self: center;
	float: none;
	width: auto;
	min-width: 0;
	height: 3.05rem;
	min-height: 3.05rem;
	max-height: 3.05rem;
	padding: 0 1.15rem;
	border: 0;
	border-radius: 999px;
	background: var(--hanel-p-ink);
	background-image: none;
	box-shadow: none;
	color: #fff;
	font-family: inherit;
	font-size: clamp(0.8rem, 2.4vw, 0.95rem);
	font-weight: 750;
	line-height: 1;
	text-align: center;
	text-shadow: none;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: transform 0.25s ease, background 0.25s ease;
}

.hanel-product__cart .single_add_to_cart_button:hover,
.hanel-product__cart button.button:hover,
.hanel-product__cart button.button.alt:hover,
.woocommerce .hanel-product__cart .single_add_to_cart_button:hover,
.woocommerce .hanel-product__cart button.button.alt:hover {
	background: #0e1218;
	background-image: none;
	box-shadow: none;
	color: #fff;
	transform: translateY(-1px);
}

.hanel-product__cart .single_add_to_cart_button::before,
.hanel-product__cart .single_add_to_cart_button::after,
.hanel-product__cart button.button::before,
.hanel-product__cart button.button::after {
	display: none;
}

.hanel-product__cart .single_add_to_cart_button.is-busy,
.hanel-product__cart .single_add_to_cart_button.disabled {
	opacity: 0.65;
	pointer-events: none;
}

.hanel-product__cart .variations {
	width: 100%;
	margin: 0 0 0.35rem;
	border: 0;
}

.hanel-product__cart .variations th,
.hanel-product__cart .variations td {
	padding: 0.25rem 0 0.55rem;
	border: 0;
	background: transparent;
	text-align: start;
	vertical-align: middle;
}

.hanel-product__cart .variations label {
	font-size: 0.8rem;
	font-weight: 700;
}

.hanel-product__cart .variations select {
	width: 100%;
	min-height: 2.7rem;
	padding: 0.4rem 0.8rem;
	border: 1px solid var(--hanel-p-line);
	border-radius: 0.85rem;
	background: #fff;
	font-family: inherit;
}

.hanel-product__cart .reset_variations {
	margin-inline-start: 0.5rem;
	color: var(--hanel-p-gold);
	font-size: 0.78rem;
	text-decoration: none;
}

.hanel-product__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem 0.85rem;
}

.hanel-product__ghost {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-height: 2.4rem;
	padding: 0.35rem 0.85rem;
	border: 1px solid var(--hanel-p-line);
	border-radius: 999px;
	background: #fff;
	color: var(--hanel-p-ink);
	font-family: inherit;
	font-size: 0.82rem;
	font-weight: 650;
	cursor: pointer;
}

.hanel-product__ghost.is-active {
	border-color: var(--hanel-p-gold);
	background: rgba(197, 160, 89, 0.1);
	color: var(--hanel-p-gold);
}

.hanel-product__sku {
	margin-inline-start: auto;
	color: var(--hanel-p-soft);
	font-size: 0.78rem;
}

.hanel-product__trust {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.55rem;
	margin: 0.35rem 0 0;
	padding: 1rem 0 0;
	border-top: 1px solid var(--hanel-p-line);
	list-style: none;
}

.hanel-product__trust li {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding: 0.85rem 0.85rem 0.95rem;
	border: 1px solid var(--hanel-p-line);
	border-radius: 1.15rem;
	background:
		radial-gradient(120% 80% at 100% 0%, rgba(232, 201, 121, 0.16), transparent 52%),
		var(--hanel-p-tint);
}

.hanel-product__trust-icon {
	display: grid;
	place-items: center;
	width: 2.15rem;
	height: 2.15rem;
	border-radius: 0.75rem;
	background: #fff;
	color: var(--hanel-p-gold);
	box-shadow: 0 8px 16px rgba(21, 25, 35, 0.05);
}

.hanel-product__trust strong {
	display: block;
	color: var(--hanel-p-ink);
	font-size: 0.86rem;
	font-weight: 800;
	line-height: 1.4;
}

.hanel-product__trust small {
	display: block;
	margin-top: 0.2rem;
	color: var(--hanel-p-muted);
	font-size: 0.74rem;
	line-height: 1.7;
}

.hanel-product__story {
	padding-block: 0.5rem 2.5rem;
}

.hanel-product__tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.35rem;
	margin-bottom: 1.6rem;
	padding: 0.28rem;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	border-radius: 999px;
	background: var(--hanel-p-tint);
	scrollbar-width: none;
}

.hanel-product__tabs::-webkit-scrollbar {
	display: none;
}

.hanel-product__tab {
	flex: 1 0 auto;
	min-height: 2.55rem;
	padding: 0.45rem 1.05rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--hanel-p-muted);
	font-family: inherit;
	font-size: 0.86rem;
	font-weight: 700;
	white-space: nowrap;
	scroll-snap-align: start;
	cursor: pointer;
}

.hanel-product__tab.is-active {
	background: var(--hanel-p-ink);
	color: #fff;
}

.hanel-product__panel {
	padding: 0.25rem 0 0;
}

.hanel-product__story-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
	gap: 1.75rem;
	align-items: start;
}

.hanel-product__prose {
	color: var(--hanel-p-muted);
	font-size: 1rem;
	line-height: 1.95;
}

.hanel-product__lead {
	margin: 0 0 1rem;
	color: var(--hanel-p-ink);
	font-size: 1.12rem;
	font-weight: 650;
	line-height: 1.85;
}

.hanel-product__prose > *:first-child {
	margin-top: 0;
}

.hanel-product__prose > *:last-child {
	margin-bottom: 0;
}

.hanel-product__prose p,
.hanel-product__prose ul,
.hanel-product__prose ol,
.hanel-product__prose blockquote,
.hanel-product__prose table,
.hanel-product__prose figure,
.hanel-product__prose pre {
	margin: 0 0 1.05rem;
}

.hanel-product__prose h1,
.hanel-product__prose h2,
.hanel-product__prose h3,
.hanel-product__prose h4,
.hanel-product__prose h5,
.hanel-product__prose h6 {
	margin: 1.35rem 0 0.55rem;
	color: var(--hanel-p-ink);
	font-weight: 800;
	line-height: 1.4;
}

.hanel-product__prose h2 {
	font-size: 1.35rem;
}

.hanel-product__prose h3 {
	font-size: 1.15rem;
}

.hanel-product__prose h4,
.hanel-product__prose h5,
.hanel-product__prose h6 {
	font-size: 1rem;
}

.hanel-product__prose a {
	color: var(--hanel-p-gold);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.hanel-product__prose strong,
.hanel-product__prose b {
	color: var(--hanel-p-ink);
	font-weight: 750;
}

.hanel-product__prose ul,
.hanel-product__prose ol {
	padding-inline-start: 1.25rem;
	list-style: revert;
}

.hanel-product__prose ul {
	list-style-type: disc;
}

.hanel-product__prose ol {
	list-style-type: decimal;
}

.hanel-product__prose li {
	margin: 0 0 0.35rem;
	padding: 0;
}

.hanel-product__prose li::marker {
	color: var(--hanel-p-gold);
}

.hanel-product__prose blockquote {
	padding: 0.85rem 1rem;
	border-inline-start: 3px solid var(--hanel-p-gold);
	border-radius: 0 0.9rem 0.9rem 0;
	background: var(--hanel-p-tint);
	color: var(--hanel-p-ink);
}

.hanel-product__prose img,
.hanel-product__prose figure {
	max-width: 100%;
	border-radius: 1rem;
}

.hanel-product__prose figcaption {
	margin-top: 0.4rem;
	color: var(--hanel-p-soft);
	font-size: 0.82rem;
}

.hanel-product__prose table {
	width: 100%;
}

.hanel-product__prose th,
.hanel-product__prose td {
	padding: 0.65rem 0.75rem;
	border-bottom: 1px solid var(--hanel-p-line);
	text-align: start;
}

.hanel-product__prose hr {
	margin: 1.4rem 0;
	border: 0;
	border-top: 1px solid var(--hanel-p-line);
}

.hanel-product__prose .wp-block-heading,
.hanel-product__prose .wp-block-list,
.hanel-product__prose .wp-block-quote,
.hanel-product__prose .wp-block-image,
.hanel-product__prose .wp-block-table {
	margin: 0 0 1.05rem;
}

.hanel-product__passport {
	display: grid;
	gap: 0.65rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hanel-product__passport li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.85rem 1rem;
	border: 1px solid var(--hanel-p-line);
	border-radius: 1.1rem;
	background: var(--hanel-p-tint);
}

.hanel-product__passport .hanel-icon {
	width: 1.2rem;
	height: 1.2rem;
	color: var(--hanel-p-gold);
}

.hanel-product__passport small {
	display: block;
	color: var(--hanel-p-soft);
	font-size: 0.7rem;
}

.hanel-product__passport strong {
	font-size: 0.92rem;
}

.hanel-product__brew {
	padding: 1.45rem 1.5rem 1.6rem;
	border: 1px solid var(--hanel-p-line);
	border-radius: 1.7rem;
	background:
		radial-gradient(90% 70% at 100% 0%, rgba(232, 201, 121, 0.2), transparent 48%),
		var(--hanel-p-tint);
	box-shadow: inset 0 0 0 1px rgba(197, 160, 89, 0.12);
}

.hanel-product__brew-head {
	display: grid;
	gap: 1.15rem;
	margin-bottom: 1.35rem;
}

.hanel-product__brew-intro {
	margin: 0;
}

.hanel-product__brew-intro .hanel-product__eyebrow {
	margin-bottom: 0.45rem;
}

.hanel-product__brew-intro h2 {
	margin: 0 0 0.45rem;
	font-size: 1.55rem;
}

.hanel-product__brew-intro p {
	max-width: 38rem;
	margin: 0;
	color: var(--hanel-p-muted);
	line-height: 1.85;
}

.hanel-product__brew-nav {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.5rem;
	margin: 0;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.hanel-product__brew-nav::-webkit-scrollbar {
	display: none;
}

.hanel-product__brew-btn {
	display: inline-flex;
	flex: 0 0 auto;
	scroll-snap-align: start;
	align-items: center;
	gap: 0.5rem;
	min-height: 2.7rem;
	padding-block: 0.3rem;
	padding-inline-start: 0.35rem;
	padding-inline-end: 0.95rem;
	border: 1px solid var(--hanel-p-line);
	border-radius: 999px;
	background: #fff;
	color: var(--hanel-p-ink);
	font-family: inherit;
	font-size: 0.86rem;
	font-weight: 750;
	cursor: pointer;
}

.hanel-product__brew-btn-icon {
	display: grid;
	place-items: center;
	width: 1.85rem;
	height: 1.85rem;
	border-radius: 50%;
	background: var(--hanel-p-tint);
	color: var(--hanel-p-gold);
}

.hanel-product__brew-btn.is-active {
	border-color: var(--hanel-p-ink);
	background: var(--hanel-p-ink);
	color: #fff;
	box-shadow: 0 10px 22px rgba(21, 25, 35, 0.14);
}

.hanel-product__brew-btn.is-active .hanel-product__brew-btn-icon {
	background: rgba(232, 201, 121, 0.18);
	color: var(--hanel-p-gold-hi);
}

.hanel-product__brew-card {
	display: grid;
	gap: 1rem;
}

.hanel-product__brew-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
}

.hanel-product__brew-meta strong {
	margin-inline-end: 0.25rem;
	font-size: 1.05rem;
}

.hanel-product__brew-meta span {
	display: inline-flex;
	min-height: 1.85rem;
	padding: 0.2rem 0.7rem;
	border: 1px solid rgba(197, 160, 89, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.75);
	color: var(--hanel-p-ink);
	font-size: 0.78rem;
	font-weight: 700;
}

.hanel-product__brew-tiles {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.7rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hanel-product__brew-tiles li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	padding: 1.05rem 0.7rem 1.1rem;
	border: 1px solid var(--hanel-p-line);
	border-radius: 1.2rem;
	background: #fff;
	text-align: center;
}

.hanel-product__brew-tiles .hanel-icon {
	width: 1.2rem;
	height: 1.2rem;
	margin-bottom: 0.3rem;
	color: var(--hanel-p-gold);
}

.hanel-product__brew-tiles small {
	color: var(--hanel-p-soft);
	font-size: 0.72rem;
}

.hanel-product__brew-tiles strong {
	font-size: 1.28rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.hanel-product__brew-steps {
	margin: 0;
	padding: 0.35rem 1.1rem 0.45rem;
	list-style: none;
	border: 1px solid var(--hanel-p-line);
	border-radius: 1.25rem;
	background: #fff;
	counter-reset: brew;
}

.hanel-product__brew-steps li {
	position: relative;
	padding-block: 0.95rem;
	padding-inline-start: 3.15rem;
	border-top: 1px solid var(--hanel-p-line);
	color: var(--hanel-p-muted);
	line-height: 1.85;
	counter-increment: brew;
}

.hanel-product__brew-steps li:first-child {
	border-top: 0;
}

.hanel-product__brew-steps li::before {
	content: counter(brew, decimal-leading-zero);
	position: absolute;
	top: 1rem;
	inset-inline-start: 0;
	display: grid;
	place-items: center;
	width: 2.15rem;
	height: 2.15rem;
	border-radius: 50%;
	background: var(--hanel-p-tint);
	color: var(--hanel-p-gold);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
}

.hanel-product__profile {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 2rem;
	align-items: start;
}

.hanel-product__profile-copy h2 {
	margin: 0 0 0.65rem;
	font-size: 1.55rem;
}

.hanel-product__profile-copy p {
	margin: 0 0 1.1rem;
	color: var(--hanel-p-muted);
	line-height: 1.85;
}

.hanel-product__notes--block {
	margin-top: 0.4rem;
}

.hanel-product__bars {
	display: grid;
	gap: 0.95rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hanel-product__bars li > div {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.35rem;
	font-size: 0.86rem;
}

.hanel-product__bars span {
	color: var(--hanel-p-soft);
	font-variant-numeric: tabular-nums;
}

.hanel-product__bar {
	display: block;
	height: 0.42rem;
	overflow: hidden;
	border-radius: 999px;
	background: #efe8dc;
}

.hanel-product__bar > span {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--hanel-p-gold), var(--hanel-p-gold-hi));
	transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hanel-product__panel.is-active .hanel-product__bar > span {
	width: var(--hanel-bar, 0%);
}

.hanel-product__table {
	width: 100%;
	border-collapse: collapse;
}

.hanel-product__table th,
.hanel-product__table td {
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--hanel-p-line);
	text-align: start;
}

.hanel-product__table th {
	width: 34%;
	color: var(--hanel-p-soft);
	font-weight: 600;
}

.hanel-reviews {
	display: grid;
	gap: 1.35rem;
}

.hanel-reviews__head {
	display: grid;
	gap: 0.35rem;
}

.hanel-product .woocommerce-Reviews,
.hanel-product #reviews,
.hanel-product #comments,
.hanel-product #review_form_wrapper,
.hanel-product #review_form,
.hanel-product #respond,
.hanel-product .comment-form,
.hanel-review-form {
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
	margin-inline: 0 !important;
	color: var(--hanel-p-muted) !important;
}

.hanel-product .woocommerce-Reviews-title,
.hanel-product #reply-title,
.hanel-product .comment-reply-title,
.hanel-review-form__title {
	display: block !important;
	margin: 0 !important;
	color: var(--hanel-p-ink) !important;
	font-size: 1.45rem !important;
	font-weight: 800 !important;
	line-height: 1.45 !important;
}

.hanel-product .woocommerce-noreviews,
.hanel-review-form__notes,
.hanel-product .comment-notes {
	margin: 0.35rem 0 0 !important;
	color: var(--hanel-p-muted) !important;
	font-size: 0.92rem !important;
	line-height: 1.8 !important;
}

.hanel-product .commentlist,
.hanel-product .comment-list {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.hanel-product .comment,
.hanel-product .review {
	margin: 0 0 1rem !important;
	padding: 1rem 0 !important;
	border-bottom: 1px solid var(--hanel-p-line) !important;
}

.hanel-product .comment-text p,
.hanel-product .description p {
	margin: 0.35rem 0 0 !important;
	line-height: 1.8 !important;
}

.hanel-product .meta,
.hanel-product .woocommerce-review__author {
	color: var(--hanel-p-ink) !important;
	font-weight: 700 !important;
}

.hanel-product .star-rating {
	position: relative !important;
	display: inline-block !important;
	overflow: hidden !important;
	width: 5.4em !important;
	height: 1em !important;
	font-size: 0.92rem !important;
	line-height: 1 !important;
}

.hanel-product .star-rating::before {
	content: "★★★★★" !important;
	color: #e8e0d4 !important;
	letter-spacing: 0.06em !important;
}

.hanel-product .star-rating span {
	position: absolute !important;
	top: 0 !important;
	right: 0 !important;
	overflow: hidden !important;
	height: 100% !important;
	white-space: nowrap !important;
}

.hanel-product .star-rating span::before {
	content: "★★★★★" !important;
	color: var(--hanel-p-gold) !important;
	letter-spacing: 0.06em !important;
}

.woocommerce #reviews #review_form_wrapper,
.hanel-product #review_form_wrapper,
.hanel-product-page #review_form_wrapper,
.hanel-review-form {
	position: relative !important;
	display: block !important;
	margin-top: 0 !important;
	padding: 1.4rem 1.45rem 1.55rem !important;
	overflow: hidden !important;
	border: 1px solid var(--hanel-p-line) !important;
	border-radius: 1.5rem !important;
	background:
		radial-gradient(90% 70% at 100% 0%, rgba(232, 201, 121, 0.16), transparent 48%),
		var(--hanel-p-tint) !important;
	box-shadow: inset 0 0 0 1px rgba(197, 160, 89, 0.1) !important;
}

.hanel-review-form__form,
.hanel-product #review_form_wrapper .comment-form {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 0.95rem 1rem !important;
}

.hanel-product #review_form_wrapper .comment-reply-title,
.hanel-product #review_form_wrapper .comment-notes,
.hanel-product #review_form_wrapper .comment-form-rating,
.hanel-product #review_form_wrapper .comment-form-comment,
.hanel-product #review_form_wrapper .comment-form-cookies-consent,
.hanel-product #review_form_wrapper .form-submit,
.hanel-product #review_form_wrapper .must-log-in {
	grid-column: 1 / -1 !important;
}

.hanel-product #review_form_wrapper p,
.hanel-product #review_form_wrapper .comment-form-rating,
.hanel-product #review_form_wrapper .hanel-review-form__field {
	display: block !important;
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.hanel-product #review_form_wrapper label,
.hanel-review-form__label {
	display: block !important;
	width: 100% !important;
	margin: 0 0 0.4rem !important;
	color: var(--hanel-p-ink) !important;
	font-size: 0.86rem !important;
	font-weight: 750 !important;
	text-align: start !important;
}

.hanel-product #review_form_wrapper .required {
	color: #c45c5c !important;
}

.hanel-product #review_form_wrapper input[type="text"],
.hanel-product #review_form_wrapper input[type="email"],
.hanel-product #review_form_wrapper textarea,
.hanel-review-form input[type="text"],
.hanel-review-form input[type="email"],
.hanel-review-form textarea {
	display: block !important;
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0.8rem 1rem !important;
	border: 1px solid var(--hanel-p-line) !important;
	border-radius: 0.95rem !important;
	background: #fff !important;
	color: var(--hanel-p-ink) !important;
	font-family: inherit !important;
	font-size: 0.95rem !important;
	line-height: 1.65 !important;
	box-shadow: none !important;
	outline: none !important;
}

.hanel-product #review_form_wrapper input[type="text"]:focus,
.hanel-product #review_form_wrapper input[type="email"]:focus,
.hanel-product #review_form_wrapper textarea:focus {
	border-color: var(--hanel-p-gold) !important;
	box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.14) !important;
}

.hanel-product #review_form_wrapper textarea,
.hanel-product #review_form_wrapper #comment {
	min-height: 8.5rem !important;
	height: auto !important;
	resize: vertical !important;
}

.hanel-product #rating,
.hanel-product #review_form_wrapper #rating,
.hanel-product .hanel-review-form__rating-select,
.hanel-product #review_form_wrapper p.stars,
.woocommerce #review_form #respond p.stars {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.hanel-review-form__rating,
.hanel-product #review_form_wrapper .comment-form-rating {
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	gap: 0.45rem !important;
}

.hanel-review-form__stars {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	gap: 0.4rem !important;
}

.hanel-review-form__star {
	display: grid !important;
	place-items: center !important;
	width: 2.2rem !important;
	height: 2.2rem !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid var(--hanel-p-line) !important;
	border-radius: 0.75rem !important;
	background: #fff !important;
	color: #d8cfc1 !important;
	font-size: 1.15rem !important;
	line-height: 1 !important;
	cursor: pointer !important;
	transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease !important;
}

.hanel-review-form__star.is-on,
.hanel-review-form__stars:hover .hanel-review-form__star {
	color: var(--hanel-p-gold) !important;
	border-color: rgba(197, 160, 89, 0.5) !important;
	background: #fffdf8 !important;
	transform: translateY(-1px) !important;
}

.hanel-review-form__stars:hover .hanel-review-form__star:hover ~ .hanel-review-form__star {
	color: #d8cfc1 !important;
	border-color: var(--hanel-p-line) !important;
	background: #fff !important;
	transform: none !important;
}

.hanel-review-form__stars.is-invalid .hanel-review-form__star {
	border-color: #c45c5c !important;
}

.hanel-product #review_form_wrapper .comment-form-cookies-consent {
	display: flex !important;
	flex-direction: row !important;
	align-items: flex-start !important;
	gap: 0.55rem !important;
}

.hanel-product #review_form_wrapper .comment-form-cookies-consent input {
	flex: none !important;
	width: 1.05rem !important;
	height: 1.05rem !important;
	margin-top: 0.2rem !important;
	accent-color: var(--hanel-p-gold) !important;
}

.hanel-product #review_form_wrapper .comment-form-cookies-consent label {
	margin: 0 !important;
	color: var(--hanel-p-muted) !important;
	font-size: 0.82rem !important;
	font-weight: 500 !important;
	line-height: 1.7 !important;
}

.hanel-product #review_form_wrapper .form-submit {
	margin-top: 0.2rem !important;
}

.hanel-product #review_form_wrapper input[type="submit"],
.hanel-product #review_form_wrapper #respond input#submit,
.woocommerce #respond input#submit.hanel-review-form__submit,
.hanel-review-form__submit {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	float: none !important;
	width: auto !important;
	min-height: 3rem !important;
	padding: 0.75rem 1.7rem !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--hanel-p-ink) !important;
	background-image: none !important;
	box-shadow: none !important;
	color: #fff !important;
	font-family: inherit !important;
	font-size: 0.92rem !important;
	font-weight: 750 !important;
	line-height: 1.2 !important;
	text-shadow: none !important;
	cursor: pointer !important;
}

.hanel-product #review_form_wrapper input[type="submit"]:hover,
.hanel-review-form__submit:hover {
	background: #0e1218 !important;
	color: #fff !important;
}

.hanel-product__ritual {
	padding-block: 0 2.4rem;
}

.hanel-product__ritual-card {
	display: grid;
	gap: 1.15rem;
	padding: 1.35rem 1.45rem 1.5rem;
	border: 1px solid var(--hanel-p-line);
	border-radius: 1.6rem;
	background:
		radial-gradient(120% 80% at 100% 0%, rgba(232, 201, 121, 0.2), transparent 46%),
		var(--hanel-p-tint);
	box-shadow: inset 0 0 0 1px rgba(197, 160, 89, 0.12);
}

.hanel-product__ritual-notes div {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 0.7rem;
}

.hanel-product__ritual-notes em {
	display: inline-flex;
	min-height: 2.15rem;
	padding: 0.35rem 0.9rem;
	border: 1px solid rgba(197, 160, 89, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--hanel-p-ink);
	font-size: 0.86rem;
	font-style: normal;
	font-weight: 700;
}

.hanel-product__ritual-chips {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.7rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hanel-product__ritual-chips li {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.8rem 0.9rem;
	border: 1px solid var(--hanel-p-line);
	border-radius: 1.05rem;
	background: #fff;
}

.hanel-product__ritual-chips .hanel-icon,
.hanel-product__ritual-methods .hanel-icon {
	color: var(--hanel-p-gold);
}

.hanel-product__ritual-chips small {
	display: block;
	color: var(--hanel-p-soft);
	font-size: 0.68rem;
}

.hanel-product__ritual-chips strong {
	font-size: 0.9rem;
}

.hanel-product__ritual-methods small {
	display: block;
	margin-bottom: 0.55rem;
	color: var(--hanel-p-soft);
	font-size: 0.72rem;
	font-weight: 700;
}

.hanel-product__ritual-methods div {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.hanel-product__ritual-methods span {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	min-height: 2.15rem;
	padding: 0.3rem 0.85rem;
	border-radius: 999px;
	background: var(--hanel-p-ink);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
}

.hanel-product__guide {
	padding-block: 0.5rem 2.75rem;
}

.hanel-product__pairings {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
}

.hanel-product__pairings li {
	padding: 1.15rem 1.15rem 1.25rem;
	border: 1px solid var(--hanel-p-line);
	border-radius: 1.35rem;
	background: var(--hanel-p-tint);
}

.hanel-product__pairings-icon {
	display: grid;
	place-items: center;
	width: 2.4rem;
	height: 2.4rem;
	margin-bottom: 0.85rem;
	border-radius: 0.85rem;
	background: #fff;
	color: var(--hanel-p-gold);
	box-shadow: 0 8px 18px rgba(21, 25, 35, 0.05);
}

.hanel-product__pairings strong {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 1rem;
}

.hanel-product__pairings p {
	margin: 0;
	color: var(--hanel-p-muted);
	font-size: 0.9rem;
	line-height: 1.8;
}

.hanel-product__faq {
	display: grid;
	gap: 0.65rem;
}

.hanel-product__faq details {
	padding: 0.2rem 1.15rem;
	border: 1px solid var(--hanel-p-line);
	border-radius: 1.15rem;
	background: #fff;
}

.hanel-product__faq summary {
	padding-block: 0.95rem;
	color: var(--hanel-p-ink);
	font-weight: 750;
	cursor: pointer;
	list-style: none;
}

.hanel-product__faq summary::-webkit-details-marker {
	display: none;
}

.hanel-product__faq details[open] summary {
	border-bottom: 1px solid var(--hanel-p-line);
}

.hanel-product__faq p {
	margin: 0;
	padding-block: 0.85rem 1rem;
	color: var(--hanel-p-muted);
	line-height: 1.85;
}

.hanel-product__related {
	padding-top: 1rem;
}

.hanel-product__related-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.hanel-product__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	color: var(--hanel-p-gold);
	font-size: 0.74rem;
	font-weight: 750;
	letter-spacing: 0.22em;
}

.hanel-product__eyebrow-line {
	width: 1.8rem;
	height: 1px;
	background: var(--hanel-p-gold);
}

.hanel-product__related-head h2 {
	margin: 0;
	font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.hanel-product__related-grid {
	--hanel-shop-columns: 4;
	list-style: none;
	grid-template-columns: repeat(var(--hanel-shop-columns, 4), minmax(0, 1fr));
}

.hanel-product__related .hanel-shop-card__tools {
	display: none;
}

.hanel-product__toast {
	position: fixed;
	inset-inline-start: 50%;
	inset-block-end: calc(6.25rem + env(safe-area-inset-bottom, 0px));
	z-index: 70;
	max-width: min(92vw, 24rem);
	padding: 0.7rem 1.1rem;
	border-radius: 999px;
	background: var(--hanel-p-ink);
	color: #fff;
	font-size: 0.86rem;
	text-align: center;
	transform: translateX(-50%);
	box-shadow: 0 12px 28px rgba(21, 25, 35, 0.22);
}

.hanel-product__toast.is-error {
	background: #7a2e2e;
}

.hanel-product-bar {
	--hanel-bar-fab-slot: 4.7rem;

	position: fixed;
	inset-inline: 0.7rem;
	inset-block-end: max(0.7rem, env(safe-area-inset-bottom));
	z-index: 60;
	padding: 0;
	background: transparent;
	color: var(--hanel-p-ink);
	box-shadow: none;
	pointer-events: none;
	animation: hanel-product-bar-in 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.hanel-product-bar[hidden] {
	display: none !important;
}

body:has(.hanel-fab:not([hidden])) .hanel-product-bar {
	inset-inline-start: max(0.7rem, calc(var(--hanel-bar-fab-slot) + env(safe-area-inset-left, 0px)));
}

[dir="rtl"] body:has(.hanel-fab:not([hidden])) .hanel-product-bar {
	inset-inline-start: max(0.7rem, calc(var(--hanel-bar-fab-slot) + env(safe-area-inset-right, 0px)));
}

@keyframes hanel-product-bar-in {
	from {
		opacity: 0;
		transform: translateY(0.9rem);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.hanel-product-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.65rem;
	min-height: 3.35rem;
	padding-block: 0.4rem;
	padding-inline: 0.55rem 0.4rem;
	overflow: hidden;
	border: 1px solid rgba(21, 25, 35, 0.08);
	border-radius: 1.25rem;
	background: rgba(255, 252, 248, 0.92);
	box-shadow: 0 14px 36px rgba(21, 25, 35, 0.14);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	pointer-events: auto;
}

.hanel-product-bar__info {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	min-width: 0;
}

.hanel-product-bar__info img {
	flex: none;
	width: 2.45rem;
	height: 2.45rem;
	object-fit: cover;
	border-radius: 0.75rem;
}

.hanel-product-bar__copy {
	min-width: 0;
}

.hanel-product-bar__copy strong,
.hanel-product-bar__price,
.hanel-product-bar__price .amount,
.hanel-product-bar__price .woocommerce-Price-amount {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hanel-product-bar__copy strong {
	max-width: 100%;
	color: var(--hanel-p-ink);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.3;
}

.hanel-product-bar__price,
.hanel-product-bar__price .amount,
.hanel-product-bar__price ins,
.hanel-product-bar__price bdi,
.hanel-product-bar__price .woocommerce-Price-amount {
	display: inline;
	color: #151923;
	font-size: 0.74rem;
	font-weight: 750;
	text-decoration: none;
	background: transparent;
}

.hanel-product-bar__price del,
.hanel-product-bar__price del * {
	margin-inline-start: 0.3rem;
	color: #8b90a0;
	font-size: 0.68rem;
	font-weight: 500;
	background: transparent;
}

button.hanel-product-bar__buy {
	display: inline-flex !important;
	flex: none !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0.35rem !important;
	width: auto !important;
	min-width: 5.5rem;
	height: 2.6rem !important;
	min-height: 2.6rem !important;
	max-height: 2.6rem !important;
	margin: 0 !important;
	padding: 0 0.95rem !important;
	overflow: visible !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #151923 !important;
	background-color: #151923 !important;
	background-image: none !important;
	box-shadow: none !important;
	color: #fff !important;
	font-family: inherit !important;
	font-size: 0.82rem !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	text-shadow: none !important;
	white-space: nowrap !important;
	cursor: pointer !important;
	appearance: none !important;
	-webkit-appearance: none !important;
}

button.hanel-product-bar__buy span {
	display: inline !important;
	color: #fff !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	line-height: 1 !important;
}

button.hanel-product-bar__buy .hanel-icon,
button.hanel-product-bar__buy svg {
	display: block !important;
	width: 1rem !important;
	height: 1rem !important;
	color: #fff !important;
	stroke: #fff !important;
	fill: none !important;
}

button.hanel-product-bar__buy:hover,
button.hanel-product-bar__buy:focus-visible {
	background: #0e1218 !important;
	background-color: #0e1218 !important;
	color: #fff !important;
}

button.hanel-product-bar__buy:disabled {
	background: #ececec !important;
	background-color: #ececec !important;
	color: #8b90a0 !important;
	cursor: not-allowed !important;
}

body:has(.hanel-fab.is-open) .hanel-product-bar {
	opacity: 0;
	pointer-events: none;
	transform: translateY(0.55rem);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (min-width: 1281px) {
	.hanel-product__stage {
		gap: clamp(2rem, 4.5vw, 4rem);
	}

	.hanel-product__related-grid {
		--hanel-shop-columns: 4;
	}
}

@media (max-width: 1280px) {
	.hanel-product .hanel-product__related-grid {
		--hanel-shop-columns: 3;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1100px) {
	.hanel-product__gallery {
		top: calc(var(--hanel-header-h, 4.5rem) + 0.65rem);
	}

	.hanel-product__pairings {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hanel-product__brew-tiles {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.hanel-product {
		padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
	}

	.hanel-product__stage {
		grid-template-columns: 1fr;
		gap: 1.35rem;
		padding-block: 1rem 2.1rem;
	}

	.hanel-product__gallery,
	.hanel-product__gallery:has(.hanel-product__thumbs) {
		position: static;
		grid-template-columns: 1fr;
		grid-template-areas: "main" "thumbs";
	}

	.hanel-product__gallery:has(.hanel-product__thumbs) .hanel-product__thumbs {
		grid-area: thumbs;
	}

	.hanel-product__gallery:has(.hanel-product__thumbs) .hanel-product__stage-media {
		grid-area: main;
	}

	.hanel-product__thumbs {
		flex-direction: row;
		max-height: none;
		overflow-x: auto;
		overflow-y: hidden;
		padding-block-end: 0.2rem;
		scroll-snap-type: x mandatory;
		scroll-padding-inline: 0.15rem;
	}

	.hanel-product__thumb {
		width: 4.2rem;
		flex: 0 0 4.2rem;
		scroll-snap-align: start;
	}

	.hanel-product__story-grid,
	.hanel-product__profile {
		grid-template-columns: 1fr;
	}

	.hanel-product__ritual-chips,
	.hanel-product__pairings,
	.hanel-product__facts,
	.hanel-product__brew-tiles {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hanel-product .hanel-product__related-grid,
	.hanel-product .hanel-product__related-grid.hanel-shop__grid {
		--hanel-shop-columns: 2;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hanel-product__tabs {
		border-radius: 1.15rem;
	}

	.hanel-product__tab {
		flex: 0 0 auto;
	}

	.hanel-product__lightbox img {
		max-width: 100%;
		max-height: min(78dvh, 78vh);
	}
}

@media (max-width: 980px) and (min-width: 640px) and (orientation: landscape) {
	.hanel-product__stage {
		grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
		gap: 1.2rem;
		padding-block: 0.75rem 1.6rem;
	}

	.hanel-product__gallery,
	.hanel-product__gallery:has(.hanel-product__thumbs) {
		position: static;
		grid-template-columns: 3.85rem minmax(0, 1fr);
		grid-template-areas: "thumbs main";
	}

	.hanel-product__thumbs {
		flex-direction: column;
		max-height: min(28rem, 78vh);
		overflow-x: hidden;
		overflow-y: auto;
		scroll-snap-type: y proximity;
	}

	.hanel-product__thumb {
		width: 100%;
		flex: none;
	}

	.hanel-product__stage-media {
		aspect-ratio: 1 / 1;
		max-height: 78vh;
	}
}

@media (max-width: 760px) {
	.hanel-product__stage-media {
		border-radius: 1.25rem;
		aspect-ratio: 1 / 1;
	}

	.hanel-product__ritual-card,
	.hanel-product #review_form_wrapper,
	.hanel-review-form {
		padding-inline: 1.05rem !important;
		border-radius: 1.25rem !important;
	}

	.hanel-product__pairings,
	.hanel-review-form__form,
	.hanel-product #review_form_wrapper .comment-form,
	.hanel-product__trust {
		grid-template-columns: 1fr !important;
	}

	.hanel-product__trust li {
		flex-direction: row;
		align-items: flex-start;
	}

	.hanel-product__sku {
		margin-inline-start: 0;
		width: 100%;
	}

	.hanel-product__buy {
		gap: 0.8rem;
	}

	.hanel-product__roast {
		grid-template-columns: 1fr auto;
		grid-template-areas:
			"label value"
			"dots dots";
	}

	.hanel-product__roast > span {
		grid-area: label;
	}

	.hanel-product__roast ol {
		grid-area: dots;
	}

	.hanel-product__roast strong {
		grid-area: value;
		justify-self: start;
	}

	.hanel-product__cart form.cart,
	.hanel-product__cart .woocommerce-variation-add-to-cart {
		flex-wrap: nowrap;
		align-items: center;
	}

	.hanel-product__cart .quantity,
	.woocommerce .hanel-product__cart form.cart div.quantity {
		height: 3.05rem;
	}

	.hanel-product__cart .single_add_to_cart_button,
	.hanel-product__cart button.button,
	.woocommerce .hanel-product__cart .single_add_to_cart_button {
		flex: 1 1 auto;
		width: auto;
		height: 3.05rem;
		min-height: 3.05rem;
		max-height: 3.05rem;
		padding-block: 0;
	}

	.hanel-product__brew-intro h2,
	.hanel-product__profile-copy h2 {
		font-size: clamp(1.28rem, 5vw, 1.55rem);
	}

	.hanel-product-bar {
		--hanel-bar-fab-slot: 4.45rem;
	}

	.hanel-product-bar__inner {
		gap: 0.65rem;
	}
}

@media (max-width: 480px) {
	.hanel-product__crumbs {
		padding-block: 0.75rem 0.2rem;
	}

	.hanel-product__crumbs nav {
		font-size: 0.76rem;
	}

	.hanel-product__thumb {
		width: 3.65rem;
		flex-basis: 3.65rem;
		border-radius: 0.7rem;
	}

	.hanel-product__ritual-chips li,
	.hanel-product__facts li {
		padding-inline: 0.7rem;
	}

	.hanel-product-bar {
		--hanel-bar-fab-slot: 4.15rem;
		inset-inline: 0.55rem;
		inset-block-end: max(0.65rem, env(safe-area-inset-bottom));
	}

	.hanel-product-bar__info img {
		width: 2.2rem;
		height: 2.2rem;
		border-radius: 0.65rem;
	}

	.hanel-product-bar__copy strong {
		font-size: 0.74rem;
	}

	.hanel-product__lightbox-close {
		width: 2.75rem;
		height: 2.75rem;
	}
}

@media (max-width: 360px) {
	.hanel-product__title {
		font-size: clamp(1.4rem, 7vw, 1.7rem);
	}

	.hanel-product__price {
		font-size: 1.28rem;
	}

	.hanel-product__ritual-chips {
		gap: 0.5rem;
	}

	.hanel-product-bar__info img {
		display: none;
	}
}

@media (max-height: 500px) and (orientation: landscape) {
	.hanel-product__gallery {
		position: static;
	}

	.hanel-product__stage-media {
		aspect-ratio: 1 / 0.82;
		max-height: 86vh;
	}

	.hanel-product__lightbox img {
		max-height: 86vh;
	}
}

@media (hover: none) and (pointer: coarse) {
	.hanel-product__tab,
	.hanel-product__brew-btn,
	.hanel-product__thumb,
	.hanel-product__ghost,
	.hanel-product__lightbox-close,
	.hanel-product__faq summary {
		min-height: 2.75rem;
	}

	.hanel-product__zoom:hover img {
		transform: none;
	}

	.hanel-product__tab,
	.hanel-product__brew-btn,
	.hanel-product__thumb,
	.hanel-product__cart .single_add_to_cart_button,
	.hanel-product-bar__buy {
		touch-action: manipulation;
	}
}

@media (min-width: 981px) {
	.hanel-product-bar {
		display: none !important;
	}

	.hanel-product__toast {
		inset-block-end: 1.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hanel-product__zoom img,
	.hanel-product__bar > span,
	.hanel-product__cart .single_add_to_cart_button,
	.hanel-product__thumb img,
	.hanel-product__tab,
	.hanel-product__brew-btn {
		transition: none !important;
		scroll-behavior: auto;
	}

	.hanel-product-bar {
		animation: none;
	}

	.hanel-product__zoom:hover img {
		transform: none;
	}
}

@media print {
	.hanel-product-bar,
	.hanel-product__toast,
	.hanel-product__lightbox,
	.hanel-product__zoom-hint,
	.hanel-fab {
		display: none !important;
	}

	.hanel-product {
		padding-bottom: 0;
	}

	.hanel-product__gallery {
		position: static;
	}
}

@container hanel-buy (max-width: 28rem) {
	.hanel-product__trust {
		grid-template-columns: 1fr;
	}

	.hanel-product__trust li {
		flex-direction: row;
		align-items: flex-start;
	}
}
