/* POS Qatar clean Zebra-inspired header */
#masthead {
	display: none !important;
}

.pq-site-header,
.pq-site-header * {
	box-sizing: border-box;
}

.pq-site-header {
	position: relative;
	z-index: 1100;
	background: #fff;
	border-bottom: 1px solid #dedede;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
}

.pq-site-header__bar {
	width: min(100% - 40px, 1280px);
	min-height: 76px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 178px 1fr auto;
	align-items: center;
	gap: 42px;
}

.pq-site-header__logo {
	display: inline-flex;
	align-items: center;
	width: fit-content;
}

.pq-site-header__logo img {
	display: block;
	width: auto;
	max-width: 160px;
	max-height: 46px;
}

.pq-site-header__nav {
	display: flex;
	align-items: stretch;
	justify-content: center;
	height: 76px;
	gap: 4px;
}

.pq-site-header__nav > a,
.pq-nav-item > button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 0 15px;
	border: 0;
	background: transparent;
	color: #000;
	font: 700 14px/1 Arial, Helvetica, sans-serif;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
}

.pq-site-header__nav > a:hover,
.pq-nav-item > button:hover {
	background: #f2f2f2;
	color: #000;
}

.pq-nav-item {
	position: relative;
	display: flex;
}

.pq-nav-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 280px;
	max-height: min(70vh, 560px);
	overflow-x: hidden;
	overflow-y: auto;
	padding: 10px 0;
	background: #fff;
	border: 1px solid #dedede;
	box-shadow: 0 16px 34px rgba(0, 0, 0, .13);
	opacity: 0;
	visibility: hidden;
	transform: translateY(7px);
	transition: .18s ease;
	z-index: 30;
}

.pq-nav-item:hover .pq-nav-dropdown,
.pq-nav-item:focus-within .pq-nav-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.pq-nav-dropdown a {
	display: block;
	padding: 12px 18px;
	color: #111;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.pq-nav-dropdown a:hover {
	background: #000;
	color: #fff;
}

.pq-site-header__actions {
	display: flex;
	align-items: center;
	gap: 4px;
}

.pq-header-icon {
	position: relative;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #000;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	text-decoration: none;
}

.pq-header-icon:hover {
	background: #f1f1f1;
	color: #000;
}

.pq-header-icon svg,
.pq-header-search button svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pq-header-menu-toggle {
	display: none;
}

.pq-header-cart__count {
	position: absolute;
	top: 4px;
	right: 2px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 999px;
	background: #000;
	color: #fff;
	font: 700 10px/18px Arial, sans-serif;
	text-align: center;
}

.pq-header-cart__count:empty {
	display: none;
}

.pq-header-search {
	max-height: 0;
	background: #f4f4f4;
	overflow: hidden;
	transition: max-height .3s ease;
}

.pq-header-search.pq-search-open {
	max-height: 650px;
}

.pq-header-search form {
	width: min(100% - 40px, 760px);
	min-height: 0;
	margin: 0 auto;
	overflow: hidden;
	display: flex;
}

.pq-header-search.pq-search-open form {
	padding: 18px 0;
}

.pq-header-search input[type="search"] {
	flex: 1;
	height: 48px;
	border: 0;
	border-bottom: 2px solid #000;
	border-radius: 0;
	background: transparent;
	padding: 0 12px;
	color: #000;
	font-size: 16px;
	outline: 0;
}

