/**
 * Hero CTA — кнопка «Зв'язатися» в hero-блоці
 * Підключається в темі без компіляції LESS.
 */

/* Обгортка hero: позиціонування кнопки поверх слайдера/банеру */
.hero-with-cta {
	position: relative;
}

/* Контейнер кнопки: поверх hero, зліва знизу (як у варіанті focus-left) */
.hero-cta-wrap {
	position: absolute;
	bottom: 22%;
	left: 8%;
	z-index: 15;
	pointer-events: none;
}

.hero-cta-wrap .hero-cta {
	pointer-events: auto;
}

/* CTA-кнопка: закруглення, рамка, контрастний фон */
.hero-cta {
	display: inline-block;
	padding: 14px 32px;
	border: 2px solid #fff;
	border-radius: 50px;
	background: #fff;
	color: #323232;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-decoration: none;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.hero-cta:hover,
.hero-cta:focus {
	background: rgba(255, 255, 255, 0.9);
	color: #323232;
	border-color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

/* На малих екранах — по центру знизу */
@media screen and (max-width: 991px) {
	.hero-cta-wrap {
		left: 50%;
		right: auto;
		bottom: 15%;
		transform: translateX(-50%);
		text-align: center;
	}
}

@media screen and (max-width: 767px) {
	.hero-cta-wrap {
		bottom: 12%;
	}
	.hero-cta {
		padding: 12px 26px;
		font-size: 0.95rem;
	}
}

/* ========== CTA в меню (шапка) — кнопка «Call us» перед пошуком ========== */
.header-action-inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 0 4px;
}
.header-action-inner .header-cta-wrap,
.header-action-inner .top-search,
.header-action-inner .shoping_cart,
.header-action-inner .header-top-setting {
	margin-left: 0;
}
.header-action-inner .header-cta-wrap {
	order: -1;
	margin-right: 12px;
}
.header-action-inner .top-search {
	order: 0;
}
.header-action-inner .shoping_cart {
	order: 1;
}
.header-action-inner .header-top-setting {
	order: 2;
}
.header-action-inner .pull-right {
	float: none;
}

.header-cta-wrap {
	line-height: 1;
	display: flex;
	align-items: center;
}

.header-cta {
	display: inline-block;
	padding: 10px 22px;
	border: 2px solid #323232;
	border-radius: 50px;
	background: #323232;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.03em;
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.header-cta:hover,
.header-cta:focus {
	background: #201f1f;
	color: #fff;
	border-color: #201f1f;
	transform: translateY(-1px);
}

@media screen and (max-width: 991px) {
	.header-action-inner .header-cta-wrap {
		margin-right: 8px;
	}
	.header-cta {
		padding: 8px 18px;
		font-size: 13px;
	}
}
