/* ============================================================
   Hooflakids — single product page
   ============================================================ */

.hk-product {
	max-width: var(--hk-container-w, 100%);
	margin: 0 auto;
	padding: 32px var(--hk-container-pad, 150px) 80px;
}

.hk-product__breadcrumb { margin-bottom: 24px; }

.hk-product__top {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 56px;
	align-items: start;
	margin-bottom: 64px;
}

/* Gallery */
.hk-product__gallery {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 16px;
}

.hk-product__thumbs {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hk-product__thumb {
	width: 80px;
	height: 80px;
	border-radius: 14px;
	overflow: hidden;
	border: 2px solid transparent;
	background: var(--accent-tint);
	padding: 0;
	cursor: pointer;
	transition: border-color .15s;
}

.hk-product__thumb img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
	margin: 0 !important;
}

.hk-product__thumb.is-active { border-color: var(--accent); }
.hk-product__thumb:hover { border-color: var(--accent-soft); }

.hk-product__main-image {
	position: relative;
	border-radius: var(--radius-card);
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: var(--accent-tint);
}

.hk-product__main-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
	transition: transform .4s cubic-bezier(.22, 1, .36, 1);
	transform-origin: center center;
	will-change: transform;
}

.hk-product__main-image.is-zooming img {
	transform: scale(1.5);
	transition: transform 0s linear;
}

/* Prev/next arrows — chevron only, transparent */
.hk-product__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	color: var(--ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	transition: opacity .2s ease, color .15s ease;
	z-index: 3;
	padding: 0;
}

.hk-product__main-image:hover .hk-product__nav,
.hk-product__main-image:focus-within .hk-product__nav {
	opacity: 1;
}

.hk-product__nav:hover {
	color: var(--accent-deep);
}

.hk-product__nav--prev { left: 8px; }
.hk-product__nav--next { right: 8px; }

@media (max-width: 768px) {
	.hk-product__nav { opacity: 1; }
}

.hk-product__placeholder {
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(135deg, var(--accent-soft) 0 16px, var(--accent-tint) 16px 32px);
}

.hk-product__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
}

/* Summary */
.hk-product__summary { display: flex; flex-direction: column; }

.hk-product__cat {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	color: var(--ink-mute);
	margin: 0 0 8px;
}

.hk-product__title {
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -.02em;
	margin: 0 0 14px;
}

.hk-product__rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	font-size: 14px;
}

.hk-product__rating .star-rating { width: 90px; color: var(--sun); font-size: 14px; }
.hk-product__rating-num { font-weight: 700; color: var(--ink); }
.hk-product__rating-count { color: var(--ink-mute); }
.hk-product__rating-link {
	color: var(--accent-deep);
	text-decoration: underline;
	font-weight: 500;
	margin-left: 8px;
}

.hk-product__price {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 800;
	color: var(--ink);
	margin: 4px 0 16px;
}

.hk-product__price del {
	color: var(--ink-mute);
	font-weight: 400;
	font-size: .7em;
	margin-left: 10px;
}

.hk-product__price ins { background: none; text-decoration: none; }

.hk-product__short-desc {
	color: var(--ink-soft);
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 24px;
}

/* WC add-to-cart form styling */
.hk-product__summary form.cart {
	display: block !important;
	margin: 16px 0 24px;
}

/* Hide standalone variation price — we bake the price into the Add-to-cart button instead */
.hk-product__summary .woocommerce-variation-price { display: none !important; }

