/**
 * PixelBorsch Core - Site Header Pro Stylesheet
 * Luxury, responsive header with logo, live AJAX search, navigation menu,
 * mobile off-canvas drawer, sticky scroll behavior, and cart integration.
 *
 * @package PixelBorsch_Core
 */

:root {
	--pb-hdr-gold: #c5a059;
	--pb-hdr-gold-hover: #b08d47;
	--pb-hdr-gold-light: rgba(197, 160, 89, 0.12);
	--pb-hdr-dark: #1e293b;
	--pb-hdr-dark-soft: #334155;
	--pb-hdr-gray: #64748b;
	--pb-hdr-light-bg: #ffffff;
	--pb-hdr-cream: #fdfbf7;
	--pb-hdr-border: rgba(226, 232, 240, 0.85);
	--pb-hdr-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	--pb-hdr-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   1. Header Wrapper & Sticky State
   ========================================================================= */

.pb-site-header {
	width: 100%;
	position: relative;
	background-color: var(--pb-hdr-light-bg);
	border-bottom: 1px solid var(--pb-hdr-border);
	transition: var(--pb-hdr-transition);
	z-index: 999;
}

.pb-site-header--sticky {
	position: sticky;
	top: 0;
}

.pb-site-header.is-scrolled {
	box-shadow: var(--pb-hdr-shadow);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background-color: rgba(255, 255, 255, 0.94);
}

.admin-bar .pb-site-header--sticky {
	top: 32px;
}
@media (max-width: 782px) {
	.admin-bar .pb-site-header--sticky {
		top: 46px;
	}
}

.pb-header-inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	transition: padding 0.3s ease;
}

.pb-site-header.is-scrolled .pb-header-inner {
	padding-top: 10px;
	padding-bottom: 10px;
}

/* ==========================================================================
   2. Logo Area
   ========================================================================= */

.pb-header-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	text-decoration: none;
	color: var(--pb-hdr-dark);
}

.pb-header-logo__link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.pb-header-logo__img {
	display: block;
	max-height: 48px;
	width: auto;
	object-fit: contain;
	transition: var(--pb-hdr-transition);
}

.pb-site-header.is-scrolled .pb-header-logo__img {
	max-height: 42px;
}

.pb-header-logo__text-wrap {
	display: flex;
	flex-direction: column;
}

.pb-header-logo__title {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--pb-hdr-dark);
	line-height: 1.15;
	margin: 0;
	font-family: inherit;
}

.pb-header-logo__tagline {
	font-size: 11px;
	color: var(--pb-hdr-gray);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-top: 2px;
}

/* ==========================================================================
   3. Search Bar & Dropdown Results
   ========================================================================= */

.pb-header-search {
	position: relative;
	flex: 1;
	max-width: 480px;
	margin: 0 15px;
}