.pq-header-search button {
	width: 52px;
	height: 48px;
	border: 0;
	background: #000;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pq-header-search__results {
	display: none;
	width: min(100% - 40px, 760px);
	margin: -8px auto 18px;
	background: #fff;
	border: 1px solid #d8d8d8;
	box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.pq-header-search__results.has-results,
.pq-header-search__results.is-message {
	display: block;
}

.pq-live-search-item {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	min-height: 76px;
	padding: 9px 14px;
	border-bottom: 1px solid #eee;
	color: #111;
	text-decoration: none;
}

.pq-live-search-item:last-child {
	border-bottom: 0;
}

.pq-live-search-item:hover {
	background: #f3f3f3;
	color: #000;
}

.pq-live-search-item img {
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.pq-live-search-item__title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.pq-live-search-item__price {
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.pq-header-search__message {
	margin: 0;
	padding: 16px;
	color: #555;
	font-size: 14px;
	text-align: center;
}

.pq-mobile-menu {
	display: none;
}

@media (min-width: 992px) {
	.pq-site-header__bar {
		min-height: 82px;
		grid-template-columns: 170px minmax(0, 1fr) 112px;
		gap: 18px;
	}

	.pq-site-header__logo img {
		max-width: 168px;
		max-height: 48px;
	}

	.pq-site-header__nav {
		height: 82px;
		justify-content: flex-start;
		gap: 2px;
		min-width: 0;
		overflow: visible;
	}

	.pq-site-header__nav > a,
	.pq-nav-item > button {
		position: relative;
		padding: 0 8px;
		background: transparent !important;
		font-size: 12px;
		font-weight: 700;
		letter-spacing: .04em;
		text-transform: uppercase;
		white-space: nowrap;
	}

	.pq-site-header__nav > a::after,
	.pq-nav-item > button::after {
		content: "";
		position: absolute;
		right: 8px;
		bottom: 0;
		left: 8px;
		height: 3px;
		background: #000;
		transform: scaleX(0);
		transform-origin: left;
		transition: transform .2s ease;
	}

	.pq-site-header__nav > a:hover::after,
	.pq-site-header__nav > a:focus::after,
	.pq-nav-item:hover > button::after,
	.pq-nav-item:focus-within > button::after {
		transform: scaleX(1);
	}

	.pq-nav-item > button span {
		width: 7px;
		height: 7px;
		margin: -4px 0 0 2px;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		font-size: 0;
		transform: rotate(45deg);
	}

	.pq-nav-dropdown {
		top: calc(100% - 1px);
		width: 300px;
		padding: 8px 0;
		border-top: 3px solid #000;
	}

	.pq-nav-dropdown a {
		padding: 11px 18px;
		font-size: 13px;
		letter-spacing: .01em;
	}

	.pq-site-header__actions {
		height: 46px;
		padding-left: 12px;
		border-left: 1px solid #d4d4d4;
	}

	.pq-site-header__actions .pq-header-icon {
		width: 46px;
		border-radius: 50%;
	}
}

@media (min-width: 1200px) {
	.pq-site-header__bar {
		gap: 28px;
		grid-template-columns: 190px minmax(0, 1fr) 112px;
	}

	.pq-site-header__nav {
		gap: 8px;
	}

	.pq-site-header__nav > a,
	.pq-nav-item > button {
		padding: 0 12px;
		font-size: 13px;
		letter-spacing: .055em;
	}

	.pq-site-header__nav > a::after,
	.pq-nav-item > button::after {
		right: 12px;
		left: 12px;
	}
}

@media (max-width: 991px) {
	.pq-site-header__bar {
		width: 100%;
		min-height: 66px;
		padding: 0 14px;
		grid-template-columns: 48px 1fr auto;
		gap: 8px;
	}

	.pq-header-menu-toggle {
		display: inline-flex;
	}

	.pq-site-header__logo {
		justify-self: center;
	}

	.pq-site-header__logo img {
		max-width: 126px;
		max-height: 38px;
	}

	.pq-site-header__nav {
		display: none;
	}

	.pq-site-header__actions {
		gap: 0;
	}

	.pq-header-icon {
		width: 42px;
		height: 42px;
	}

	.pq-header-icon svg {
		width: 22px;
		height: 22px;
	}

	.pq-header-cart__count {
		top: 2px;
		right: 0;
	}

	.pq-header-search form {
		width: calc(100% - 28px);
	}

	.pq-header-search__results {
		width: calc(100% - 28px);
	}

	.pq-live-search-item {
		grid-template-columns: 52px minmax(0, 1fr);
	}

	.pq-live-search-item img {
		width: 52px;
		height: 52px;
	}

	.pq-live-search-item__price {
		grid-column: 2;
		margin-top: -8px;
	}

	.pq-mobile-menu {
		position: fixed;
		inset: 0;
		z-index: 1200;
		display: block;
		background: rgba(0, 0, 0, .48);
		opacity: 0;
		visibility: hidden;
		transition: .22s ease;
	}

	.pq-mobile-menu.pq-drawer-open {
		opacity: 1;
		visibility: visible;
	}

	.pq-mobile-menu__panel {
		width: min(88vw, 360px);
		height: 100%;
		background: #fff;
		transform: translateX(-100%);
		transition: transform .25s ease;
		overflow-y: auto;
	}

	.pq-mobile-menu.pq-drawer-open .pq-mobile-menu__panel {
		transform: translateX(0);
	}

	.pq-mobile-menu__head {
		height: 68px;
		padding: 0 20px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-bottom: 1px solid #ddd;
		font-size: 20px;
	}

	.pq-mobile-menu__close {
		width: 42px;
		height: 42px;
		border: 0;
		background: transparent;
		color: #000;
		font-size: 34px;
		line-height: 1;
	}

	.pq-mobile-menu nav {
		padding: 10px 0 30px;
	}

	.pq-mobile-menu nav > a,
	.pq-mobile-acc__links a {
		display: block;
		padding: 15px 22px;
		border-bottom: 1px solid #eee;
		color: #000;
		font-size: 16px;
		font-weight: 700;
		text-decoration: none;
	}

	.pq-mobile-acc {
		border-bottom: 1px solid #eee;
	}

	.pq-mobile-acc > summary {
		list-style: none;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 15px 22px;
		font-size: 16px;
		font-weight: 800;
		color: #000;
		cursor: pointer;
		user-select: none;
	}

	.pq-mobile-acc > summary::-webkit-details-marker {
		display: none;
	}

	.pq-mobile-acc > summary::after {
		content: '+';
		font-size: 22px;
		font-weight: 400;
		line-height: 1;
		color: #666;
	}

	.pq-mobile-acc[open] > summary::after {
		content: '–';
	}

	.pq-mobile-acc__links a {
		padding-left: 34px;
		font-weight: 600;
		font-size: 15px;
		background: #fafafa;
	}

	.pq-mobile-acc__links a:active,
	.pq-mobile-menu nav > a:active,
	.pq-mobile-acc__links a:hover,
	.pq-mobile-menu nav > a:hover {
		background: #f1f1f1;
	}

	body.pq-menu-open {
		overflow: hidden;
	}
}

@media (max-width: 380px) {
	.pq-site-header__bar {
		padding: 0 8px;
	}

	.pq-site-header__logo img {
		max-width: 108px;
	}

	.pq-header-icon {
		width: 38px;
	}
}