.hk-product__summary .woocommerce-variation-add-to-cart,
.hk-product__summary form.cart > .quantity + button.single_add_to_cart_button {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

/* Plain (non-variable) cart form needs its own flex wrapper */
body.single-product form.cart:not(.variations_form) {
	display: flex !important;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

/* Custom qty stepper — flat pill with internal − / + */
.hk-qty {
	display: inline-flex;
	align-items: center;
	background: #fff;
	border: 1.5px solid var(--line);
	border-radius: 999px;
	padding: 0;
	overflow: hidden;
	height: 56px;
	flex-shrink: 0;
}

.hk-qty__btn {
	width: 44px;
	height: 100%;
	border-radius: 0;
	background: transparent;
	border: 0;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	transition: background .15s, color .15s;
	color: var(--ink);
	line-height: 1;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: inherit;
}

.hk-qty__btn:hover { background: var(--cream); color: var(--accent-deep); }
.hk-qty__btn:disabled { opacity: .3; cursor: not-allowed; background: transparent; }

.hk-product__summary .quantity {
	display: inline-flex !important;
	align-items: center;
	margin: 0;
	background: transparent;
	border: 0;
}

.hk-product__summary input.qty,
.hk-product__summary .quantity input.qty {
	width: 36px !important;
	text-align: center !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
	outline: 0 !important;
	font-weight: 700 !important;
	font-size: 16px !important;
	height: 100% !important;
	color: var(--ink) !important;
	padding: 0 !important;
	margin: 0 !important;
	-moz-appearance: textfield;
	-webkit-appearance: none !important;
	appearance: textfield !important;
	border-radius: 0 !important;
}

.hk-product__summary input.qty:focus,
.hk-product__summary .quantity input.qty:focus {
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
	outline: 0 !important;
	background: transparent !important;
}

.hk-product__summary input.qty::-webkit-inner-spin-button,
.hk-product__summary input.qty::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.hk-product__summary form.cart .single_add_to_cart_button {
	background: var(--accent) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 999px !important;
	padding: 16px 28px !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	flex: 1;
	min-width: 240px;
	box-shadow: 0 6px 18px rgba(0, 172, 138, .35);
	transition: background .15s, transform .15s;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 56px;
	line-height: 1;
}

.hk-product__summary form.cart .single_add_to_cart_button .hk-add-cart__icon {
	flex-shrink: 0;
}

.hk-product__summary form.cart .single_add_to_cart_button:hover {
	background: var(--accent-deep) !important;
	transform: translateY(-1px);
}

/* Wishlist heart at the end of the cart row */
.hk-product__wish {
	width: 56px !important;
	height: 56px !important;
	border-radius: 50% !important;
	background: #fff !important;
	border: 1.5px solid var(--line) !important;
	color: var(--ink-mute) !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
	padding: 0 !important;
	transition: color .15s, border-color .15s;
}

.hk-product__wish:hover { color: var(--coral) !important; border-color: var(--coral) !important; }
.hk-product__wish.is-active { color: var(--coral) !important; border-color: var(--coral) !important; }
.hk-product__wish.is-active svg { fill: var(--coral) !important; }

.hk-product__summary form.cart .single_add_to_cart_button.hk-disabled,
.hk-product__summary form.cart .single_add_to_cart_button:disabled,
.hk-product__summary form.cart .single_add_to_cart_button.disabled {
	background: #c5c8cf !important;
	color: #fff !important;
	cursor: not-allowed !important;
	box-shadow: none !important;
	transform: none !important;
	pointer-events: none;
	opacity: 1 !important;
}

.hk-product__summary .variations,
.hk-product__summary .variations td,
.hk-product__summary .variations th {
	background: transparent !important;
	border: 0 !important;
	padding: 4px 8px 4px 0 !important;
}

.hk-product__summary .variations th label {
	font-weight: 700;
	color: var(--ink);
}

.hk-product__summary .variations select {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 10px 14px;
	font-size: 14px;
	min-width: 200px;
}

.hk-product__summary .variations select.hk-hidden-select,
.variations select.hk-hidden-select {
	position: absolute !important;
	opacity: 0 !important;
	pointer-events: none !important;
	width: 1px !important;
	height: 1px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	overflow: hidden;
}

.hk-product__summary .variations tr {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}

.hk-product__summary .variations th.label {
	min-width: 80px;
	width: auto !important;
}

.hk-product__summary .variations td.value {
	flex: 1;
	min-width: 0;
	position: relative;
}

.hk-pill-variant {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hk-pill-btn {
	background: #fff;
	border: 1.5px solid var(--line);
	border-radius: 12px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	color: var(--ink);
	font-family: inherit;
	min-width: 52px;
	line-height: 1.1;
	letter-spacing: -0.005em;
	box-shadow: 0 1px 2px rgba(26, 42, 42, .04);
	transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease, box-shadow .18s ease;
	position: relative;
}

.hk-pill-btn:hover {
	border-color: var(--accent);
	color: var(--accent-deep);
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(0, 172, 138, .12);
}

.hk-pill-btn:active {
	transform: translateY(0);
	box-shadow: 0 1px 2px rgba(26, 42, 42, .06);
}

.hk-pill-btn.is-active {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
	box-shadow: 0 4px 12px rgba(0, 172, 138, .25);
}

.hk-pill-btn.is-active::before {
	content: "";
	position: absolute;
	inset: -3px;
	border-radius: 14px;
	border: 1.5px solid var(--accent-soft);
	pointer-events: none;
}

.hk-pill-btn[disabled] {
	opacity: .4;
	cursor: not-allowed;
	text-decoration: line-through;
	box-shadow: none;
}

.hk-pill-btn[disabled]:hover {
	transform: none;
	border-color: var(--line);
	color: var(--ink);
	box-shadow: none;
}

/* Reset variations — icon-only circle button placed BEFORE quantity stepper. */
.hk-reset-icon {
	display: none !important;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50% !important;
	background: #fff !important;
	border: 1.5px solid var(--line) !important;
	color: var(--ink-mute) !important;
	cursor: pointer;
	flex-shrink: 0;
	margin: 0 !important;
	padding: 0 !important;
	visibility: visible !important;
	text-decoration: none !important;
	transition: border-color .15s, color .15s;
}

.hk-reset-icon.is-show { display: inline-flex !important; }

.hk-reset-icon svg { display: block; }

/* Kill any pseudo-element icons Storefront/WC may attach to .reset_variations */
.hk-reset-icon::before,
.hk-reset-icon::after,
.reset_variations::before,
.reset_variations::after {
	content: none !important;
	display: none !important;
	background: none !important;
}

.hk-reset-icon:hover { border-color: var(--ink) !important; color: var(--ink) !important; }

/* Stock summary block */
.hk-product__stock-summary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: -4px 0 16px;
	font-size: 14px;
	font-weight: 500;
}

.hk-product__stock-summary .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}

.hk-product__stock-summary strong { font-weight: 800; }

.hk-product__stock-summary.is-ok       { color: #16a34a; }
.hk-product__stock-summary.is-ok .dot  { background: #16a34a; }

.hk-product__stock-summary.is-low      { color: var(--coral); }
.hk-product__stock-summary.is-low .dot { background: var(--coral); }

.hk-product__stock-summary.is-out      { color: var(--ink-mute); }
.hk-product__stock-summary.is-out .dot { background: var(--ink-mute); }

/* Hide WC's per-variation stock since we always show summary */
.hk-product__summary .woocommerce-variation-availability { display: none; }

.hk-product__summary .woocommerce-variation-price {
	margin: 12px 0;
	font-weight: 700;
	font-size: 18px;
}

/* Trust strip */
.hk-product__trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 24px;
}

.hk-product__trust-card {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px;
	background: var(--accent-tint);
	border-radius: 14px;
	color: var(--accent-deep);
}

.hk-product__trust-card svg { flex-shrink: 0; }
.hk-product__trust-t { font-weight: 700; font-size: 13.5px; color: var(--ink); }
.hk-product__trust-s { font-size: 12px; color: var(--ink-soft); }

/* Tabs */
.hk-product__tabs { margin-bottom: 64px; }

.hk-tabs__nav {
	display: flex;
	gap: 0;
	border-bottom: 1px solid var(--line);
	margin-bottom: 28px;
	flex-wrap: wrap;
}

.hk-tabs__tab {
	background: transparent;
	border: 0;
	padding: 14px 24px 16px;
	font-size: 16px;
	font-weight: 600;
	color: var(--ink-mute);
	cursor: pointer;
	position: relative;
	font-family: inherit;
	transition: color .15s;
	white-space: nowrap;
}

.hk-tabs__tab:hover { color: var(--ink); }

.hk-tabs__tab.is-active { color: var(--accent-deep); }

.hk-tabs__tab.is-active::after {
	content: "";
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: -1px;
	height: 3px;
	background: var(--accent);
	border-radius: 3px 3px 0 0;
}

@media (max-width: 768px) {
	.hk-tabs__nav {
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: none;
		gap: 4px;
		margin-bottom: 20px;
		-webkit-overflow-scrolling: touch;
	}
	.hk-tabs__nav::-webkit-scrollbar { display: none; }
	.hk-tabs__tab {
		padding: 12px 14px 14px;
		font-size: 14px;
		flex-shrink: 0;
	}
	.hk-tabs__tab.is-active::after {
		left: 10px;
		right: 10px;
		height: 2.5px;
	}
}

.hk-tabs__panel { display: none; }
.hk-tabs__panel.is-active { display: block; }

.hk-tabs__panel ul { padding-left: 22px; }
.hk-tabs__panel ul li { margin: 6px 0; }

.hk-tabs__empty { color: var(--ink-mute); font-style: italic; }

.hk-product__size-image {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-card);
	display: block;
}

.hk-product__size-text { margin-top: 16px; color: var(--ink-soft); }

/* Care grid */
.hk-care-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.hk-care-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-card);
	padding: 24px;
}

