.hbtc-nav-v2 {
	--hbtc-v2-radius: 999px;
	--hbtc-v2-box-height: 70px;
	--hbtc-v2-box-padding: 5px;
	--hbtc-v2-text-muted: rgba(255, 255, 255, 0.76);
	--hbtc-v2-hover: #000000;
	--hbtc-v2-panel-radius: 34px;
	font-family: "Gilroy-Regular", system-ui, sans-serif;
	width: 100%;
}

.hbtc-nav-v2,
.hbtc-nav-v2 * {
	box-sizing: border-box;
}

.hbtc-nav-v2__shell {
	width: min(100%, 1600px);
	margin: 0 auto;
}

.hbtc-nav-v2__mobile-shell {
	display: none;
}

.hbtc-nav-v2__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 28px;
	margin-top: 20px;
	position: relative;
	z-index: 2;
	transition: transform 460ms cubic-bezier(.22, 1, .36, 1);
}

.hbtc-nav-v2__main-pill,
.hbtc-nav-v2__cta-pill {
	transition: transform 460ms cubic-bezier(.22, 1, .36, 1);
}

.hbtc-nav-v2.is-open .hbtc-nav-v2__main-pill {
	transform: translateX(10px);
}

.hbtc-nav-v2.is-open .hbtc-nav-v2__actions {
	transform: translateX(-10px);
}

.hbtc-nav-v2__main-pill,
.hbtc-nav-v2__cta-pill {
	height: var(--hbtc-v2-box-height);
	padding: var(--hbtc-v2-box-padding);
	border-radius: var(--hbtc-v2-radius);
	background: #1e1e1e;
}

.hbtc-nav-v2__main-pill {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
}

.hbtc-nav-v2__brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	flex: 0 0 auto;
	border-radius: 50%;
	overflow: hidden;
}

.hbtc-nav-v2__brand img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hbtc-nav-v2__menu {
	display: inline-flex;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0 0 0 6px;
	list-style: none;
}

.hbtc-nav-v2__item {
	position: relative;
}

.hbtc-nav-v2__link,
.hbtc-nav-v2__trigger {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 60px;
	padding: 0 20px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--hbtc-v2-text-muted);
	font: inherit;
	font-size: 17px;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	overflow: hidden;
	transition: color 220ms ease, padding 260ms cubic-bezier(.2, .7, .2, 1);
}

.hbtc-nav-v2__link {
	align-items: center;
}

.hbtc-nav-v2__trigger-fill,
.hbtc-nav-v2__cta-fill {
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: inherit;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 340ms cubic-bezier(.2, .75, .2, 1);
}

.hbtc-nav-v2__trigger-fill {
	background: var(--hbtc-v2-hover);
}

.hbtc-nav-v2__cta-fill {
	background: #000 !important;
}

.hbtc-nav-v2__trigger-label,
.hbtc-nav-v2__trigger-icon,
.hbtc-nav-v2__cta-text,
.hbtc-nav-v2__cta-arrow-icon {
	position: relative;
	z-index: 1;
}

.hbtc-nav-v2__trigger-label {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.hbtc-nav-v2__trigger-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	opacity: 0;
	transform: translateX(-6px) rotate(0deg);
	transform-origin: center;
	transition: opacity 220ms ease, transform 320ms cubic-bezier(.22, 1, .36, 1);
}

.hbtc-nav-v2__trigger-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.hbtc-nav-v2__item.has-panel:hover .hbtc-nav-v2__trigger {
	padding-left: 28px;
	padding-right: 25px;
}

.hbtc-nav-v2__item:hover .hbtc-nav-v2__trigger-fill,
.hbtc-nav-v2__item:hover .hbtc-nav-v2__link .hbtc-nav-v2__trigger-fill,
.hbtc-nav-v2__item.is-active .hbtc-nav-v2__trigger-fill,
.hbtc-nav-v2__cta-pill:hover .hbtc-nav-v2__cta-main .hbtc-nav-v2__cta-fill,
.hbtc-nav-v2__cta-pill:hover .hbtc-nav-v2__cta-arrow .hbtc-nav-v2__cta-fill {
	transform-origin: left center;
	transform: scaleX(1);
}