.pb-header-search__form {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.pb-header-search__input {
	width: 100%;
	height: 44px;
	padding: 0 44px 0 42px;
	background: #f8fafc;
	border: 1px solid var(--pb-hdr-border);
	border-radius: 9999px;
	font-size: 14px;
	color: var(--pb-hdr-dark);
	outline: none;
	transition: var(--pb-hdr-transition);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.pb-header-search__input:focus {
	background: #ffffff;
	border-color: var(--pb-hdr-gold);
	box-shadow: 0 0 0 3px var(--pb-hdr-gold-light), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pb-header-search__icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: var(--pb-hdr-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease;
}

.pb-header-search__input:focus + .pb-header-search__icon,
.pb-header-search__form:hover .pb-header-search__icon {
	color: var(--pb-hdr-gold);
}

.pb-header-search__clear {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #94a3b8;
	cursor: pointer;
	padding: 4px;
	font-size: 16px;
	line-height: 1;
	display: none;
	border-radius: 50%;
	transition: all 0.2s ease;
}

.pb-header-search__clear:hover {
	color: #ef4444;
	background-color: #fee2e2;
}

.pb-header-search__spinner {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border: 2px solid rgba(197, 160, 89, 0.2);
	border-top-color: var(--pb-hdr-gold);
	border-radius: 50%;
	animation: pbHdrSpin 0.7s linear infinite;
	display: none;
}

@keyframes pbHdrSpin {
	to { transform: translateY(-50%) rotate(360deg); }
}

/* Search Results Autocomplete Dropdown */
.pb-header-search__results {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid var(--pb-hdr-border);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
	max-height: 420px;
	overflow-y: auto;
	z-index: 1000;
	display: none;
	padding: 8px 0;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.pb-header-search__results.is-visible {
	display: block;
	animation: pbHdrFadeSlide 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pbHdrFadeSlide {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: translateY(0); }
}

.pb-search-results-list {
	display: flex;
	flex-direction: column;
}

.pb-search-result-item {
	display: flex;
	align-items: center;
	padding: 10px 16px;
	gap: 14px;
	text-decoration: none;
	color: var(--pb-hdr-dark);
	border-bottom: 1px solid rgba(241, 245, 249, 0.8);
	transition: background-color 0.15s ease;
}

.pb-search-result-item:last-child {
	border-bottom: none;
}

.pb-search-result-item:hover,
.pb-search-result-item:focus {
	background-color: #f8fafc;
}

.pb-search-item-thumb {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
	background-color: #f1f5f9;
	border: 1px solid #e2e8f0;
}

.pb-search-item-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.pb-search-item-title {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--pb-hdr-dark);
	margin-bottom: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pb-search-item-sku {
	font-size: 11px;
	color: var(--pb-hdr-gray);
	margin-bottom: 2px;
}

.pb-search-item-price {
	font-size: 13px;
	font-weight: 700;
	color: var(--pb-hdr-gold);
}

.pb-search-item-price del {
	color: #94a3b8;
	font-weight: 400;
	font-size: 11.5px;
	margin-right: 4px;
}

.pb-search-no-results,
.pb-search-loading-text {
	padding: 18px 20px;
	text-align: center;
	font-size: 13.5px;
	color: var(--pb-hdr-gray);
}

/* ==========================================================================
   4. Desktop Navigation Menu
   ========================================================================= */

.pb-header-nav {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.pb-header-menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 6px;
}

.pb-header-menu > .menu-item {
	position: relative;
}

.pb-header-menu > .menu-item > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	font-size: 14.5px;
	font-weight: 500;
	color: var(--pb-hdr-dark);
	text-decoration: none;
	border-radius: 8px;
	transition: var(--pb-hdr-transition);
}

.pb-header-menu > .menu-item > a:hover,
.pb-header-menu > .menu-item.current-menu-item > a,
.pb-header-menu > .menu-item.current-menu-ancestor > a {
	color: var(--pb-hdr-gold);
	background-color: var(--pb-hdr-gold-light);
}

/* Submenus */
.pb-header-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #ffffff;
	border: 1px solid var(--pb-hdr-border);
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
	padding: 8px;
	list-style: none;
	margin: 8px 0 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: var(--pb-hdr-transition);
	z-index: 1001;
}

.pb-header-menu .menu-item-has-children:hover > .sub-menu,
.pb-header-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.pb-header-menu .sub-menu .menu-item a {
	display: block;
	padding: 8px 12px;
	font-size: 13.5px;
	color: var(--pb-hdr-dark);
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.pb-header-menu .sub-menu .menu-item a:hover {
	color: var(--pb-hdr-gold);
	background-color: #f8fafc;
	padding-left: 16px;
}

/* ==========================================================================
   5. Header Actions (Cart, Phone, Wishlist)
   ========================================================================= */

.pb-header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.pb-header-action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #f8fafc;
	border: 1px solid var(--pb-hdr-border);
	color: var(--pb-hdr-dark);
	text-decoration: none;
	cursor: pointer;
	transition: var(--pb-hdr-transition);
}

.pb-header-action-btn svg {
	display: block;
	transition: transform 0.2s ease, stroke 0.2s ease;
}

.pb-header-action-btn i {
	font-size: 19px;
	line-height: 1;
	transition: transform 0.2s ease, color 0.2s ease;
}

.pb-header-action-btn:hover {
	background: #ffffff;
	color: var(--pb-hdr-gold);
	border-color: var(--pb-hdr-gold);
	box-shadow: 0 4px 14px rgba(197, 160, 89, 0.2);
}

/* Floating Cart matching style (dark circle + white icon + luxury gold gradient badge) */
.pb-header-action-btn--cart-floating {
	background: #0f172a;
	color: #ffffff;
	border-color: #0f172a;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.pb-header-action-btn--cart-floating svg {
	stroke: #ffffff;
}

.pb-header-action-btn--cart-floating i {
	color: #ffffff;
}

.pb-header-action-btn--cart-floating:hover {
	background: #1e293b;
	color: #c5a059;
	border-color: #c5a059;
	transform: scale(1.05);
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.3);
}

.pb-header-action-btn--cart-floating:hover svg {
	stroke: #c5a059;
}

.pb-header-action-btn--cart-floating:hover i {
	color: #c5a059;
}

.pb-header-action-btn--cart-floating .pb-header-cart-badge {
	background: linear-gradient(135deg, #c5a059 0%, #d4af37 100%);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	border: 2px solid #ffffff;
}

.pb-header-cart-badge {
	position: absolute;
	top: -3px;
	right: -3px;
	background: linear-gradient(135deg, #c5a059 0%, #d4af37 100%);
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #ffffff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	pointer-events: none;
	line-height: 1;
}

.pb-header-phone-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--pb-hdr-dark);
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 9999px;
	background: #f8fafc;
	border: 1px solid var(--pb-hdr-border);
	transition: var(--pb-hdr-transition);
}

.pb-header-phone-btn:hover {
	background: var(--pb-hdr-gold);
	color: #ffffff;
	border-color: var(--pb-hdr-gold);
}

/* ==========================================================================
   6. Mobile Toggle (Hamburger) & Off-Canvas Drawer
   ========================================================================= */

.pb-header-mobile-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	flex-direction: column;
	gap: 5px;
	z-index: 1002;
}