.hk-care-card__icon {
	font-size: 32px;
	line-height: 1;
	margin-bottom: 14px;
}

.hk-care-card__t { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.hk-care-card__s { color: var(--ink-mute); font-size: 13.5px; }

/* Reviews tab */
.hk-reviews {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 32px;
	align-items: start;
}

.hk-reviews__summary {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-card);
	padding: 28px;
}

.hk-reviews__big {
	font-size: 64px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.02em;
	margin-bottom: 8px;
}

.hk-reviews__stars { margin-bottom: 12px; }
.hk-reviews__stars .star-rating { color: var(--sun); width: 110px; font-size: 17px; }

.hk-reviews__count { color: var(--ink-mute); font-size: 13.5px; margin-bottom: 16px; }

.hk-reviews__bars {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hk-reviews__bars li {
	display: grid;
	grid-template-columns: 28px 1fr 36px;
	gap: 8px;
	align-items: center;
	font-size: 13px;
	color: var(--ink-soft);
}

.hk-reviews__bar-label { font-weight: 600; }

.hk-reviews__bar {
	height: 8px;
	background: var(--accent-tint);
	border-radius: 999px;
	overflow: hidden;
}

.hk-reviews__bar-fill {
	display: block;
	height: 100%;
	background: var(--accent);
	border-radius: 999px;
}

.hk-reviews__bar-pct { text-align: right; font-weight: 600; }

.hk-reviews__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hk-review {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-card);
	padding: 20px 24px;
}