.hbtc-nav-v2__item:hover .hbtc-nav-v2__trigger-icon {
	opacity: 1;
	transform: translateX(0) rotate(0deg);
}

.hbtc-nav-v2__item:hover .hbtc-nav-v2__trigger,
.hbtc-nav-v2__item:hover .hbtc-nav-v2__link {
	color: var(--hbtc-v2-text);
}

.hbtc-nav-v2__item.is-active .hbtc-nav-v2__trigger {
	color: var(--hbtc-v2-cta-text, #1b1b1b);
	padding-left: 28px;
	padding-right: 25px;
}

.hbtc-nav-v2__item.is-active .hbtc-nav-v2__trigger-fill {
	background: var(--hbtc-v2-accent, #d8ff5a);
	transform-origin: left center;
	transform: scaleX(1);
}

.hbtc-nav-v2__item.is-active .hbtc-nav-v2__trigger-icon {
	opacity: 1;
	transform: translateX(0) rotate(180deg);
}

.hbtc-nav-v2__cta-pill {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.hbtc-nav-v2__actions {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
	transition: transform 460ms cubic-bezier(.22, 1, .36, 1);
}

.hbtc-nav-v2__cta-main,
.hbtc-nav-v2__cta-arrow {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	border-radius: 999px;
	background: var(--hbtc-v2-cta-bg, #d8ff5a);
	color: var(--hbtc-v2-cta-text, #1b1b1b);
	text-decoration: none;
	overflow: hidden;
}

.hbtc-nav-v2__cart-trigger {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	padding: 5px;
	border: 0;
	border-radius: 999px;
	background: #1e1e1e;
	cursor: pointer;
	overflow: hidden;
}

.hbtc-nav-v2__cart-fill {
	position: absolute;
	inset: 5px;
	border-radius: 999px;
	background: var(--hbtc-v2-cta-bg, #d8ff5a);
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 340ms cubic-bezier(.2, .75, .2, 1);
}

.hbtc-nav-v2__cart-icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: #fff;
}

.hbtc-nav-v2__cart-icon svg {
	width: 100%;
	height: 100%;
}

.hbtc-nav-v2__cart-count {
	position: absolute;
	top: 13px;
	right: 13px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	background: #fff;
	color: #111;
	font-size: 11px;
	line-height: 1;
}

.hbtc-nav-v2__cart-trigger:hover .hbtc-nav-v2__cart-fill,
.hbtc-nav-v2__cart-trigger.is-active .hbtc-nav-v2__cart-fill {
	transform-origin: left center;
	transform: scaleX(1);
}

.hbtc-nav-v2__cart-trigger.is-active .hbtc-nav-v2__cart-icon,
.hbtc-nav-v2__cart-trigger:hover .hbtc-nav-v2__cart-icon {
	color: #111;
}

.hbtc-nav-v2__cta-main {
	padding: 0 30px;
	min-width: 212px;
}

.hbtc-nav-v2__cta-arrow {
	width: 60px;
	margin-left: 2px;
}

.hbtc-nav-v2__cta-main .hbtc-nav-v2__cta-fill {
	transition-duration: 320ms;
}

.hbtc-nav-v2__cta-arrow .hbtc-nav-v2__cta-fill {
	transition-duration: 300ms;
	transition-delay: 135ms;
}

.hbtc-nav-v2__cta-pill:hover .hbtc-nav-v2__cta-main,
.hbtc-nav-v2__cta-pill:hover .hbtc-nav-v2__cta-arrow {
	color: #fff !important;
}

.hbtc-nav-v2__cta-text {
	display: block;
	height: 1.05em;
	font-size: 17px;
	line-height: 1.05;
	color: var(--hbtc-v2-cta-text, #1b1b1b) !important;
	overflow: hidden;
}

.hbtc-nav-v2__cta-text > span {
	display: block;
	transition: transform 400ms cubic-bezier(.22, 1, .36, 1);
}

.hbtc-nav-v2__cta-arrow-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	overflow: hidden;
	color: var(--hbtc-v2-cta-text, #1b1b1b) !important;
}

.hbtc-nav-v2__cta-arrow-icon > span {
	position: absolute;
	inset: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	transition: transform 400ms cubic-bezier(.22, 1, .36, 1);
}

.hbtc-nav-v2__cta-arrow-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.hbtc-nav-v2__cta-pill:hover .hbtc-nav-v2__cta-text > span {
	transition-delay: 110ms;
	transform: translateY(-1.12em);
}

.hbtc-nav-v2__cta-pill:hover .hbtc-nav-v2__cta-arrow-icon > span:first-child {
	transition-delay: 210ms;
	transform: translateX(20px);
}

.hbtc-nav-v2__cta-pill:hover .hbtc-nav-v2__cta-arrow-icon > span:last-child {
	transition-delay: 210ms;
	transform: translateX(0);
}

.hbtc-nav-v2__cta-arrow-icon > span:last-child {
	transform: translateX(-20px);
}

.hbtc-nav-v2__panel-wrap {
	margin-top: calc(var(--hbtc-v2-box-height) * -1 - 10px);
	padding: 96px 42px 30px;
	border-radius: var(--hbtc-v2-panel-radius);
	background: rgba(18, 18, 18, 0.98);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
	transform-origin: top center;
	animation: hbtcNavPanelIn 320ms cubic-bezier(.2, .75, .2, 1) both;
}

.hbtc-nav-v2__panel {
	display: none;
}

.hbtc-nav-v2__panel.is-active {
	display: block;
}

.hbtc-nav-v2__panel-head {
	margin-bottom: 34px;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 320ms ease, transform 360ms cubic-bezier(.2, .75, .2, 1);
}

.hbtc-nav-v2__panel-title {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	color: #fff !important;
	font-size: clamp(32px, 2.5vw, 56px);
	line-height: 1.02;
	text-decoration: none;
}

.hbtc-nav-v2__panel-title-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #f4f4f1;
	color: #101010;
}

.hbtc-nav-v2__panel-title-arrow svg {
	width: 18px;
	height: 18px;
}

.hbtc-nav-v2__panel--cart .hbtc-nav-v2__panel-head {
	margin-bottom: 22px;
}

.hbtc-nav-v2__cart-headline {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	color: #fff !important;
	font-size: clamp(32px, 2.5vw, 56px);
	line-height: 1.02;
}

.hbtc-nav-v2__cart-total {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.72);
}

.hbtc-nav-v2__cart-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.hbtc-nav-v2__cart-item {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 16px;
	padding: 16px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.03);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
	color: #fff;
	transition: background 240ms ease;
}
.hbtc-nav-v2__cart-item:hover { background: rgba(255, 255, 255, 0.05); }

.hbtc-nav-v2__cart-name { text-decoration: none; transition: color .2s ease; }
.hbtc-nav-v2__cart-name:hover { color: var(--hbtc-v2-cta-bg, #d8ff5a) !important; }

.hbtc-nav-v2__cart-remove {
	width: 34px; height: 34px; flex: 0 0 auto;
	display: inline-flex; align-items: center; justify-content: center;
	border: 0; border-radius: 50%; cursor: pointer;
	background: rgba(255, 255, 255, 0.08) !important; color: rgba(255,255,255,.7) !important;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}
.hbtc-nav-v2__cart-remove svg { width: 16px; height: 16px; }
.hbtc-nav-v2__cart-remove:hover { background: #e5484d !important; color: #fff !important; transform: scale(1.08); }

.hbtc-nav-v2__cart-thumb {
	display: block;
	width: 92px;
	height: 92px;
	border-radius: 18px;
	background-color: rgba(255, 255, 255, 0.04);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hbtc-nav-v2__cart-copy {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.hbtc-nav-v2__cart-name {
	font-size: 18px;
	line-height: 1.08;
	color: #fff !important;
}

.hbtc-nav-v2__cart-meta {
	font-size: 14px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.84) !important;
}

.hbtc-nav-v2__cart-subtotal {
	font-size: 17px;
	white-space: nowrap;
	color: #fff !important;
	text-align: right;
}

.hbtc-nav-v2__cart-dph {
	display: block;
	font-size: 11px;
	font-weight: 400;
	line-height: 1;
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.5) !important;
}

.hbtc-nav-v2__cart-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	margin-top: 24px;
}

.hbtc-nav-v2__cart-link {
	align-self: flex-end;
	margin-top: 4px;
	color: #fff !important;
	text-decoration: none;
	font-size: 15px;
	line-height: 1;
	opacity: .7;
	transition: opacity 240ms ease;
}
.hbtc-nav-v2__cart-link:hover { opacity: 1; }

.hbtc-nav-v2__cta-pill--checkout { flex: 0 0 auto; }

/* Skrátený text CTA na mobile (Chcem ponuku na mieru → Ponuka na mieru) */
.hbtc-cta-txt-short { display: none; }
@media (max-width: 1180px) {
	.hbtc-cta-txt-full { display: none; }
	.hbtc-cta-txt-short { display: inline; }
}

/* Inquiry pilulka — defaultne oranžová s tmavým textom, na hover čierne pozadie + biely text */
.hbtc-nav-v2__cta-pill--inquiry .hbtc-nav-v2__cta-main,
.hbtc-nav-v2__cta-pill--inquiry .hbtc-nav-v2__cta-arrow {
	background: #f1bb41 !important;
}
.hbtc-nav-v2__cta-pill--inquiry .hbtc-nav-v2__cta-fill { background: #000 !important; }
.hbtc-nav-v2__cta-pill--inquiry .hbtc-nav-v2__cta-text,
.hbtc-nav-v2__cta-pill--inquiry .hbtc-nav-v2__cta-arrow-icon { color: #221f20 !important; }
.hbtc-nav-v2__cta-pill--inquiry:hover .hbtc-nav-v2__cta-text,
.hbtc-nav-v2__cta-pill--inquiry:hover .hbtc-nav-v2__cta-arrow-icon { color: #fff !important; }

.hbtc-nav-v2__cart-empty {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 0 8px;
}

.hbtc-nav-v2__cart-empty-title {
	font-size: 24px;
	line-height: 1.1;
	color: #fff;
}

.hbtc-nav-v2__panel-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 320px));
	gap: 24px;
	justify-content: start;
}

.hbtc-nav-v2__card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 240px;
	max-width: 320px;
	padding: 0;
	border-radius: 24px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.02);
	color: #f4f4f1;
	text-decoration: none;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
	opacity: 0;
	transform: translateY(22px);
}

.hbtc-nav-v2__card-media {
	display: block;
	aspect-ratio: 16 / 9;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1);
	transition: transform 560ms cubic-bezier(.22, 1, .36, 1);
}

.hbtc-nav-v2__card-media--empty {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)), #1f1f1f;
}

