body.admin-logged #header .navigation-buttons .custom-header-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border: 1px solid #e2e2e2;
	border-radius: 50%;
	background: #fff;
	color: #222;
	font-family: 'Material Symbols Outlined';
	font-size: 24px;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	transition:
		border-color 0.2s ease,
		background-color 0.2s ease;
}

body.admin-logged .navigation-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center !important;
    justify-content: center !important;
}

body.admin-logged .navigation-buttons>a.custom-header-action.custom-header-login:before {
    display: none !important;
}

body.admin-logged .custom-current-currency,
body.admin-logged .header-top .btn.cart-count .cart-price {
    display: none !important;
}

body.admin-logged #header .navigation-buttons .custom-header-label {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	white-space: nowrap;
}

body.admin-logged #header .navigation-buttons .custom-header-action {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	margin-left: 16px;
	color: #222;
	text-decoration: none;
}

body.admin-logged #header .navigation-buttons .custom-header-login {
	gap: 8px;
}

body.admin-logged #header .navigation-buttons .custom-header-login:hover {
	color: #222;
	text-decoration: none;
}

body.admin-logged #header .navigation-buttons .custom-header-login:hover .custom-header-icon {
	border-color: #bdbdbd;
	background-color: #f5f5f5;
}

body.admin-logged #header .navigation-buttons .custom-header-login:focus-visible {
	outline: 2px solid #222;
	outline-offset: 4px;
	border-radius: 4px;
}

/* Skryté původní ikony košíku vykreslené pseudoelementem. */
body.admin-logged #header .navigation-buttons .custom-header-cart::before {
	display: none;
}

body.admin-logged #header .navigation-buttons .custom-header-cart .custom-cart-icon {
	vertical-align: middle;
}

body.admin-logged #header .navigation-buttons .custom-header-cart:hover .custom-cart-icon {
	border-color: #bdbdbd;
	background-color: #f5f5f5;
}

body.admin-logged #header .navigation-buttons .custom-header-currency {
	position: relative;
}

body.admin-logged #header .navigation-buttons .custom-header-currency.is-open .custom-currency-menu {
	display: block;
}

body.admin-logged #header .navigation-buttons .custom-header-currency.is-open .custom-currency-button::after {
	transform: rotate(225deg);
}

body.admin-logged #header .navigation-buttons .custom-currency-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	cursor: pointer;
}

body.admin-logged #header .navigation-buttons .custom-currency-button::after {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	margin: -3px 2px 0 3px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
}

body.admin-logged #header .navigation-buttons .custom-currency-button:hover .custom-header-icon {
	border-color: #bdbdbd;
	background-color: #f5f5f5;
}

body.admin-logged #header .navigation-buttons .custom-currency-button:focus-visible {
	outline: 2px solid #222;
	outline-offset: 4px;
	border-radius: 4px;
}

body.admin-logged #header .navigation-buttons .custom-current-currency {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
}

body.admin-logged #header .navigation-buttons .custom-currency-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 1000;
	display: none;
	min-width: 110px;
	padding: 6px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body.admin-logged #header .navigation-buttons .custom-currency-menu a {
	display: block;
	padding: 10px 14px;
	border-radius: 4px;
	color: #222;
	font-size: 13px;
	line-height: 1.4;
	text-align: left;
	text-decoration: none;
	white-space: nowrap;
}

body.admin-logged #header .navigation-buttons .custom-currency-menu a:hover,
body.admin-logged #header .navigation-buttons .custom-currency-menu a:focus-visible {
	background: #f2f2f2;
}

body.admin-logged #header .navigation-buttons .custom-currency-menu a.active {
	background: #ededed;
	font-weight: 700;
}

@media (max-width: 767px) {
	body.admin-logged #header .navigation-buttons .custom-header-action {
		margin-left: 10px;
	}

	body.admin-logged #header .navigation-buttons .custom-header-icon {
		width: 36px;
		height: 36px;
		font-size: 22px;
	}

	body.admin-logged #header .navigation-buttons .custom-header-label {
		display: none;
	}

	body.admin-logged #header .navigation-buttons .custom-currency-button {
		gap: 5px;
	}

	body.admin-logged #header .navigation-buttons .custom-current-currency {
		font-size: 11px;
	}
}