/**
 * Poslednja stavka glavnog menija = CTA (npr. Let’s talk): bez pozadine / crni tekst;
 * hover: crna pozadina + beli tekst. Važi za Home New heder i klasičan page-header.
 */

/* --- Klasičan heder (header.php) --- */
.page-header-navigation #primary-menu > .menu-item:last-child > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	background: transparent;
	color: #111215;
	border-radius: 50px;
	padding: 20px 10px;
	min-width: 0;
	height: 44px;
	box-sizing: border-box;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
	transform: none;
}

.page-header-navigation #primary-menu > .menu-item:last-child > a:hover,
.page-header-navigation #primary-menu > .menu-item:last-child > a:focus-visible {
	background: #111215;
	color: #ffffff;
	outline: none;
	transform: none;
}

.page-header-navigation #primary-menu > .menu-item:last-child > a:focus-visible {
	box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #111215;
}

/* Ukloni podrazumevanu donju crtu iz glavnog styles.css za ovu stavku */
.page-header-navigation #primary-menu > .menu-item:last-child > a::after {
	display: none;
}

.page-header-navigation #primary-menu > .menu-item:last-child > a::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url('../images/home-new/cil_arrow-left.svg') no-repeat center;
	background-size: contain;
	flex-shrink: 0;
	filter: brightness(0);
}

.page-header-navigation #primary-menu > .menu-item:last-child > a:hover::before,
.page-header-navigation #primary-menu > .menu-item:last-child > a:focus-visible::before {
	filter: none;
}

/* --- Home New heder (header-home-new.php) --- */
.home-new-header__menu > .home-new-header__item:last-child > a {
	background: transparent;
	color: var(--color-primary);
	border-radius: 50px;
	padding: 20px 10px;
	min-width: 0;
	height: 44px;
	box-sizing: border-box;
	justify-content: center;
	gap: 13px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.home-new-header__menu > .home-new-header__item:last-child > a:hover,
.home-new-header__menu > .home-new-header__item:last-child > a:focus-visible {
	background: var(--color-primary);
	color: var(--color-secondary);
	outline: none;
}

.home-new-header__menu > .home-new-header__item:last-child > a:focus-visible {
	box-shadow: 0 0 0 2px var(--color-secondary), 0 0 0 4px var(--color-primary);
}

.home-new-header__menu > .home-new-header__item:last-child > a::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url('../images/home-new/cil_arrow-left.svg') no-repeat center;
	background-size: contain;
	flex-shrink: 0;
	filter: brightness(0);
}

.home-new-header__menu > .home-new-header__item:last-child > a:hover::before,
.home-new-header__menu > .home-new-header__item:last-child > a:focus-visible::before {
	filter: none;
}