.hbtc-nav-v2__card-copy {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 10px;
	padding: 18px 22px 22px;
}

.hbtc-nav-v2__card-title {
	font-size: 21px;
	line-height: 1.08;
	color: #f4f4f1;
}

.hbtc-nav-v2__card-desc {
	font-size: 15px;
	line-height: 1.45;
	color: rgba(244, 244, 241, 0.72);
}

.hbtc-nav-v2__card-arrow {
	position: absolute;
	top: 18px;
	right: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #f4f4f1;
	color: #111;
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity 220ms ease, transform 240ms ease;
}

.hbtc-nav-v2__card-arrow svg {
	width: 18px;
	height: 18px;
}

.hbtc-nav-v2__card:hover .hbtc-nav-v2__card-arrow {
	opacity: 1;
	transform: translateY(0);
}

.hbtc-nav-v2__card:hover .hbtc-nav-v2__card-media {
	transform: scale(1.06);
}

.hbtc-nav-v2__card:hover {
	transform: translateY(-2px);
}

.hbtc-nav-v2.is-content-visible .hbtc-nav-v2__panel.is-active .hbtc-nav-v2__panel-head {
	opacity: 1;
	transform: translateY(0);
}

.hbtc-nav-v2.is-content-visible .hbtc-nav-v2__panel.is-active .hbtc-nav-v2__card {
	animation: hbtcNavCardIn 420ms cubic-bezier(.2, .75, .2, 1) both;
	animation-delay: var(--card-delay, 0s);
}

