/* HOBBYTEC Core — Produktová stránka [hbtc_product] */

.hbtc-prod {
	--p-accent: #78b956;
	--p-dark: #221f20;
	font-family: "Gilroy-Regular", system-ui, sans-serif;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	color: var(--p-dark);
	text-align: left;
}
.hbtc-prod *,
.hbtc-prod *::before,
.hbtc-prod *::after { box-sizing: border-box; }
.hbtc-prod__json { display: none; }
/* všetko zarovnané vľavo (téma niekedy centruje) */
.hbtc-prod__info,
.hbtc-prod__info * { text-align: left; }
.hbtc-prod__swatches,
.hbtc-prod__sizes,
.hbtc-prod__cta { justify-content: flex-start; }

/* ── Breadcrumbs ─────────────────────────────────── */
.hbtc-prod__crumbs {
	display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
	font-family: "Gilroy-Regular", system-ui, sans-serif;
	font-size: 14px; margin-bottom: 22px;
	color: rgba(34, 31, 32, .5);
}
.hbtc-prod__crumbs a { color: rgba(34, 31, 32, .5) !important; text-decoration: none; transition: color .2s ease; }
.hbtc-prod__crumbs a:hover { color: var(--p-accent) !important; }
.hbtc-prod__crumbs-current { color: var(--p-dark) !important; font-weight: 500; }

/* ── Grid ────────────────────────────────────────── */
.hbtc-prod__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
	gap: clamp(32px, 4vw, 64px);
	align-items: start;
}

/* ── Bento galéria (sticky pri dlhom pravom stĺpci) ── */
.hbtc-prod__gallery { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 100px; align-self: start; }
.hbtc-prod__main {
	position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: zoom-in;
	border-radius: 32px; overflow: hidden; background: #f1f1ee;
}
.hbtc-prod__main::after {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background: linear-gradient(to top, rgba(34,31,32,.20) 0%, rgba(34,31,32,0) 34%);
}
.hbtc-prod__main-img { display: block; width: 100%; aspect-ratio: 16 / 11; object-fit: cover; transition: transform .55s cubic-bezier(.22,1,.36,1); }
.hbtc-prod__main:hover .hbtc-prod__main-img { transform: scale(1.04); }
.hbtc-prod__zoom {
	position: absolute; top: 18px; right: 18px; z-index: 2;
	width: 48px; height: 48px; border-radius: 50%;
	background: rgba(34,31,32,.55) !important; color: #fff !important;
	display: inline-flex; align-items: center; justify-content: center;
	backdrop-filter: blur(4px); transition: background .2s ease, transform .2s ease;
}
.hbtc-prod__zoom svg { width: 22px; height: 22px; }
.hbtc-prod__main:hover .hbtc-prod__zoom { background: var(--p-accent) !important; transform: scale(1.06); }

/* Featured video ako hlavná položka galérie (štýl Zalando) */
.hbtc-prod__video-main {
	position: relative; display: block; width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 32px; overflow: hidden; background: #f1f1ee;
	cursor: pointer;
}
.hbtc-prod__video {
	display: block; width: 100%; height: 100%; object-fit: cover;
}
/* Veľký moderný play overlay (paused stav) */
.hbtc-prod__video-play {
	position: absolute; top: 50%; left: 50%; z-index: 3;
	transform: translate(-50%, -50%);
	display: inline-flex; align-items: center; justify-content: center;
	width: 84px; height: 84px; padding: 0; border: 0; cursor: pointer;
	border-radius: 50%;
	background: rgba(255,255,255,.92) !important; color: var(--p-accent) !important;
	box-shadow: 0 14px 40px rgba(34,31,32,.32);
	transition: opacity .3s ease, transform .35s cubic-bezier(.22,1,.36,1), background .25s ease, color .25s ease;
}
.hbtc-prod__video-play-ic { width: 32px; height: 32px; margin-left: 3px; position: relative; z-index: 1; }
.hbtc-prod__video-main:hover .hbtc-prod__video-play {
	background: var(--p-accent) !important; color: #fff !important;
	transform: translate(-50%, -50%) scale(1.06);
}
/* pulzujúci prstenec okolo play */
.hbtc-prod__video-play-ring {
	position: absolute; inset: 0; border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(255,255,255,.6);
	animation: hbtcVideoPulse 2.2s ease-out infinite;
}
@keyframes hbtcVideoPulse {
	0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.55); }
	70%  { box-shadow: 0 0 0 18px rgba(255,255,255,0); }
	100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
/* keď hrá — play overlay skry */
.hbtc-prod__video-main.is-playing .hbtc-prod__video-play {
	opacity: 0; pointer-events: none;
	transform: translate(-50%, -50%) scale(.6);
}