.pb-header-mobile-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background-color: var(--pb-hdr-dark);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.pb-header-mobile-toggle.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.pb-header-mobile-toggle.is-active span:nth-child(2) {
	opacity: 0;
}
.pb-header-mobile-toggle.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer (Default: Full Width 100%) */
.pb-mobile-drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	height: 100%;
	height: 100dvh;
	background: #ffffff;
	box-shadow: none;
	z-index: 99999;
	transform: translateX(-100%);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.pb-mobile-drawer--sidebar {
	width: 340px;
	max-width: 85vw;
	box-shadow: 8px 0 32px rgba(0, 0, 0, 0.15);
}

.pb-mobile-drawer.is-open {
	transform: translateX(0);
}

.pb-mobile-drawer-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.5);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 99998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pb-mobile-drawer-backdrop.is-open {
	opacity: 1;
	visibility: visible;
}

.pb-mobile-drawer__header {
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--pb-hdr-border);
	background: #ffffff;
	position: sticky;
	top: 0;
	z-index: 10;
	flex-shrink: 0;
}

.pb-mobile-drawer__title {
	font-size: 18px;
	font-weight: 700;
	color: var(--pb-hdr-dark);
	letter-spacing: -0.01em;
}

.pb-mobile-drawer__close {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f8fafc;
	border: 1px solid var(--pb-hdr-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pb-hdr-dark);
	cursor: pointer;
	padding: 0;
	transition: all 0.2s ease;
}

.pb-mobile-drawer__close:hover,
.pb-mobile-drawer__close:active {
	background: #0f172a;
	color: #ffffff;
	border-color: #0f172a;
}

.pb-mobile-drawer__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.pb-mobile-drawer__search {
	padding: 14px 20px;
	border-bottom: 1px solid var(--pb-hdr-border);
	background: #fdfbf7;
}

/* Prevent iPhone/iOS Safari auto-zoom on focus (iOS requires >= 16px font-size) */
.pb-mobile-drawer__search .pb-header-search__input {
	font-size: 16px !important;
	touch-action: manipulation;
}

.pb-mobile-drawer__menu {
	padding: 8px 0;
}

.pb-mobile-menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pb-mobile-menu-list > .menu-item {
	position: relative;
	border-bottom: 1px solid rgba(241, 245, 249, 0.9);
}

.pb-mobile-menu-list .menu-item a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	font-size: 15.5px;
	font-weight: 600;
	color: var(--pb-hdr-dark);
	text-decoration: none;
	transition: all 0.2s ease;
}

.pb-mobile-menu-list .menu-item a:active,
.pb-mobile-menu-list .menu-item a:hover {
	color: var(--pb-hdr-gold);
	background: rgba(197, 160, 89, 0.05);
}

.pb-mobile-menu-list .menu-item.current-menu-item > a,
.pb-mobile-menu-list .menu-item.current_page_item > a {
	color: var(--pb-hdr-gold);
	font-weight: 700;
	background: rgba(197, 160, 89, 0.08);
	border-left: 3.5px solid var(--pb-hdr-gold);
}

/* Submenu Accordion */
.pb-mobile-menu-list .menu-item-has-children {
	position: relative;
}

.pb-mobile-submenu-toggle {
	position: absolute;
	right: 14px;
	top: 10px;
	width: 32px;
	height: 32px;
	border-radius: 6px;
	background: #f1f5f9;
	border: 1px solid transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #64748b;
	transition: all 0.2s ease;
	z-index: 2;
	padding: 0;
}

.pb-mobile-submenu-toggle svg {
	transition: transform 0.25s ease;
}

.pb-mobile-menu-list .menu-item.is-open > .pb-mobile-submenu-toggle {
	background: var(--pb-hdr-gold);
	color: #ffffff;
}

.pb-mobile-menu-list .menu-item.is-open > .pb-mobile-submenu-toggle svg {
	transform: rotate(180deg);
}