@keyframes hbtcNavPanelIn {
	from {
		opacity: 0;
		transform: translateY(-10px) scaleY(.92);
	}
	to {
		opacity: 1;
		transform: translateY(0) scaleY(1);
	}
}

@keyframes hbtcNavCardIn {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1180px) {
	.hbtc-nav-v2 {
		overflow: visible;
	}

	.hbtc-nav-v2__shell {
		width: 100%;
		padding: 0;
		background: transparent;
		border-radius: 0;
		overflow: visible;
		transition: width 420ms cubic-bezier(.22, 1, .36, 1), transform 420ms cubic-bezier(.22, 1, .36, 1), padding 420ms cubic-bezier(.22, 1, .36, 1), border-radius 420ms cubic-bezier(.22, 1, .36, 1);
	}

	.hbtc-nav-v2.is-mobile-open .hbtc-nav-v2__shell {
		width: calc(100% - 40px);
		margin: 0 auto;
		transform: translateY(8px);
		background: rgba(18, 18, 18, 0.98);
		border-radius: 34px;
		overflow: hidden;
		display: flex;
		flex-direction: column;
		max-height: calc(100vh - 48px);
		max-height: calc(100dvh - 48px);
	}

	.hbtc-nav-v2__top {
		display: none;
	}

	.hbtc-nav-v2__mobile-shell {
		display: block;
		margin-top: 10px;
		padding: 0;
		background: transparent;
		border-radius: 0;
		transition: margin-top 420ms cubic-bezier(.22, 1, .36, 1), padding 420ms cubic-bezier(.22, 1, .36, 1);
	}

	.hbtc-nav-v2.is-mobile-open .hbtc-nav-v2__mobile-shell {
		margin-top: 20px;
		padding: 18px 18px 0;
	}

	.hbtc-nav-v2__mobile-top {
		display: grid;
		grid-template-columns: 64px minmax(0, 1fr) auto;
		align-items: center;
		gap: 12px;
		padding: 14px;
		background: #221f20;
		border-radius: 24px;
		transition: border-radius 420ms cubic-bezier(.22, 1, .36, 1), padding 420ms cubic-bezier(.22, 1, .36, 1);
	}

	.hbtc-nav-v2__mobile-logo,
	.hbtc-nav-v2__mobile-back,
	.hbtc-nav-v2__mobile-cart,
	.hbtc-nav-v2__mobile-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 64px;
		height: 64px;
		border: 0;
		border-radius: 999px;
		background: #151515;
		color: #fff;
	}

	.hbtc-nav-v2__mobile-logo {
		background: transparent;
		padding: 0;
		overflow: hidden;
	}

	.hbtc-nav-v2__mobile-logo img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.hbtc-nav-v2__mobile-back {
		display: none;
		cursor: pointer;
	}

	.hbtc-nav-v2__mobile-back svg,
	.hbtc-nav-v2__mobile-cart-icon svg {
		width: 28px;
		height: 28px;
	}

	.hbtc-nav-v2__mobile-title-wrap {
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 0;
		height: 64px;
		padding: 0 18px;
		border-radius: 999px;
		background: transparent;
		color: #fff !important;
		text-decoration: none;
		font-size: clamp(24px, 2.5vw, 34px);
		line-height: 1;
	}

	.hbtc-nav-v2__mobile-title-wrap {
		display: flex;
		padding: 0 8px;
	}

	.hbtc-nav-v2__mobile-title {
		display: block;
		width: 100%;
		text-align: center;
		color: #fff;
		font-size: clamp(24px, 2.5vw, 34px);
		line-height: 1;
	}

	.hbtc-nav-v2__mobile-actions {
		display: inline-flex;
		align-items: center;
		gap: 12px;
	}

	.hbtc-nav-v2__mobile-cart,
	.hbtc-nav-v2__mobile-toggle {
		position: relative;
		cursor: pointer;
	}

	.hbtc-nav-v2__mobile-cart-count {
		position: absolute;
		top: 8px;
		right: 6px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 20px;
		height: 20px;
		padding: 0 5px;
		border-radius: 999px;
		background: #fff;
		color: #111;
		font-size: 10px;
		line-height: 1;
		box-shadow: 0 0 0 2px #151515;
	}

	.hbtc-nav-v2__mobile-cart-icon {
		transform: translateY(3px);
	}

	.hbtc-nav-v2__mobile-toggle {
		transition: transform 360ms cubic-bezier(.22, 1, .36, 1);
	}

	.hbtc-nav-v2__mobile-toggle span {
		position: absolute;
		display: block;
		width: 28px;
		height: 3px;
		border-radius: 3px;
		background: #fff;
		transition: transform 320ms cubic-bezier(.22, 1, .36, 1), opacity 220ms ease;
	}

	.hbtc-nav-v2__mobile-toggle span:nth-child(1) {
		transform: translateY(-11px);
	}

	.hbtc-nav-v2__mobile-toggle span:nth-child(3) {
		transform: translateY(11px);
	}

	.hbtc-nav-v2.is-mobile-open .hbtc-nav-v2__mobile-toggle span:nth-child(1) {
		transform: rotate(45deg);
	}

	.hbtc-nav-v2.is-mobile-open .hbtc-nav-v2__mobile-toggle span:nth-child(2) {
		opacity: 0;
	}

	.hbtc-nav-v2.is-mobile-open .hbtc-nav-v2__mobile-toggle span:nth-child(3) {
		transform: rotate(-45deg);
	}

	.hbtc-nav-v2.is-mobile-detail .hbtc-nav-v2__mobile-logo,
	.hbtc-nav-v2.is-mobile-cart .hbtc-nav-v2__mobile-logo {
		display: none;
	}

	.hbtc-nav-v2.is-mobile-detail .hbtc-nav-v2__mobile-back,
	.hbtc-nav-v2.is-mobile-cart .hbtc-nav-v2__mobile-back {
		display: inline-flex;
	}

	.hbtc-nav-v2.is-mobile-root .hbtc-nav-v2__mobile-cart,
	.hbtc-nav-v2.is-mobile-detail .hbtc-nav-v2__mobile-cart,
	.hbtc-nav-v2.is-mobile-cart .hbtc-nav-v2__mobile-cart {
		display: none;
	}

	.hbtc-nav-v2__panel-wrap {
		margin-top: 0;
		padding: 0 18px 18px;
		background: transparent;
		border-radius: 0;
		box-shadow: none;
		animation: none;
		flex: 1 1 auto;
		min-height: 0;
		overflow-y: auto !important;
		overflow-x: hidden;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
	}

	.hbtc-nav-v2__mobile-menu {
		display: grid;
		grid-template-columns: 1fr;
		padding: 22px 14px 18px;
	}