/* Malý pause badge vľavo hore (iba keď hrá) */
.hbtc-prod__video-badge {
	position: absolute; top: 18px; left: 18px; z-index: 2;
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 50%;
	background: rgba(34,31,32,.55) !important; color: #fff !important;
	backdrop-filter: blur(4px);
	opacity: 0; pointer-events: none;
	transition: opacity .25s ease, background .2s ease, transform .2s ease;
}
.hbtc-prod__video-main.is-playing .hbtc-prod__video-badge { opacity: 1; }
.hbtc-prod__video-main.is-playing:hover .hbtc-prod__video-badge { background: rgba(34,31,32,.78) !important; transform: scale(1.06); }
.hbtc-prod__video-badge svg { width: 20px; height: 20px; }

@media (prefers-reduced-motion: reduce) {
	.hbtc-prod__video-play-ring { animation: none; }
}

.hbtc-prod__bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hbtc-prod__btile {
	position: relative; aspect-ratio: 1 / 1; border: 0; padding: 0; cursor: pointer;
	border-radius: 22px; overflow: hidden; background-size: cover; background-position: center;
	transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.hbtc-prod__btile::after { content: ""; position: absolute; inset: 0; background: rgba(120,185,86,0); transition: background .3s ease; }
.hbtc-prod__btile:hover { transform: translateY(-3px); }
.hbtc-prod__btile:hover::after { background: rgba(120,185,86,.28); }
/* +N overlay na poslednej dlaždici */
.hbtc-prod__btile-more {
	position: absolute; inset: 0; z-index: 2;
	display: flex; align-items: center; justify-content: center;
	background: rgba(34,31,32,.6); color: #fff !important;
	font-family: "Gilroy-ExtraBold", system-ui, sans-serif; font-weight: 800; font-size: clamp(24px, 3vw, 34px);
	transition: background .3s ease;
}
.hbtc-prod__btile:hover .hbtc-prod__btile-more { background: rgba(120,185,86,.78); }

/* ── Info (pravý stĺpec v jemne sivom boxe) ───────── */
.hbtc-prod__info {
	background: #f8f8f8;
	border: none;
	border-radius: 50px;
	padding: clamp(26px, 3vw, 44px);
}
.hbtc-prod__title {
	margin: 10px 0 12px !important;
	font-family: "Gilroy-ExtraBold", system-ui, sans-serif; font-weight: 800;
	font-size: clamp(30px, 4vw, 48px); line-height: 0.9 !important; letter-spacing: -2px; color: var(--p-dark) !important;
}
.hbtc-prod__block { margin-top: 26px; }
.hbtc-prod__label {
	display: block; margin-bottom: 10px;
	font-family: "Gilroy-Regular", system-ui, sans-serif; font-size: 14px;
	text-transform: uppercase; letter-spacing: .06em; color: rgba(34,31,32,.5) !important;
}

/* ── Recenzie kompakt ────────────────────────────── */
.hbtc-prod__rev { display: flex; align-items: center; gap: 10px; font-family: "Gilroy-Regular", system-ui, sans-serif; }
.hbtc-prod__rev-stars { position: relative; display: inline-flex; line-height: 0; }
.hbtc-prod__rev-bg, .hbtc-prod__rev-fg { display: inline-flex; gap: 2px; white-space: nowrap; line-height: 0; }
.hbtc-prod__rev-stars svg { width: 18px; height: 18px; display: block; }
.hbtc-prod__rev-bg svg { fill: rgba(34,31,32,.18); }
.hbtc-prod__rev-fg { position: absolute; top: 0; left: 0; overflow: hidden; width: var(--fill, 98%); }
.hbtc-prod__rev-fg svg { fill: #fbbc04; }
.hbtc-prod__rev strong { color: var(--p-dark) !important; }
.hbtc-prod__rev-count { color: rgba(34,31,32,.55) !important; font-size: 14px; }

/* ── Swatche (kreatívne karty s názvom cez overlay) ── */
.hbtc-prod__swatches { display: flex; flex-wrap: wrap; gap: 5px; }
.hbtc-prod__swatch {
	position: relative; width: 116px; height: 92px; padding: 0; border-radius: 18px;
	border: 2px solid transparent; background: transparent; cursor: pointer; overflow: hidden;
	transition: transform .25s cubic-bezier(.22,1,.36,1), border-color .2s ease, box-shadow .2s ease;
}
.hbtc-prod__swatch:hover { transform: translateY(-4px); }
.hbtc-prod__swatch.is-active { border-color: var(--p-accent); }
.hbtc-prod__swatch-fill {
	position: absolute; inset: 0; background-size: cover; background-position: center;
	transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.hbtc-prod__swatch:hover .hbtc-prod__swatch-fill { transform: scale(1.08); }
.hbtc-prod__swatch-name {
	position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 9px 10px;
	font-family: "Gilroy-ExtraBold", system-ui, sans-serif; font-weight: 800; font-size: 13px;
	line-height: 1.1; text-align: left;
}
.hbtc-prod__swatch-check {
	position: absolute; top: 8px; right: 8px; z-index: 1;
	width: 26px; height: 26px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--p-accent) !important; color: #fff !important;
	opacity: 0; transform: scale(.5); transition: opacity .25s ease, transform .3s cubic-bezier(.22,1,.36,1);
}
.hbtc-prod__swatch-check svg { width: 15px; height: 15px; }
.hbtc-prod__swatch.is-active .hbtc-prod__swatch-check { opacity: 1; transform: scale(1); }
.hbtc-prod__color-name { display: none; }

/* ── RAL skupina (vizuálne oddelená) ─────────────── */
.hbtc-prod__color-row { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; }
.hbtc-prod__swatch--ral .hbtc-prod__swatch-fill {
	background: conic-gradient(from 210deg, #e53935, #fb8c00, #fdd835, #43a047, #1e88e5, #8e24aa, #e53935);
}
.hbtc-prod__ral-group {
	display: inline-flex; align-items: center; gap: 12px;
	padding: 10px 16px 10px 10px; border-radius: 18px;
	border: 1.5px dashed rgba(241,187,65,.75); background: rgba(241,187,65,.10);
	cursor: pointer; transition: border-color .2s ease, background .2s ease;
}
.hbtc-prod__ral-group:hover { border-color: #f1bb41; background: rgba(241,187,65,.2); }
.hbtc-prod__ral-info { display: flex; flex-direction: column; gap: 2px; max-width: 210px; }
.hbtc-prod__ral-title { font-family: "Gilroy-ExtraBold", system-ui, sans-serif; font-weight: 800; font-size: 14px; color: #221f20 !important; }
.hbtc-prod__ral-note { font-size: 12px; line-height: 1.3; color: rgba(34,31,32,.62) !important; }

/* ── Toggle / rozmery ────────────────────────────── */
.hbtc-prod__toggle {
	display: inline-flex; padding: 6px; border-radius: 999px;
	background: #ecece8; margin-bottom: 18px;
}
.hbtc-prod__toggle-btn {
	border: 0; background: transparent; cursor: pointer;
	padding: 15px 30px; border-radius: 999px;
	font-family: "Gilroy-Regular", system-ui, sans-serif; font-weight: 400; font-size: 16px; line-height: 1.15;
	color: rgba(34,31,32,.6) !important; transition: background .3s cubic-bezier(.22,1,.36,1), color .25s ease, transform .2s ease;
}
.hbtc-prod__toggle-btn:hover { color: var(--p-dark) !important; }
.hbtc-prod__toggle-btn.is-active { background: var(--p-dark) !important; color: #fff !important; }

.hbtc-prod__sizes { display: flex; flex-wrap: wrap; gap: 10px; }
.hbtc-prod__size {
	position: relative; border: 0; background: #ffffff; cursor: pointer;
	display: inline-flex; align-items: center; height: 52px; padding: 0 26px; border-radius: 999px;
	font-family: "Gilroy-Regular", system-ui, sans-serif; font-size: 16px; color: var(--p-dark) !important;
	transition: background .25s ease, color .25s ease;
}
.hbtc-prod__size:hover { background: #efefea; }
.hbtc-prod__size.is-active { background: var(--p-accent) !important; color: #fff !important; }
.hbtc-prod__size.is-oos { opacity: .4; cursor: not-allowed; }
/* krúžok so zľavou v rohu rozmeru */
.hbtc-prod__size-disc {
	position: absolute; top: -11px; right: -11px;
	min-width: 36px; height: 36px; padding: 0 6px; border-radius: 999px;
	display: inline-flex; align-items: center; justify-content: center;
	background: #f1bb41 !important; color: #221f20 !important;
	font-family: "Gilroy-ExtraBold", system-ui, sans-serif; font-weight: 800; font-size: 12px;
	box-shadow: 0 5px 14px rgba(241,187,65,.45);
}
.hbtc-prod__custom-note { margin: 4px 0 0; font-size: 14px; color: rgba(34,31,32,.6) !important; }

/* ── Cena (korunkový seal badge) ─────────────────── */
.hbtc-prod__price {
	position: relative; display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
	text-align: center; gap: 2px;
	min-width: 190px; padding: 24px 38px 30px;
	margin: 36px 0 22px; border-radius: 90px;
	background: #f1bb41 !important;
	transform: rotate(-4deg);
	box-shadow: 0 18px 44px rgba(241,187,65,.38);
}
.hbtc-prod__price-crown { width: 44px; height: auto; display: block; margin-bottom: 2px; }
.hbtc-prod__price-old {
	font-family: "Gilroy-ExtraBold", system-ui, sans-serif; font-weight: 800;
	font-size: clamp(17px, 2vw, 24px); line-height: 1;
	color: #221f20 !important; text-decoration: line-through; opacity: .78;
}
.hbtc-prod__price-old:empty,
.hbtc-prod__price-old[hidden] { display: none; }
.hbtc-prod__price-now {
	font-family: "Gilroy-ExtraBold", system-ui, sans-serif; font-weight: 800;
	font-size: clamp(34px, 5vw, 56px); line-height: .95; color: #221f20 !important; white-space: nowrap;
}
.hbtc-prod__price-now .woocommerce-Price-amount { color: inherit !important; }
/* neutralizuj prípadné zvýraznenie ceny z témy */
.hbtc-prod__price .woocommerce-Price-amount,
.hbtc-prod__price ins,
.hbtc-prod__price del { background: transparent !important; color: inherit !important; box-shadow: none !important; text-decoration: inherit; }
/* % zľava — samostatný box na extra vrstve */
.hbtc-prod__price-disc {
	position: absolute; top: -18px; right: -18px; z-index: 2;
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 66px; height: 66px; padding: 0 12px;
	border-radius: 50%;
	background: #221f20 !important; color: #fff !important;
	font-family: "Gilroy-ExtraBold", system-ui, sans-serif; font-weight: 800;
	font-size: 19px; white-space: nowrap; transform: rotate(8deg);
	box-shadow: 0 12px 26px rgba(0,0,0,.24);
}
.hbtc-prod__price-disc[hidden] { display: none; }
.hbtc-prod__price-dph {
	position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
	padding: 7px 16px; border-radius: 999px;
	background: #ffffff !important; color: #221f20 !important;
	font-family: "Gilroy-Regular", system-ui, sans-serif; font-weight: 500; font-size: 14px;
	box-shadow: 0 6px 16px rgba(0,0,0,.14); white-space: nowrap;
}

/* ── Popis ───────────────────────────────────────── */
.hbtc-prod__desc { margin-top: 22px; font-family: "Gilroy-Regular", system-ui, sans-serif; font-size: 16px; line-height: 1.35 !important; color: rgba(34,31,32,.78); }
.hbtc-prod__desc p,
.hbtc-prod__desc-short,
.hbtc-prod__desc-full,
.hbtc-prod__desc-short p,
.hbtc-prod__desc-full p { margin: 0 0 10px; line-height: 1.35 !important; }
.hbtc-prod__desc strong, .hbtc-prod__desc b,
.hbtc-prod__desc-short strong, .hbtc-prod__desc-short b,
.hbtc-prod__desc-full strong, .hbtc-prod__desc-full b {
	font-family: "Gilroy-ExtraBold", system-ui, sans-serif; font-weight: 800;
}
.hbtc-prod__desc-short { position: relative; }
/* fade textu do bielej na konci (skryje sa po rozbalení) */
.hbtc-prod__desc-short::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3.4em; pointer-events: none;
	background: linear-gradient(to bottom, rgba(248,248,248,0) 0%, #f8f8f8 92%);
	transition: opacity .25s ease;
}
.hbtc-prod__desc.is-open .hbtc-prod__desc-short::after { opacity: 0; }
.hbtc-prod__desc-toggle {
	display: inline-flex; align-items: center; gap: 8px;
	margin-top: -20px; position: relative; z-index: 2;
	padding: 9px 16px; border: none; border-radius: 999px;
	background: #fff; cursor: pointer;
	font-family: "Gilroy-Regular", system-ui, sans-serif; font-weight: 500; font-size: 14px;
	color: var(--p-dark) !important; transition: border-color .2s ease, background .25s ease, color .25s ease;
}
.hbtc-prod__desc-toggle::after {
	content: ""; width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px); transition: transform .3s ease;
}
.hbtc-prod__desc-toggle:hover { border-color: var(--p-accent); background: rgba(120,185,86,.10); color: var(--p-accent) !important; }
.hbtc-prod__desc-toggle.is-open::after { transform: rotate(-135deg) translateX(-2px); }

/* ── CTA tlačidlá (štýl navbar CTA: fill sweep + slot text + arrow swap) ── */
.hbtc-prod__cta { display: flex; flex-direction: column; align-items: stretch; gap: 12px; margin-top: 30px; }
.hbtc-prod__ctabtn { display: flex; align-items: center; gap: 3px; width: 100%; transition: transform .15s ease; }
.hbtc-prod__ctabtn:hover { transform: translateY(-2px); }

.hbtc-prod__ctabtn-main,
.hbtc-prod__ctabtn-arrow {
	position: relative; overflow: hidden; isolation: isolate;
	border-radius: 999px; border: 3px solid var(--p-accent);
	background: transparent; color: var(--p-accent);
	font-family: "Gilroy-Regular", system-ui, sans-serif; font-size: 18px;
	text-decoration: none; cursor: pointer; transition: color .3s ease;
}
.hbtc-prod__ctabtn-main { flex: 1 1 auto; display: inline-flex; align-items: center; justify-content: center; height: 68px; padding: 0 32px; }
.hbtc-prod__ctabtn-arrow { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 68px; height: 68px; }
.hbtc-prod__ctabtn-arrow svg { width: 20px; height: 20px; }

.hbtc-prod__ctabtn-fill {
	position: absolute; inset: 0; z-index: -1; background: var(--p-accent);
	transform: scaleX(0); transform-origin: left center; transition: transform .42s cubic-bezier(.22,1,.36,1);
}
.hbtc-prod__ctabtn:hover .hbtc-prod__ctabtn-fill { transform: scaleX(1); }
.hbtc-prod__ctabtn:hover .hbtc-prod__ctabtn-main,
.hbtc-prod__ctabtn:hover .hbtc-prod__ctabtn-arrow { color: #fff; }

.hbtc-prod__ctabtn-text { position: relative; display: block; height: 1.1em; line-height: 1.1em; overflow: hidden; }
.hbtc-prod__ctabtn-text > span { display: block; transition: transform .42s cubic-bezier(.22,1,.36,1); }
.hbtc-prod__ctabtn:hover .hbtc-prod__ctabtn-text > span { transition-delay: .08s; transform: translateY(-1.1em); }

.hbtc-prod__ctabtn-aic { position: relative; display: inline-flex; width: 18px; height: 18px; overflow: hidden; }
.hbtc-prod__ctabtn-aic > span { position: absolute; inset: 0; display: inline-flex; align-items: center; justify-content: center; transition: transform .42s cubic-bezier(.22,1,.36,1); }
.hbtc-prod__ctabtn-aic > span:last-child { transform: translateX(-135%); }
.hbtc-prod__ctabtn:hover .hbtc-prod__ctabtn-aic > span:first-child { transition-delay: .12s; transform: translateX(135%); }
.hbtc-prod__ctabtn:hover .hbtc-prod__ctabtn-aic > span:last-child { transition-delay: .12s; transform: translateX(0); }

/* Buy = plný zelený default, na hover sweep do tmava */
.hbtc-prod__ctabtn--buy .hbtc-prod__ctabtn-main,
.hbtc-prod__ctabtn--buy .hbtc-prod__ctabtn-arrow { background: var(--p-accent); color: #fff; }
.hbtc-prod__ctabtn--buy .hbtc-prod__ctabtn-fill { background: var(--p-dark); }
.hbtc-prod__ctabtn--buy:hover .hbtc-prod__ctabtn-main,
.hbtc-prod__ctabtn--buy:hover .hbtc-prod__ctabtn-arrow { color: #fff; }
.hbtc-prod__ctabtn--buy.is-disabled { opacity: .55; pointer-events: none; transform: none; }

/* label + malý pod-text na neaktívnom Kúpiť ihneď */
.hbtc-prod__ctabtn-label { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; line-height: 1.05; }
.hbtc-prod__buy-sub { display: none; font-family: "Gilroy-Regular", system-ui, sans-serif; font-weight: 400; font-size: 11px; line-height: 1; opacity: .9; }
.hbtc-prod__ctabtn--buy.is-disabled .hbtc-prod__buy-sub { display: block; }

/* Ponuka na mieru = tmavá, fill na hover = naša oranžová (text tmavý); Kúpiť ihneď = zelená */
.hbtc-prod__ctabtn--ghost .hbtc-prod__ctabtn-main,
.hbtc-prod__ctabtn--ghost .hbtc-prod__ctabtn-arrow { border-color: #1e1e1e; background: #1e1e1e !important; color: #fff !important; }
.hbtc-prod__ctabtn--ghost .hbtc-prod__ctabtn-fill { background: #f1bb41 !important; }
.hbtc-prod__ctabtn--ghost:hover .hbtc-prod__ctabtn-main,
.hbtc-prod__ctabtn--ghost:hover .hbtc-prod__ctabtn-arrow { color: #221f20 !important; }

.hbtc-prod__buy-hint { margin: 12px 0 0; font-size: 14px; color: rgba(34,31,32,.55) !important; }

/* ── Embed Google recenzie ───────────────────────── */
.hbtc-prod__trustindex { margin-top: clamp(40px, 6vw, 80px); }
/* Trustindex carousel šípky — naša oranžová */
.hbtc-prod__trustindex .ti-widget.ti-goog .ti-controls .ti-next,
.hbtc-prod__trustindex .ti-widget.ti-goog .ti-controls .ti-prev {
	background-color: #f1bb41 !important;
	outline-color: #f1bb41 !important;
}
.hbtc-prod__trustindex .ti-widget.ti-goog .ti-controls .ti-next:hover,
.hbtc-prod__trustindex .ti-widget.ti-goog .ti-controls .ti-prev:hover {
	background-color: #e0a92f !important;
	outline-color: #e0a92f !important;
}
.hbtc-prod__process { margin-top: clamp(48px, 7vw, 90px); }
.hbtc-prod__faq { margin-top: clamp(48px, 7vw, 90px); }
.hbtc-prod__reviews { margin-top: clamp(40px, 6vw, 80px); }

/* ── Lightbox ────────────────────────────────────── */
.hbtc-prod-lb {
	position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center;
	background: rgba(10,10,10,.92); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s;
	padding: 4vw;
}
.hbtc-prod-lb.is-open { opacity: 1; visibility: visible; }
.hbtc-prod-lb__img { max-width: 92vw; max-height: 88vh; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.hbtc-prod-lb__btn {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 54px; height: 54px; border: 0; border-radius: 50%;
	background: #221f20 !important; color: #fff !important; cursor: pointer;
	box-shadow: 0 8px 22px rgba(0,0,0,.35);
	display: inline-flex; align-items: center; justify-content: center; font-size: 26px; transition: background .2s ease, transform .2s ease;
}
.hbtc-prod-lb__btn:hover { background: var(--p-accent, #78b956) !important; transform: translateY(-50%) scale(1.06); }
.hbtc-prod-lb__prev { left: 3vw; }
.hbtc-prod-lb__next { right: 3vw; }
.hbtc-prod-lb__close { top: 4vw; right: 4vw; transform: none; }

/* ── Inquiry box [hbtc_inquiry] ──────────────────── */
.hbtc-inq { width: 100%; max-width: 1600px; margin: 0 auto; font-family: "Gilroy-Regular", system-ui, sans-serif; }
.hbtc-inq__box { background: #f1bb41 !important; border-radius: 28px; padding: clamp(24px, 4vw, 44px); color: #221f20 !important; }
.hbtc-inq__head { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 20px; flex-wrap: wrap; }
.hbtc-inq__title { font-family: "Gilroy-ExtraBold", system-ui, sans-serif; font-weight: 800; font-size: clamp(22px, 3vw, 32px); color: #221f20 !important; }
.hbtc-inq__summary { font-family: "Gilroy-Regular", system-ui, sans-serif; color: rgba(34,31,32,.7) !important; }

/* notice: import z košíka */
.hbtc-inq__notice {
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
	margin-bottom: 18px; padding: 16px 20px; border-radius: 18px;
	background: rgba(120,185,86,.16) !important;
}
.hbtc-inq__notice-text { font-size: 15px; line-height: 1.4; color: #221f20 !important; }
.hbtc-inq__notice {
	background: rgba(34,31,32,.1) !important;
}
.hbtc-inq__notice-btn {
	flex: 0 0 auto; padding: 10px 20px; border-radius: 999px;
	background: #221f20 !important; color: #fff !important;
	font-family: "Gilroy-Medium", system-ui, sans-serif; font-weight: 500; font-size: 14px;
	text-decoration: none; transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.hbtc-inq__notice-btn:hover { transform: translateY(-2px); }

.hbtc-inq__list { display: flex; flex-direction: column; gap: 12px; }
.hbtc-inq__item {
	position: relative; overflow: hidden;
	display: flex; align-items: center; gap: 16px;
	padding: 14px; border-radius: 18px; background: #fff !important;
}
.hbtc-inq__link { display: flex; align-items: center; gap: 16px; flex: 1 1 auto; min-width: 0; text-decoration: none; color: inherit; }
.hbtc-inq__thumb { flex: 0 0 auto; width: 76px; height: 76px; border-radius: 14px; background: #f1f1ee; background-size: cover; background-position: center; transition: transform .4s cubic-bezier(.22,1,.36,1); }
.hbtc-inq__link:hover .hbtc-inq__thumb { transform: scale(1.05); }
.hbtc-inq__copy { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.hbtc-inq__name { font-family: "Gilroy-Regular", system-ui, sans-serif; font-size: 17px; color: #221f20 !important; transition: color .2s ease; }
.hbtc-inq__link:hover .hbtc-inq__name { color: #5d9740 !important; }
.hbtc-inq__meta { font-size: 14px; color: rgba(34,31,32,.6) !important; }
.hbtc-inq__price { font-family: "Gilroy-ExtraBold", system-ui, sans-serif; font-weight: 800; white-space: nowrap; color: #221f20 !important; margin-left: auto; }
.hbtc-inq__price .woocommerce-Price-amount { color: inherit !important; }

/* odstránenie X — presne ako navbar košík */
.hbtc-inq__remove {
	flex: 0 0 auto; width: 34px; height: 34px; border: 0; cursor: pointer;
	border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
	background: rgba(34,31,32,.08) !important; color: rgba(34,31,32,.7) !important;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}
.hbtc-inq__remove svg { width: 16px; height: 16px; }
.hbtc-inq__remove:hover { background: #e5484d !important; color: #fff !important; transform: scale(1.08); }
.hbtc-inq__confirm {
	position: absolute; inset: 0; z-index: 2;
	display: flex; align-items: center; justify-content: center;
	background: rgba(34,31,32,.92) !important;
}
.hbtc-inq__confirm[hidden] { display: none; }
.hbtc-inq__confirm-btn {
	border: none; cursor: pointer; padding: 12px 26px; border-radius: 999px;
	background: #e5484d !important; color: #fff !important;
	font-family: "Gilroy-Medium", system-ui, sans-serif; font-weight: 500; font-size: 15px;
	transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.hbtc-inq__confirm-btn:hover { transform: scale(1.04); }

.hbtc-inq__note { margin: 18px 0 0; font-size: 14px; color: rgba(34,31,32,.7) !important; }
.hbtc-inq__empty { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; color: rgba(34,31,32,.8); }
.hbtc-inq__empty[hidden] { display: none; }
.hbtc-inq__empty a { color: #221f20 !important; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 560px) {
	.hbtc-inq__item { flex-wrap: wrap; }
	.hbtc-inq__price { margin-left: 92px; }
}

/* Cart „Chcem ponuku na mieru" tlačidlo */
.hbtc-nav-v2__cart-inquiry {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 12px 20px; border-radius: 999px;
	border: 1.5px solid rgba(255,255,255,.25); background: transparent !important;
	color: #fff !important; text-decoration: none;
	font-family: "Gilroy-Regular", system-ui, sans-serif; font-size: 14px;
	transition: border-color .2s ease, background .2s ease;
}
.hbtc-nav-v2__cart-inquiry:hover { border-color: var(--p-accent, #78b956); background: rgba(120,185,86,.12) !important; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
	.hbtc-prod__grid { grid-template-columns: 1fr; }
	.hbtc-prod__gallery { position: static; }
}
@media (max-width: 560px) {
	.hbtc-prod__cta { flex-direction: column; }
	.hbtc-prod__btn { width: 100%; justify-content: center; }
	.hbtc-prod__toggle { width: 100%; }
	.hbtc-prod__toggle-btn { flex: 1 1 auto; text-align: center; }

	/* cenová pečať — font sa dynamicky zmenší aby cena zostala na 1 riadku */
	.hbtc-prod__price {
		min-width: 0;
		max-width: 100%;
		padding: 20px 26px 26px;
		margin: 30px 0 20px;
		transform: rotate(-3deg);
	}
	.hbtc-prod__price-now {
		white-space: nowrap;
		font-size: clamp(20px, 6vw, 42px);
	}
	.hbtc-prod__price-old { font-size: 17px; }
	.hbtc-prod__price-disc {
		top: -12px; right: -8px;
		min-width: 54px; height: 54px;
		font-size: 16px;
	}
	.hbtc-prod__price-dph { font-size: 13px; padding: 6px 13px; }
}

/* ── Formidable formulár v dopyte [hbtc_inquiry] ── */
.hbtc-inq__form {
	margin-top: 18px;
	background: #221f20 !important;
	border-radius: 32px;
	padding: clamp(24px, 4vw, 48px);
	font-family: "Gilroy-Regular", system-ui, sans-serif;
}
.hbtc-inq__form h2, .hbtc-inq__form h3 {
	font-family: "Gilroy-ExtraBold", system-ui, sans-serif; font-weight: 800;
	font-size: clamp(20px, 2.4vw, 30px); line-height: 1.1; letter-spacing: -.5px;
	color: #fff !important; margin: 0 0 16px;
}
.hbtc-inq__form .frm_html_container + * { margin-top: 4px; }
/* labely nepotrebujeme — vizuálne skryté (a11y ostáva); consent (checkbox) ostáva */
.hbtc-inq__form .frm_primary_label,
.hbtc-inq__form .frm_sub_label,
.hbtc-inq__form .frm_form_subfield label {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* consent / GDPR text */
.hbtc-inq__form .frm_checkbox label,
.hbtc-inq__form .frm_radio label {
	position: static !important; width: auto; height: auto; clip: auto; overflow: visible; white-space: normal;
	font-family: "Gilroy-Regular", system-ui, sans-serif; font-size: 13px; line-height: 1.5;
	color: rgba(255,255,255,.6) !important;
}
.hbtc-inq__form .frm_checkbox label a { color: #78b956 !important; text-decoration: underline; }
.hbtc-inq__form input[type="text"],
.hbtc-inq__form input[type="email"],
.hbtc-inq__form input[type="tel"],
.hbtc-inq__form input[type="number"],
.hbtc-inq__form input[type="url"],
.hbtc-inq__form select,
.hbtc-inq__form textarea {
	width: 100%; padding: 22px 24px; border: none !important; border-radius: 22px;
	background: rgba(255,255,255,.07) !important; color: #fff !important;
	font-family: "Gilroy-Regular", system-ui, sans-serif; font-size: 17px; line-height: 1.4;
	outline: 2px solid transparent; outline-offset: 0; box-shadow: none !important;
	transition: outline-color .25s cubic-bezier(.22,1,.36,1), background .25s ease;
}
.hbtc-inq__form textarea { min-height: 140px; resize: vertical; }
.hbtc-inq__form input:focus,
.hbtc-inq__form select:focus,
.hbtc-inq__form textarea:focus {
	outline-color: #78b956; background: rgba(255,255,255,.11) !important;
}
.hbtc-inq__form ::placeholder { color: rgba(255,255,255,.5) !important; opacity: 1; }
.hbtc-inq__form .frm_form_field { margin-bottom: 12px; }

/* submit = CTA štýl navbaru (sweep fill zľava cez gradient + lift) */
.hbtc-inq__form .frm_submit { margin-top: 6px; }
.hbtc-inq .hbtc-inq__form .frm_submit button,
.hbtc-inq .hbtc-inq__form .frm_button_submit,
.hbtc-inq .hbtc-inq__form button[type="submit"],
.hbtc-inq .hbtc-inq__form input[type="submit"] {
	display: inline-flex !important; align-items: center !important; justify-content: center !important;
	width: auto !important; min-width: 220px !important; height: auto !important;
	border: 0 !important; box-shadow: none !important; outline: none !important; text-shadow: none !important;
	cursor: pointer !important; padding: 19px 48px !important; border-radius: 999px !important; margin: 0 !important;
	color: #fff !important;
	background: #78b956 linear-gradient(to right, #f1bb41 50%, #78b956 50%) no-repeat !important;
	background-size: 220% 100% !important;
	background-position: 100% 0 !important;
	font-family: "Gilroy-Medium", system-ui, sans-serif !important; font-weight: 500 !important;
	font-size: 18px !important; line-height: 1 !important; letter-spacing: 0 !important; text-transform: none !important;
	transition: background-position .45s cubic-bezier(.22,1,.36,1), transform .25s cubic-bezier(.22,1,.36,1) !important;
}
.hbtc-inq .hbtc-inq__form .frm_submit button:hover,
.hbtc-inq .hbtc-inq__form .frm_button_submit:hover,
.hbtc-inq .hbtc-inq__form button[type="submit"]:hover,
.hbtc-inq .hbtc-inq__form input[type="submit"]:hover {
	background-position: 0 0 !important; transform: translateY(-2px) !important;
	color: #221f20 !important;
}

/* reveal polí so staggerom */
.hbtc-inq__form .frm_form_field,
.hbtc-inq__form .frm_submit { opacity: 0; transform: translateY(16px); }
.hbtc-inq__form.is-visible .frm_form_field,
.hbtc-inq__form.is-visible .frm_submit {
	animation: hbtcInqFieldIn .55s cubic-bezier(.22,1,.36,1) both;
}
@keyframes hbtcInqFieldIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hbtc-inq__form.is-visible .frm_form_field:nth-child(1) { animation-delay: .04s; }
.hbtc-inq__form.is-visible .frm_form_field:nth-child(2) { animation-delay: .10s; }
.hbtc-inq__form.is-visible .frm_form_field:nth-child(3) { animation-delay: .16s; }
.hbtc-inq__form.is-visible .frm_form_field:nth-child(4) { animation-delay: .22s; }
.hbtc-inq__form.is-visible .frm_form_field:nth-child(5) { animation-delay: .28s; }
.hbtc-inq__form.is-visible .frm_form_field:nth-child(6) { animation-delay: .34s; }
.hbtc-inq__form.is-visible .frm_form_field:nth-child(7) { animation-delay: .40s; }
.hbtc-inq__form.is-visible .frm_form_field:nth-child(8) { animation-delay: .46s; }
.hbtc-inq__form.is-visible .frm_form_field:nth-child(n+9) { animation-delay: .52s; }
