body.store-page-view #site-header {
	background: #1f76bd !important;
	border-bottom: 1px solid rgba(255, 255, 255, .14) !important;
	box-shadow: 0 6px 22px rgba(0, 52, 101, .12) !important;
}

body.store-page-view #site-header #site-nav li a,
body.store-page-view #site-header .btn-icon,
body.store-page-view #site-header .az-lang-current {
	color: rgba(255, 255, 255, .92) !important;
}

body.store-page-view #site-header #site-nav li a:hover,
body.store-page-view #site-header #site-nav li.current-menu-item > a,
body.store-page-view #site-header #site-nav li.current-page-ancestor > a,
body.store-page-view #site-header .btn-icon:hover,
body.store-page-view #site-header .az-lang-current:hover,
body.store-page-view #site-header .az-lang-current:focus {
	color: #fff !important;
	background: rgba(255, 255, 255, .14) !important;
}

body.store-page-view #site-header .hamburger span {
	background: #fff !important;
}

.store-page {
	background: #f2f2f2;
	color: #34445b;
	min-height: 100vh;
	padding: 0 0 64px;
}

.store-titlebar {
	background: #fff;
	border-bottom: 1px solid #e8ebef;
}

.store-titlebar-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(1360px, calc(100% - 48px));
	min-height: 88px;
	margin: 0 auto;
}

.store-breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	color: #a2a8b2;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
}

.store-breadcrumb a {
	color: #ff5c35;
	text-decoration: none;
	transition: color .16s ease;
}

.store-breadcrumb a:hover {
	color: #d9421f;
}

.store-breadcrumb strong {
	color: #32363d;
	font-weight: 900;
}

.store-title-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 28px;
	min-width: 0;
}

.store-result-count {
	margin: 0;
	color: #4a4a4a;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
}

.store-orderby {
	position: relative;
	display: block;
	width: 286px;
	flex: 0 0 286px;
}

.store-orderby select {
	width: 100%;
	height: 48px;
	padding: 0 48px 0 20px;
	border: 1px solid #dcdcdc;
	border-radius: 0;
	background-color: #fff;
	color: #4a4a4a;
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 48px;
	outline: none;
	box-shadow: 0 1px 5px rgba(0, 0, 0, .04);
	appearance: none;
	cursor: pointer;
	transition: border-color .16s ease, box-shadow .16s ease;
}

.store-orderby::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 18px;
	width: 9px;
	height: 9px;
	border-right: 2px solid #30363d;
	border-bottom: 2px solid #30363d;
	pointer-events: none;
	transform: translateY(-65%) rotate(45deg);
}

.store-orderby select:focus {
	border-color: #1f76bd;
	box-shadow: 0 0 0 3px rgba(31, 118, 189, .13);
}

.store-shell {
	width: min(1360px, calc(100% - 48px));
	margin: 0 auto;
	padding-top: 32px;
}

.store-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.store-card {
	display: flex;
	flex-direction: column;
	min-height: 356px;
	background: #fff;
	border: 1px solid #dedede;
	text-decoration: none;
	box-shadow: 0 3px 12px rgba(0, 0, 0, .06);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.store-card:hover {
	border-color: #d7aa55;
	box-shadow: 0 14px 32px rgba(0, 0, 0, .11);
	transform: translateY(-4px);
}

.store-card-media {
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.store-card-media img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform .2s ease;
}

.store-card:hover .store-card-media img {
	transform: scale(1.04);
}

.store-placeholder {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 124px;
	height: 124px;
	border: 5px solid #dceaf6;
	color: #0474bd;
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
}

.store-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px 20px 20px;
	border-top: 1px solid #f0f0f0;
}

.store-card-cat {
	margin-bottom: 8px;
	color: #e0a642;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.store-card-title {
	margin: 0;
	color: #40526c;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.35;
	text-transform: uppercase;
}

.store-card-excerpt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin: 10px 0 0;
	color: #717b8b;
	font-size: 13px;
	line-height: 1.55;
}

.store-card-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 18px;
	color: #0474bd;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.store-empty {
	display: none;
	padding: 42px 24px;
	background: #fff;
	border: 1px solid #dedede;
	text-align: center;
	color: #667085;
	font-weight: 700;
}

@media (max-width: 1100px) {
	.store-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.store-titlebar-shell {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
		min-height: 0;
		padding: 22px 0;
	}

	.store-title-actions {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
		width: 100%;
	}

	.store-result-count {
		font-size: 16px;
	}

	.store-orderby {
		width: 100%;
		flex-basis: auto;
	}

	.store-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.store-shell,
	.store-titlebar-shell {
		width: min(100% - 28px, 1360px);
	}

	.store-breadcrumb {
		font-size: 13px;
	}

	.store-orderby select {
		font-size: 16px;
	}

	.store-grid {
		grid-template-columns: 1fr;
	}
}