.hbtc-nav-v2__mobile-cta-row {
		margin-top: 24px;
	}

	.hbtc-nav-v2__mobile-socials-row {
		margin-top: 18px;
		padding: 0 8px 6px;
	}

	.hbtc-nav-v2__mobile-socials-row .hbtc-nav-v2__socials {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 14px;
	}

	.hbtc-nav-v2__mobile-socials-row .hbtc-nav-v2__socials a {
		justify-content: center;
		width: 48px;
		height: 48px;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.06) !important;
		color: rgba(255, 255, 255, 0.72) !important;
	}

	.hbtc-nav-v2__mobile-socials-row .hbtc-nav-v2__socials a:hover,
	.hbtc-nav-v2__mobile-socials-row .hbtc-nav-v2__socials a:focus-visible {
		background: rgba(255, 255, 255, 0.12) !important;
		color: #fff !important;
	}

	.hbtc-nav-v2__mobile-socials-row .hbtc-nav-v2__soc-icon {
		display: inline-flex;
		width: 21px;
		height: 21px;
	}

	.hbtc-nav-v2__mobile-socials-row .hbtc-nav-v2__soc-icon svg {
		width: 21px;
		height: 21px;
	}

	.hbtc-nav-v2__mobile-socials-row .hbtc-nav-v2__soc-txt,
	.hbtc-nav-v2__mobile-socials-row .hbtc-nav-v2__soc-arr {
		display: none;
	}

	.hbtc-nav-v2__mobile-item {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 18px;
		padding: 9px 8px;
		border: 0;
		background: transparent;
		color: rgba(255, 255, 255, 0.72);
		font: inherit;
		font-size: clamp(42px, 8vw, 84px);
		line-height: .98;
		text-align: left;
		text-decoration: none;
		cursor: pointer;
	}

	.hbtc-nav-v2__mobile-item:hover,
	.hbtc-nav-v2__mobile-item:focus-visible {
		color: #fff;
	}

	/* Položky len pre mobil — menšie, jednoduchšie */
	.hbtc-nav-v2__mobile-item.is-mobile-only {
		font-size: clamp(20px, 4.6vw, 30px);
		padding-top: 7px;
		padding-bottom: 7px;
		color: rgba(255, 255, 255, 0.55);
	}

	.hbtc-nav-v2__mobile-item.is-mobile-only .hbtc-nav-v2__mobile-item-arrow {
		width: 30px;
		height: 30px;
	}

	/* oddeľovač medzi hlavnými a mobil-only položkami */
	.hbtc-nav-v2__mobile-item:not(.is-mobile-only) + .hbtc-nav-v2__mobile-item.is-mobile-only {
		margin-top: 14px;
		padding-top: 16px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.hbtc-nav-v2__mobile-item-arrow {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		color: #fff;
		flex: 0 0 auto;
	}

	.hbtc-nav-v2__mobile-item-arrow svg {
		width: 100%;
		height: 100%;
	}

	.hbtc-nav-v2.is-mobile-detail .hbtc-nav-v2__mobile-menu,
	.hbtc-nav-v2.is-mobile-cart .hbtc-nav-v2__mobile-menu {
		display: none;
	}

	.hbtc-nav-v2__panel {
		padding: 22px 14px 0;
	}

	.hbtc-nav-v2__panel-head {
		margin-bottom: 28px;
	}

	.hbtc-nav-v2__panel-title {
		width: 100%;
		justify-content: space-between;
		font-size: clamp(30px, 6vw, 58px);
	}

	.hbtc-nav-v2__panel-title-arrow {
		width: 64px;
		height: 64px;
	}

	.hbtc-nav-v2__panel-title-arrow svg {
		width: 24px;
		height: 24px;
	}

	.hbtc-nav-v2__panel-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.hbtc-nav-v2__card {
		max-width: none;
		min-height: 0;
	}

	.hbtc-nav-v2__card-media {
		aspect-ratio: 16 / 9;
	}

	.hbtc-nav-v2__card-copy {
		padding: 18px 18px 22px;
	}

	.hbtc-nav-v2__card-title {
		font-size: 24px;
		line-height: 1.08;
	}

	.hbtc-nav-v2__card-desc {
		font-size: 16px;
		line-height: 1.5;
	}

	.hbtc-nav-v2__card-arrow {
		top: 18px;
		right: 18px;
		opacity: 1;
		transform: none;
	}

	.hbtc-nav-v2__panel--cart .hbtc-nav-v2__panel-head {
		margin-bottom: 28px;
	}

	.hbtc-nav-v2__cart-headline {
		font-size: clamp(28px, 6vw, 52px);
	}

	.hbtc-nav-v2__cart-list {
		gap: 16px;
	}

	.hbtc-nav-v2__cart-item {
		grid-template-columns: 104px minmax(0, 1fr);
		align-items: start;
	}

	.hbtc-nav-v2__cart-thumb {
		width: 104px;
		height: 104px;
	}

	.hbtc-nav-v2__cart-name {
		font-size: 18px;
	}

	.hbtc-nav-v2__cart-subtotal {
		grid-column: 2;
		font-size: 17px;
	}

	.hbtc-nav-v2__cart-actions,
	.hbtc-nav-v2__cart-empty {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 860px) {
	.hbtc-nav-v2__shell {
		padding: 0;
		border-radius: 0;
	}

	.hbtc-nav-v2.is-mobile-open .hbtc-nav-v2__shell {
		width: calc(100% - 20px);
		border-radius: 26px;
		max-height: calc(100vh - 40px);
		max-height: calc(100dvh - 40px);
	}

	.hbtc-nav-v2__mobile-shell {
		padding: 0;
		border-radius: 0;
	}

	.hbtc-nav-v2.is-mobile-open .hbtc-nav-v2__mobile-shell {
		padding: 10px 10px 0;
	}

	.hbtc-nav-v2__mobile-top {
		grid-template-columns: 56px minmax(0, 1fr) auto;
		gap: 8px;
		padding: 10px;
		border-radius: 20px;
	}

	.hbtc-nav-v2__mobile-logo,
	.hbtc-nav-v2__mobile-back,
	.hbtc-nav-v2__mobile-cart,
	.hbtc-nav-v2__mobile-toggle {
		width: 56px;
		height: 56px;
	}

	.hbtc-nav-v2__mobile-title-wrap {
		height: 56px;
		padding: 0 14px;
		font-size: 18px;
	}

	.hbtc-nav-v2__mobile-title {
		font-size: 18px;
	}

	.hbtc-nav-v2__mobile-back svg,
	.hbtc-nav-v2__mobile-cart-icon svg {
		width: 22px;
		height: 22px;
	}

	.hbtc-nav-v2__mobile-toggle span {
		width: 22px;
	}

	.hbtc-nav-v2__panel-wrap {
		padding: 0 10px 10px;
		border-radius: 0;
	}

	.hbtc-nav-v2__mobile-menu,
	.hbtc-nav-v2__panel {
		padding-left: 10px;
		padding-right: 10px;
	}

	.hbtc-nav-v2__mobile-item {
		font-size: 34px;
	}

	.hbtc-nav-v2__panel-title {
		font-size: 22px;
	}

	.hbtc-nav-v2__panel-title-arrow {
		width: 52px;
		height: 52px;
	}

	.hbtc-nav-v2__cart-item {
		grid-template-columns: 72px minmax(0, 1fr);
	}

	.hbtc-nav-v2__cart-thumb {
		width: 72px;
		height: 72px;
	}
}

/* ── Mega-menu pätička: socials (text+šípka) + logo ── */
.hbtc-nav-v2__panel-foot {
	display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
	margin-top: 12px; padding-top: 0;
	border-top: 0;
}
.hbtc-nav-v2__socials { display: flex; flex-wrap: wrap; gap: 26px; list-style: none; margin: 0 !important; margin-bottom: 0 !important; padding: 0; }
.hbtc-nav-v2__socials a {
	display: inline-flex; align-items: center; gap: 5px;
	color: rgba(244, 244, 241, .8); text-decoration: none;
	font-family: "Gilroy-Regular", system-ui, sans-serif; font-size: 17px;
	transition: color .25s ease;
}
.hbtc-nav-v2__socials a:hover { color: #fff; }
.hbtc-nav-v2__soc-icon { display: none; align-items: center; justify-content: center; width: 18px; height: 18px; }
.hbtc-nav-v2__soc-icon svg { width: 18px; height: 18px; display: block; }
.hbtc-nav-v2__soc-arr { position: relative; display: inline-flex; width: 14px; height: 14px; overflow: hidden; }
.hbtc-nav-v2__soc-arr > span {
	position: absolute; inset: 0; display: inline-flex; align-items: center; justify-content: center;
	transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}
.hbtc-nav-v2__soc-arr svg { width: 14px; height: 14px; display: block; }
.hbtc-nav-v2__soc-arr > span:last-child { transform: translate(-100%, 100%); }
.hbtc-nav-v2__socials a:hover .hbtc-nav-v2__soc-arr > span:first-child { transform: translate(100%, -100%); }
.hbtc-nav-v2__socials a:hover .hbtc-nav-v2__soc-arr > span:last-child { transform: translate(0, 0); }

.hbtc-nav-v2__panel-logo { flex: 0 0 auto; line-height: 0; opacity: .92; transition: opacity .25s ease; }
.hbtc-nav-v2__panel-logo:hover { opacity: 1; }
.hbtc-nav-v2__panel-logo img { height: 40px; width: auto; display: block; }

@media (max-width: 1180px) {
	.hbtc-nav-v2__panel-foot { display: none; }
	.hbtc-nav-v2__panel-logo img { height: 28px; }
}