.hk-review__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.hk-review__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--accent-soft);
	color: var(--accent-deep);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	flex-shrink: 0;
}

.hk-review__meta { flex: 1; }
.hk-review__name { font-weight: 700; font-size: 15px; }
.hk-review__date { font-size: 12.5px; color: var(--ink-mute); }
.hk-review__rating .star-rating { color: var(--sun); width: 88px; font-size: 14px; }
.hk-review__body { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
.hk-review__body p:last-child { margin-bottom: 0; }

/* Related */
.hk-product__related { margin-top: 48px; }

.hk-related__head {
	margin-bottom: 32px;
}

.hk-related__head .hk-eyebrow {
	display: block;
	color: var(--accent-deep);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.hk-related__title {
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.1;
	margin: 0;
	color: var(--ink);
}

.hk-product__related .products,
.hk-product__related ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 24px !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.hk-product__related ul.products::before,
.hk-product__related ul.products::after {
	display: none !important;
	content: none !important;
}

.hk-product__related ul.products li.product {
	margin: 0 !important;
	padding: 0 !important;
	width: auto !important;
	float: none !important;
	clear: none !important;
}

/* Description clamp + show-more toggle */
.hk-product__desc {
	position: relative;
	overflow: hidden;
}

.hk-product__desc.is-clamped {
	max-height: 280px;
}

.hk-product__desc.is-clamped::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 80px;
	background: linear-gradient(to bottom, transparent, var(--cream) 90%);
	pointer-events: none;
}

.hk-product__desc-toggle {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: transparent;
	border: 0;
	padding: 8px 0;
	margin-top: 8px;
	color: var(--accent-deep);
	font-weight: 700;
	font-size: 13.5px;
	cursor: pointer;
}

.hk-product__desc-toggle:hover { color: var(--ink); }
.hk-product__desc-toggle::after {
	content: "↓";
	margin-left: 2px;
	transition: transform .2s;
}

.hk-product__desc-toggle[data-expanded="true"]::after {
	transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 1024px) {
	.hk-product__top { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
	.hk-product__gallery { grid-template-columns: 64px 1fr; gap: 12px; }
	.hk-product__thumb { width: 64px; height: 64px; }
	.hk-care-grid { grid-template-columns: repeat(2, 1fr); }
	.hk-reviews { grid-template-columns: 1fr; }
	.hk-product__related ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
	/* Gallery: main image top, thumbs as horizontal scroll below */
	.hk-product__gallery {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.hk-product__main-image { grid-row: 1; }
	.hk-product__thumbs {
		flex-direction: row;
		overflow-x: auto;
		scrollbar-width: none;
		padding-bottom: 4px;
		gap: 8px;
	}
	.hk-product__thumbs::-webkit-scrollbar { display: none; }
	.hk-product__thumb {
		width: 60px;
		height: 60px;
		flex-shrink: 0;
		border-radius: 10px;
	}
	.hk-product__title { font-size: 22px; }
	.hk-product__cat { font-size: 11px; }
}

@media (max-width: 640px) {
	.hk-product { padding: 16px 16px 40px; }
	.hk-product__trust { grid-template-columns: 1fr; }
	.hk-product__related ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 12px !important;
	}

	/* Variations: stack label above pills (instead of side-by-side) */
	.hk-product__summary .variations tr {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		margin-bottom: 18px;
	}
	.hk-product__summary .variations th.label {
		min-width: 0;
		padding: 0 !important;
	}
	.hk-product__summary .variations th label {
		font-size: 13px !important;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: .05em;
		color: var(--ink-soft) !important;
	}
	.hk-product__summary .variations td.value {
		width: 100%;
	}
	.hk-pill-variant { gap: 6px; }

	/* Variant pills — scale down */
	.hk-pill-btn {
		padding: 8px 14px;
		font-size: 13px;
		min-width: 44px;
		border-radius: 10px;
	}

	/* Add-to-cart row: full-width button on its own line */
	.hk-product__summary .woocommerce-variation-add-to-cart,
	body.single-product form.cart:not(.variations_form) {
		gap: 8px;
	}

	/* Qty stepper */
	.hk-qty { height: 44px; }
	.hk-qty__btn { width: 36px; font-size: 18px; }
	.hk-product__summary input.qty,
	.hk-product__summary .quantity input.qty {
		width: 32px !important;
		font-size: 15px !important;
	}

	/* Layout: Row 1 = reset + qty + wishlist | Row 2 = add-to-cart (full-width) */
	.hk-product__summary form.cart .single_add_to_cart_button {
		height: 48px;
		padding: 12px 20px !important;
		font-size: 14px !important;
		min-width: 0 !important;
		gap: 8px;
		flex: 1 1 100% !important;
		width: 100%;
		order: 10;
		white-space: nowrap;
		box-shadow: 0 4px 12px rgba(0, 172, 138, .28);
	}

	.hk-product__wish {
		width: 48px !important;
		height: 48px !important;
		flex: 0 0 48px !important;
		order: 3;
	}
	.hk-product__wish svg { width: 16px; height: 16px; }

	.hk-reset-icon {
		width: 40px !important;
		height: 40px !important;
		flex: 0 0 40px !important;
		order: 1;
	}

	.hk-qty { order: 2; }
}

/* ============================================================
   Product image lightbox — mobile-first fullscreen viewer with
   native pinch-zoom + swipe nav. Also works on desktop click.
   ============================================================ */

/* Visual hint for touch devices that main image is tappable */
.hk-product__main-image.is-tappable { cursor: zoom-in; }

/* Lock page scroll while lightbox is open */
html.hk-lightbox-lock,
html.hk-lightbox-lock body {
	overflow: hidden !important;
	overscroll-behavior: contain;
}

.hk-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(20, 28, 28, .35);
	backdrop-filter: blur(24px) saturate(160%);
	-webkit-backdrop-filter: blur(24px) saturate(160%);
	display: none;
	opacity: 0;
	transition: opacity .2s ease;
	-webkit-tap-highlight-color: transparent;
}

.hk-lightbox.is-open {
	display: block;
	opacity: 1;
}

.hk-lightbox__stage {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 56px 12px 88px;
	box-sizing: border-box;
	/* Allow native pinch-zoom + panning inside the stage */
	touch-action: pinch-zoom;
	-webkit-overflow-scrolling: touch;
	overflow: hidden;
}

.hk-lightbox__img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	user-select: none;
	-webkit-user-drag: none;
	pointer-events: auto;
}