.pb-mobile-menu-list .sub-menu {
	list-style: none;
	padding: 0 0 6px 16px;
	margin: 0;
	background: #fcfbfa;
	display: none;
	border-left: 2px solid #e8e2d5;
	margin-left: 20px;
	margin-bottom: 6px;
}

.pb-mobile-menu-list .sub-menu .menu-item {
	border-bottom: none;
}

.pb-mobile-menu-list .sub-menu .menu-item a {
	padding: 9px 16px;
	font-size: 14px;
	font-weight: 500;
	color: #475569;
}

/* Contacts Card (Phone) */
.pb-mobile-drawer__contacts {
	padding: 16px 20px;
	margin-top: auto;
	border-top: 1px solid var(--pb-hdr-border);
}

.pb-mobile-contact-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	background: #fdfbf7;
	border: 1px solid #e8e2d5;
	border-radius: 12px;
	text-decoration: none;
	color: var(--pb-hdr-dark);
	transition: all 0.2s ease;
}

.pb-mobile-contact-card:hover,
.pb-mobile-contact-card:active {
	border-color: var(--pb-hdr-gold);
	background: #ffffff;
	box-shadow: 0 4px 14px rgba(197, 160, 89, 0.15);
}

.pb-mobile-contact-card__icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--pb-hdr-gold);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.pb-mobile-contact-card__info {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.pb-mobile-contact-card__phone {
	font-size: 14.5px;
	font-weight: 700;
	color: var(--pb-hdr-dark);
	letter-spacing: 0.2px;
}

.pb-mobile-contact-card__subtext {
	font-size: 11.5px;
	color: var(--pb-hdr-gray);
	margin-top: 1px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pb-mobile-contact-card__btn {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	padding: 5px 9px;
	border-radius: 6px;
	background: #0f172a;
	color: #ffffff;
	flex-shrink: 0;
}

/* Social Media Icons Bar */
.pb-mobile-drawer__social {
	padding: 14px 20px 24px 20px;
	border-top: 1px solid rgba(241, 245, 249, 0.9);
	background: #ffffff;
}

.pb-mobile-social-title {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: var(--pb-hdr-gray);
	margin-bottom: 12px;
	text-align: center;
}

.pb-mobile-social-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.pb-mobile-social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	background: #f8fafc;
	border: 1px solid var(--pb-hdr-border);
	color: var(--pb-hdr-dark);
}

.pb-mobile-social-link svg {
	width: 18px;
	height: 18px;
}

.pb-mobile-social-link:hover,
.pb-mobile-social-link:active {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Style variants */
.pb-mobile-social-list--gold .pb-mobile-social-link {
	border-color: #e8e2d5;
	background: #fdfbf7;
	color: #c5a059;
}

.pb-mobile-social-list--gold .pb-mobile-social-link:hover,
.pb-mobile-social-list--gold .pb-mobile-social-link:active {
	background: #c5a059;
	color: #ffffff;
	border-color: #c5a059;
}

.pb-mobile-social-list--brand .pb-mobile-social-link--instagram {
	color: #e1306c;
}
.pb-mobile-social-list--brand .pb-mobile-social-link--telegram {
	color: #0088cc;
}
.pb-mobile-social-list--brand .pb-mobile-social-link--viber {
	color: #7360f2;
}
.pb-mobile-social-list--brand .pb-mobile-social-link--facebook {
	color: #1877f2;
}
.pb-mobile-social-list--brand .pb-mobile-social-link--tiktok {
	color: #000000;
}
.pb-mobile-social-list--brand .pb-mobile-social-link--whatsapp {
	color: #25d366;
}
.pb-mobile-social-list--brand .pb-mobile-social-link--youtube {
	color: #ff0000;
}

.pb-mobile-social-list--dark .pb-mobile-social-link {
	background: #0f172a;
	color: #ffffff;
	border-color: #0f172a;
}

/* ==========================================================================
   7. Responsive Breakpoints
   ========================================================================= */

@media (max-width: 1024px) {
	/* Prevent iPhone/iOS Safari auto-zoom on focus (iOS requires >= 16px font-size) */
	.pb-header-search__input {
		font-size: 16px !important;
		touch-action: manipulation;
	}
	.pb-header-search {
		max-width: 320px;
	}
	.pb-header-menu > .menu-item > a {
		padding: 6px 10px;
		font-size: 13.5px;
	}
}

@media (max-width: 768px) {
	.pb-header-nav {
		display: none;
	}
	.pb-header-mobile-toggle {
		display: flex;
	}
	.pb-header-search {
		display: none; /* Can be shown inside mobile drawer */
	}
	.pb-header-search.pb-header-search--mobile-visible {
		display: block;
		margin: 0;
		max-width: 100%;
		order: 3;
		width: 100%;
	}
	.pb-header-inner {
		padding: 12px 16px;
	}
}
