/* VITABOLIC - buton "sus de tot", colt dreapta-jos.
   Culori de brand: crem #f4eee0, auriu #d9aa4a / #b8862f, inchis #191308 */

html body .vtb-totop {
	position: fixed;
	right: 26px;
	bottom: 26px;
	z-index: 9998;

	width: 54px;
	height: 54px;
	padding: 0;
	margin: 0;

	border: 0;
	border-radius: 50%;
	background: #191308;
	color: #d9aa4a;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;

	box-shadow: 0 6px 18px rgba(25, 19, 8, .28);

	opacity: 0;
	visibility: hidden;
	transform: translateY(14px) scale(.86);
	transition: opacity .28s ease, transform .28s cubic-bezier(.34, 1.56, .64, 1), visibility .28s;
}

html body .vtb-totop.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

/* inelul de progres al scroll-ului */
html body .vtb-totop .vtb-totop-ring {
	position: absolute;
	top: 0;
	left: 0;
	width: 54px;
	height: 54px;
	transform: rotate(-90deg);
	pointer-events: none;
}

html body .vtb-totop .vtb-totop-ring circle {
	fill: none;
	stroke-width: 2.5;
}

html body .vtb-totop .vtb-totop-track {
	stroke: rgba(217, 170, 74, .22);
}

html body .vtb-totop .vtb-totop-bar {
	stroke: #d9aa4a;
	stroke-linecap: round;
	transition: stroke-dashoffset .12s linear;
}

/* sageata */
html body .vtb-totop .vtb-totop-arrow {
	position: relative;
	display: block;
	width: 16px;
	height: 16px;
	border-left: 2.5px solid currentColor;
	border-top: 2.5px solid currentColor;
	border-radius: 2px;
	transform: rotate(45deg) translate(2px, 2px);
	transition: transform .25s ease;
}

/* hover / focus */
html body .vtb-totop:hover,
html body .vtb-totop:focus-visible {
	background: #d9aa4a;
	color: #191308;
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 10px 24px rgba(184, 134, 47, .42);
	outline: none;
}

html body .vtb-totop:hover .vtb-totop-track {
	stroke: rgba(25, 19, 8, .22);
}

html body .vtb-totop:hover .vtb-totop-bar {
	stroke: #191308;
}

html body .vtb-totop:focus-visible {
	box-shadow: 0 0 0 3px #f4eee0, 0 0 0 5px #b8862f;
}

/* apasare */
html body .vtb-totop:active {
	transform: translateY(-1px) scale(.93);
	transition-duration: .09s;
}

/* animatia de lansare: sageata pleaca in sus si revine de jos */
html body .vtb-totop.is-launching .vtb-totop-arrow {
	animation: vtbTotopLaunch .55s cubic-bezier(.4, 0, .2, 1);
}

@keyframes vtbTotopLaunch {
	0%   { transform: rotate(45deg) translate(2px, 2px); opacity: 1; }
	40%  { transform: rotate(45deg) translate(16px, -16px); opacity: 0; }
	41%  { transform: rotate(45deg) translate(-14px, 14px); opacity: 0; }
	100% { transform: rotate(45deg) translate(2px, 2px); opacity: 1; }
}

/* unda aurie la apasare */
html body .vtb-totop.is-launching::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 54px;
	height: 54px;
	margin: -27px 0 0 -27px;
	border-radius: 50%;
	border: 2px solid #d9aa4a;
	animation: vtbTotopPulse .55s ease-out;
	pointer-events: none;
}

@keyframes vtbTotopPulse {
	0%   { transform: scale(1); opacity: .7; }
	100% { transform: scale(1.85); opacity: 0; }
}

/* mobil: mai mic si mai aproape de colt, cu respectarea zonei sigure iOS */
@media (max-width: 767px) {
	html body .vtb-totop {
		right: 16px;
		bottom: calc(16px + env(safe-area-inset-bottom, 0px));
		width: 46px;
		height: 46px;
	}

	html body .vtb-totop .vtb-totop-ring {
		width: 46px;
		height: 46px;
	}

	html body .vtb-totop .vtb-totop-arrow {
		width: 14px;
		height: 14px;
	}

	html body .vtb-totop.is-launching::after {
		width: 46px;
		height: 46px;
		margin: -23px 0 0 -23px;
	}
}

/* daca e afisat bannerul de cookie-uri, ridicam butonul */
html body.vtb-cookie-visible .vtb-totop {
	bottom: 96px;
}

@media (max-width: 767px) {
	html body.vtb-cookie-visible .vtb-totop {
		bottom: calc(110px + env(safe-area-inset-bottom, 0px));
	}
}

/* utilizatorii care au cerut mai putina miscare */
@media (prefers-reduced-motion: reduce) {
	html body .vtb-totop,
	html body .vtb-totop .vtb-totop-arrow,
	html body .vtb-totop .vtb-totop-bar {
		transition: opacity .2s ease, visibility .2s;
	}

	html body .vtb-totop.is-launching .vtb-totop-arrow,
	html body .vtb-totop.is-launching::after {
		animation: none;
	}

	html body .vtb-totop:hover,
	html body .vtb-totop:active {
		transform: none;
	}
}

/* in timpul derularii oprim scroll-snap, altfel se agata pe prima pagina */
html.vtb-totop-scrolling {
	scroll-snap-type: none !important;
}

/* ===== Pagina "În curând" (comenzi en-gros) ===== */
html body .vtbSoon{
	max-width: 720px;
	margin: 0 auto;
	padding: 70px 24px 90px;
	text-align: center;
}

html body .vtbSoon-badge{
	display: inline-block;
	padding: 6px 16px;
	border-radius: 99px;
	background: #191308;
	color: #d9aa4a;
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 600;
}

html body .vtbSoon-title{
	margin: 22px 0 0;
	font-family: 'Oswald', Arial, sans-serif;
	font-size: clamp(28px, 4.4vw, 46px);
	line-height: 1.1;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #191308;
	font-weight: 700;
}

html body .vtbSoon-lead{
	margin: 16px auto 0;
	max-width: 560px;
	font-size: 15.5px;
	line-height: 1.65;
	color: #6b6355;
}

html body .vtbSoon-cta{
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 30px;
}

html body .vtbSoon-btn{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 30px;
	border-radius: 99px;
	border: 1px solid transparent;
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 600;
	text-decoration: none;
	transition: all .25s;
}

html body .vtbSoon-btn-gold{background:#d9aa4a;color:#191308}
html body .vtbSoon-btn-gold:hover{background:#b8862f;color:#fff}
html body .vtbSoon-btn-ghost{background:transparent;color:#191308;border-color:#d8cdb2}
html body .vtbSoon-btn-ghost:hover{background:#191308;color:#d9aa4a;border-color:#191308}

html body .vtbSoon-note{
	margin: 26px 0 0;
	font-size: 13px;
	color: #8a8172;
}

html body .vtbSoon-note a{color:#b8862f;text-decoration:none}
html body .vtbSoon-note a:hover{text-decoration:underline}

@media (max-width: 767px){
	html body .vtbSoon{padding: 46px 16px 60px}
	html body .vtbSoon-btn{width:100%;justify-content:center}
}