.hk-lightbox__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, .18);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, .12);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	transition: background .15s ease;
}

.hk-lightbox__close:hover,
.hk-lightbox__close:active {
	background: rgba(255, 255, 255, .22);
}

.hk-lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, .18);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, .12);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	transition: background .15s ease;
	-webkit-tap-highlight-color: transparent;
}

.hk-lightbox__nav:hover,
.hk-lightbox__nav:active {
	background: rgba(255, 255, 255, .22);
}

.hk-lightbox__nav--prev { left: 12px; }
.hk-lightbox__nav--next { right: 12px; }

.hk-lightbox__counter {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, .18);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, .12);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .04em;
	padding: 6px 14px;
	border-radius: 999px;
	z-index: 2;
	pointer-events: none;
}

/* Mobile tweaks */
@media (max-width: 640px) {
	.hk-lightbox__stage {
		padding: 60px 8px 80px;
	}
	.hk-lightbox__nav {
		width: 42px;
		height: 42px;
	}
	.hk-lightbox__nav--prev { left: 8px; }
	.hk-lightbox__nav--next { right: 8px; }
	.hk-lightbox__counter {
		bottom: 18px;
		font-size: 12.5px;
		padding: 5px 12px;
	}
}

/* Subtle hint pill on tappable main image (touch only, optional) */
@media (hover: none) and (pointer: coarse) {
	.hk-product__main-image.is-tappable::after {
		content: "";
		position: absolute;
		right: 12px;
		bottom: 12px;
		width: 36px;
		height: 36px;
		border-radius: 50%;
		background: rgba(255, 255, 255, .92) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230f1616' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><line x1='21' y1='21' x2='16.65' y2='16.65'/><line x1='11' y1='8' x2='11' y2='14'/><line x1='8' y1='11' x2='14' y2='11'/></svg>") center / 18px no-repeat;
		box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
		pointer-events: none;
		z-index: 2;
	}
}

