:root {
	--alka-ink: #17213a;
	--alka-blue: #1754d1;
	--alka-blue-dark: #103b99;
	--alka-orange: #ff6b35;
	--alka-lime: #d9f266;
	--alka-cream: #f7f3e9;
	--alka-paper: #fffefa;
	--alka-line: #dfe4ed;
	--alka-muted: #697189;
	--alka-radius: 20px;
	--alka-shadow: 0 18px 50px rgba(23, 33, 58, .1);
	--alka-font-body: "Manrope", sans-serif;
	--alka-font-heading: "Unbounded", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;
	color: var(--alka-ink);
	background: var(--alka-paper);
	font-family: var(--alka-font-body);
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.alka-menu-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
}

svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.alka-container {
	width: min(1440px, calc(100% - 48px));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	color: #fff;
	background: var(--alka-blue);
	clip: auto;
}

.alka-notice {
	color: #fff;
	background: var(--alka-ink);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
}

.alka-notice-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
}

.alka-notice nav {
	display: flex;
	gap: 24px;
	color: rgba(255, 255, 255, .75);
}

.alka-notice a:hover {
	color: var(--alka-lime);
}

.alka-header {
	position: relative;
	z-index: 50;
	background: rgba(255, 254, 250, .96);
}

.alka-header-main {
	display: grid;
	grid-template-columns: auto minmax(280px, 1fr) auto auto auto;
	gap: 20px;
	align-items: center;
	min-height: 92px;
}

.alka-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	min-width: 180px;
}

.alka-brand .custom-logo-link {
	display: block;
}

.alka-brand .custom-logo {
	width: auto;
	max-width: 210px;
	max-height: 66px;
}

.alka-brand-mark {
	display: grid;
	width: 48px;
	height: 48px;
	color: #fff;
	background: var(--alka-blue);
	border-radius: 15px 7px 15px 7px;
	font-family: var(--alka-font-heading);
	font-size: 25px;
	font-weight: 700;
	place-items: center;
	transform: rotate(-3deg);
}

.alka-brand-copy {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.alka-brand-copy strong {
	font-family: var(--alka-font-heading);
	font-size: 22px;
	letter-spacing: .04em;
}

.alka-brand-copy small {
	margin-top: 7px;
	color: var(--alka-muted);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.alka-search {
	position: relative;
}

.alka-search form {
	position: relative;
	display: flex;
	margin: 0;
}

.alka-search input[type="search"],
.alka-search .search-field {
	width: 100%;
	height: 50px;
	padding: 0 56px 0 20px;
	color: var(--alka-ink);
	background: #f2f4f8;
	border: 1px solid transparent;
	border-radius: 15px;
	outline: none;
	transition: .2s ease;
}

.alka-search input[type="search"]:focus,
.alka-search .search-field:focus {
	background: #fff;
	border-color: var(--alka-blue);
	box-shadow: 0 0 0 4px rgba(23, 84, 209, .1);
}

.alka-search button,
.alka-search input[type="submit"] {
	position: absolute;
	z-index: 2;
	top: 5px;
	right: 5px;
	width: 42px;
	height: 40px;
	padding: 0;
	overflow: hidden;
	color: transparent;
	background: var(--alka-blue);
	border: 0;
	border-radius: 11px;
	cursor: pointer;
}

.alka-search-icon {
	position: absolute;
	z-index: 3;
	top: 14px;
	right: 15px;
	color: #fff;
	pointer-events: none;
}

.alka-phone,
.alka-header-action {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.alka-phone svg,
.alka-header-action > svg {
	width: 25px;
	height: 25px;
	color: var(--alka-blue);
}

.alka-phone span {
	display: flex;
	flex-direction: column;
}

.alka-phone small {
	color: var(--alka-muted);
	font-size: 10px;
	font-weight: 600;
}

.alka-header-action {
	position: relative;
	flex-direction: column;
	gap: 3px;
	min-width: 50px;
	color: var(--alka-muted);
	font-size: 10px;
}

.alka-header-action:hover {
	color: var(--alka-blue);
}

.alka-cart-count {
	position: absolute;
	top: -8px;
	right: 0;
	display: grid;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	color: #fff;
	background: var(--alka-orange);
	border: 2px solid var(--alka-paper);
	border-radius: 20px;
	font-size: 10px;
	line-height: 1;
	place-items: center;
}

.alka-nav-wrap {
	border-block: 1px solid var(--alka-line);
}

.alka-nav-inner {
	display: flex;
	align-items: stretch;
	min-height: 54px;
}

.alka-catalog-menu {
	position: relative;
	z-index: 52;
	flex: 0 0 235px;
}

.alka-catalog-button {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	height: 100%;
	padding: 0 22px;
	color: #fff;
	background: var(--alka-blue);
	font-weight: 800;
}

.alka-catalog-chevron {
	display: grid;
	margin-left: auto;
	place-items: center;
	transition: transform .2s ease;
}

.alka-catalog-chevron svg {
	width: 18px;
	height: 18px;
	stroke-width: 2.2;
}

.alka-catalog-menu:hover .alka-catalog-chevron,
.alka-catalog-menu:focus-within .alka-catalog-chevron {
	transform: rotate(180deg);
}

.alka-catalog-dropdown {
	position: absolute;
	z-index: 53;
	top: calc(100% + 1px);
	left: 0;
	width: min(920px, calc(100vw - 48px));
	padding: 24px;
	visibility: hidden;
	background: #fff;
	border: 1px solid var(--alka-line);
	border-top: 3px solid var(--alka-blue);
	border-radius: 0 0 22px 22px;
	box-shadow: 0 28px 70px rgba(15, 23, 43, .24);
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.alka-catalog-menu:hover .alka-catalog-dropdown,
.alka-catalog-menu:focus-within .alka-catalog-dropdown {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.alka-catalog-dropdown-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--alka-line);
}

.alka-catalog-dropdown-head > div {
	display: flex;
	flex-direction: column;
}

.alka-catalog-dropdown-head small {
	color: var(--alka-blue);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.alka-catalog-dropdown-head strong {
	margin-top: 4px;
	font-family: var(--alka-font-heading);
	font-size: 22px;
}

.alka-catalog-dropdown-head > a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--alka-blue);
	font-size: 12px;
	font-weight: 800;
}

.alka-catalog-dropdown-head > a svg {
	width: 18px;
}

.alka-catalog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px 12px;
}

.alka-catalog-category {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr) 18px;
	gap: 11px;
	align-items: center;
	min-width: 0;
	padding: 10px;
	border-radius: 12px;
	transition: background .18s ease, color .18s ease;
}

.alka-catalog-category:hover,
.alka-catalog-category:focus {
	color: var(--alka-blue);
	background: #f2f5fc;
	outline: none;
}

.alka-catalog-category-icon {
	display: grid;
	width: 40px;
	height: 40px;
	color: var(--alka-blue);
	background: #eef3ff;
	border-radius: 11px;
	font-family: var(--alka-font-heading);
	font-size: 15px;
	place-items: center;
}

.alka-catalog-category > span:nth-child(2) {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.alka-catalog-category strong {
	overflow: hidden;
	color: var(--alka-ink);
	font-size: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.alka-catalog-category small {
	color: var(--alka-muted);
	font-size: 9px;
}

.alka-catalog-category > svg {
	width: 17px;
	opacity: .35;
}

.alka-catalog-overlay {
	position: fixed;
	z-index: 45;
	inset: 0;
	visibility: hidden;
	background: rgba(10, 17, 34, .64);
	opacity: 0;
	pointer-events: none;
	transition: opacity .22s ease, visibility .22s ease;
}

body.alka-catalog-active .alka-catalog-overlay {
	visibility: visible;
	opacity: 1;
}

.alka-primary-nav {
	flex: 1;
}

.alka-primary-nav ul {
	display: flex;
	align-items: stretch;
	height: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}

.alka-primary-nav li {
	position: relative;
	display: flex;
	align-items: center;
}

.alka-primary-nav a {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 21px;
	font-size: 13px;
	font-weight: 700;
}

.alka-primary-nav a:hover {
	color: var(--alka-blue);
}

.alka-primary-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	width: 240px;
	height: auto;
	padding: 10px;
	background: #fff;
	border: 1px solid var(--alka-line);
	border-radius: 0 0 16px 16px;
	box-shadow: var(--alka-shadow);
}

.alka-primary-nav li:hover > .sub-menu {
	display: block;
}

.alka-primary-nav .sub-menu a {
	padding: 10px 12px;
	border-radius: 8px;
}

.alka-mobile-toggle {
	display: none;
	padding: 8px;
	color: var(--alka-ink);
	background: none;
	border: 0;
}

.alka-mobile-panel,
.alka-mobile-overlay {
	display: none;
}

.alka-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 5% 5%, rgba(217, 242, 102, .5), transparent 30%),
		linear-gradient(115deg, #f7f3e9 0%, #eef3ff 100%);
}

.alka-hero::after {
	position: absolute;
	right: -8%;
	bottom: -120px;
	width: 40vw;
	height: 240px;
	background: repeating-linear-gradient(135deg, rgba(23, 84, 209, .06) 0 2px, transparent 2px 14px);
	border-radius: 50%;
	content: "";
	transform: rotate(-8deg);
}

.alka-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	align-items: center;
	min-height: 570px;
	padding-block: 70px;
}

.alka-hero-copy {
	position: relative;
	z-index: 2;
	min-width: 0;
	max-width: 740px;
	animation: alka-rise .6s ease both;
}

.alka-eyebrow,
.alka-kicker {
	display: inline-block;
	margin-bottom: 15px;
	color: var(--alka-blue);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.alka-hero h1 {
	margin: 0;
	font-family: var(--alka-font-heading);
	font-size: clamp(44px, 5.5vw, 82px);
	line-height: 1.05;
	letter-spacing: -.05em;
}

.alka-hero h1 em {
	color: var(--alka-blue);
	font-style: normal;
}

.alka-hero-copy > p {
	max-width: 590px;
	margin: 26px 0 32px;
	color: var(--alka-muted);
	font-size: 18px;
}

.alka-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.alka-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 54px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 15px;
	font-weight: 800;
	transition: transform .2s ease, box-shadow .2s ease;
}

.alka-button:hover {
	transform: translateY(-2px);
}

.alka-button-primary {
	color: #fff;
	background: var(--alka-blue);
	box-shadow: 0 12px 30px rgba(23, 84, 209, .24);
}

.alka-button-ghost {
	background: rgba(255, 255, 255, .7);
	border-color: rgba(23, 33, 58, .14);
}

.alka-hero-facts {
	display: flex;
	gap: 32px;
	margin-top: 42px;
	color: var(--alka-muted);
	font-size: 11px;
}

.alka-hero-facts span {
	display: flex;
	flex-direction: column;
}

.alka-hero-facts strong {
	color: var(--alka-ink);
	font-size: 16px;
}

.alka-hero-art {
	position: relative;
	z-index: 1;
	height: 430px;
}

.alka-orbit {
	position: absolute;
	border: 1px solid rgba(23, 84, 209, .24);
	border-radius: 50%;
}

.alka-orbit-one {
	top: 25px;
	right: 30px;
	width: 370px;
	height: 370px;
}

.alka-orbit-two {
	top: 100px;
	right: 105px;
	width: 220px;
	height: 220px;
	background: var(--alka-blue);
	border: 0;
	box-shadow: inset -30px -30px 80px rgba(0, 0, 0, .15);
}

.alka-hero-card {
	position: absolute;
	z-index: 2;
	display: flex;
	flex-direction: column;
	width: 190px;
	min-height: 128px;
	padding: 24px;
	background: #fff;
	border-radius: 24px;
	box-shadow: var(--alka-shadow);
	animation: alka-float 5s ease-in-out infinite;
}

.alka-hero-card span {
	color: var(--alka-muted);
	font-size: 12px;
}

.alka-hero-card strong {
	margin-top: auto;
	font-family: var(--alka-font-heading);
	font-size: 18px;
}

.alka-hero-card-one {
	top: 12px;
	left: 20px;
	transform: rotate(-7deg);
}

.alka-hero-card-two {
	right: 0;
	bottom: 12px;
	background: var(--alka-lime);
	transform: rotate(7deg);
	animation-delay: -2s;
}

.alka-hero-sticker {
	position: absolute;
	z-index: 3;
	right: 15px;
	top: 28px;
	display: grid;
	width: 105px;
	height: 105px;
	color: #fff;
	background: var(--alka-orange);
	border-radius: 50%;
	font-family: var(--alka-font-heading);
	font-size: 12px;
	line-height: 1.35;
	text-align: center;
	text-transform: uppercase;
	place-items: center;
	transform: rotate(11deg);
}

.alka-section {
	padding-block: 84px;
}

.alka-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 34px;
}

.alka-section-head h2 {
	margin: 0;
	font-family: var(--alka-font-heading);
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.1;
	letter-spacing: -.04em;
}

.alka-section-head > a {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--alka-blue);
	font-size: 13px;
	font-weight: 800;
}

.alka-section-head > a svg {
	width: 19px;
}

.alka-category-section {
	background: #fff;
}

.alka-category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.alka-category-card {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 120px;
	padding: 15px;
	background: var(--alka-cream);
	border: 1px solid transparent;
	border-radius: var(--alka-radius);
	transition: transform .2s ease, border-color .2s ease;
}

.alka-category-card:hover {
	border-color: var(--alka-blue);
	transform: translateY(-4px);
}

.alka-category-image {
	display: grid;
	flex: 0 0 88px;
	width: 88px;
	height: 88px;
	overflow: hidden;
	background: #fff;
	border-radius: 16px;
	place-items: center;
}

.alka-category-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.alka-category-image > span {
	color: var(--alka-blue);
	font-family: var(--alka-font-heading);
	font-size: 34px;
	font-weight: 700;
}

.alka-category-card > span:last-child {
	display: flex;
	flex-direction: column;
}

.alka-category-card strong {
	line-height: 1.3;
}

.alka-category-card small {
	margin-top: 8px;
	color: var(--alka-muted);
	font-size: 11px;
}

.alka-category-1,
.alka-category-6 {
	background: #eff4ff;
}

.alka-category-2,
.alka-category-7 {
	background: #f4f9d9;
}

.alka-category-3,
.alka-category-4 {
	background: #fff0e9;
}

.alka-products-section {
	background: #f5f7fb;
}

.woocommerce .products,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	padding: 0;
	margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	position: relative;
	display: flex;
	float: none;
	flex-direction: column;
	width: auto;
	min-width: 0;
	padding: 14px;
	margin: 0;
	background: #fff;
	border: 1px solid var(--alka-line);
	border-radius: 19px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.woocommerce ul.products li.product:hover {
	z-index: 2;
	border-color: transparent;
	box-shadow: var(--alka-shadow);
	transform: translateY(-5px);
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.woocommerce ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0 0 14px;
	object-fit: contain;
	background: #fafafa;
	border-radius: 13px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 43px;
	padding: 0;
	margin: 0 0 8px;
	color: var(--alka-ink);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
}

.alka-product-code {
	order: 4;
	margin-bottom: 8px;
	color: var(--alka-muted);
	font-size: 10px;
}

.woocommerce ul.products li.product .price {
	margin-top: auto;
	color: var(--alka-ink);
	font-size: 18px;
	font-weight: 800;
}

.woocommerce ul.products li.product .price del {
	color: var(--alka-muted);
	font-size: 12px;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 43px;
	padding: 10px 17px;
	margin-top: 12px;
	color: #fff;
	background: var(--alka-blue);
	border: 0;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	transition: background .2s ease, transform .2s ease;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
	color: #fff;
	background: var(--alka-blue-dark);
}

.woocommerce ul.products li.product .added_to_cart {
	padding: 8px 0 0;
	color: var(--alka-blue);
	font-size: 11px;
	font-weight: 800;
	text-align: center;
}

.alka-stock-badge {
	position: absolute;
	z-index: 3;
	top: 24px;
	left: 24px;
	padding: 6px 9px;
	color: #2d5512;
	background: var(--alka-lime);
	border-radius: 8px;
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
}

.woocommerce span.onsale {
	z-index: 4;
	top: 24px;
	right: 24px;
	left: auto;
	min-width: 0;
	min-height: 0;
	padding: 7px 9px;
	color: #fff;
	background: var(--alka-orange);
	border-radius: 8px;
	font-size: 10px;
	line-height: 1;
}

.alka-benefits-section {
	background: var(--alka-ink);
}

.alka-benefits {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.alka-benefits article {
	position: relative;
	padding: 12px 34px;
	color: #fff;
	border-right: 1px solid rgba(255, 255, 255, .15);
}

.alka-benefits article:first-child {
	padding-left: 0;
}

.alka-benefits article:last-child {
	border: 0;
}

.alka-benefits article > span {
	color: var(--alka-lime);
	font-family: var(--alka-font-heading);
	font-size: 11px;
}

.alka-benefits h3 {
	margin: 12px 0 8px;
	font-size: 17px;
}

.alka-benefits p {
	margin: 0;
	color: rgba(255, 255, 255, .62);
	font-size: 12px;
}

.alka-footer {
	padding: 64px 0 22px;
	color: rgba(255, 255, 255, .7);
	background: #0f172b;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.alka-footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 60px;
}

.alka-brand-light {
	color: #fff;
}

.alka-brand-light .alka-brand-mark {
	color: var(--alka-ink);
	background: var(--alka-lime);
}

.alka-brand-light .alka-brand-copy small {
	color: rgba(255, 255, 255, .5);
}

.alka-footer-grid p {
	max-width: 360px;
	margin-top: 22px;
	font-size: 13px;
}

.alka-footer h3 {
	margin: 0 0 20px;
	color: #fff;
	font-size: 13px;
}

.alka-footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.alka-footer-grid > div > a:not(.alka-brand),
.alka-footer li a {
	display: block;
	margin: 9px 0;
	font-size: 12px;
}

.alka-footer a:hover {
	color: var(--alka-lime);
}

.alka-footer-contact > a {
	color: #fff;
	font-size: 17px !important;
	font-weight: 800;
}

.alka-footer-contact small {
	display: block;
	margin-top: 8px;
}

.alka-footer-bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 28px;
	margin-top: 48px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	font-size: 10px;
}

.alka-page,
.alka-shop-page {
	min-height: 60vh;
	padding-block: 42px 80px;
	background: #f7f8fb;
}

.alka-content {
	max-width: 980px;
	padding: 46px;
	background: #fff;
	border: 1px solid var(--alka-line);
	border-radius: var(--alka-radius);
}

.alka-entry h1,
.woocommerce-products-header__title,
.woocommerce div.product .product_title,
.woocommerce-account .woocommerce h2,
.cart_totals h2 {
	font-family: var(--alka-font-heading);
	letter-spacing: -.04em;
}

.alka-entry h1 {
	margin-top: 0;
	font-size: clamp(30px, 4vw, 52px);
}

.alka-shop-page .woocommerce-breadcrumb {
	margin: 0 0 24px;
	color: var(--alka-muted);
	font-size: 11px;
}

.alka-shop-layout {
	display: flex;
	gap: 24px;
}

.alka-shop-sidebar {
	flex: 0 0 250px;
}

.alka-shop-content {
	flex: 1;
	min-width: 0;
}

.alka-filter-widget {
	padding: 20px;
	margin-bottom: 16px;
	background: #fff;
	border: 1px solid var(--alka-line);
	border-radius: 16px;
}

.alka-filter-title {
	margin: 0 0 14px;
	font-size: 14px;
}

.woocommerce-products-header__title {
	margin: 0 0 22px;
	font-size: clamp(28px, 3vw, 42px);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	margin-bottom: 24px;
	color: var(--alka-muted);
	font-size: 11px;
}

.woocommerce .woocommerce-ordering select {
	min-height: 42px;
	padding: 0 36px 0 14px;
	background: #fff;
	border: 1px solid var(--alka-line);
	border-radius: 11px;
}

.woocommerce nav.woocommerce-pagination {
	margin-top: 38px;
}

.woocommerce nav.woocommerce-pagination ul {
	display: inline-flex;
	gap: 6px;
	padding: 0;
	overflow: visible;
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: grid;
	width: 40px;
	height: 40px;
	padding: 0;
	background: #fff;
	border: 1px solid var(--alka-line);
	border-radius: 10px;
	place-items: center;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
	color: #fff;
	background: var(--alka-blue);
	border-color: var(--alka-blue);
}

.woocommerce div.product {
	padding: 30px;
	background: #fff;
	border: 1px solid var(--alka-line);
	border-radius: 22px;
}

.woocommerce div.product div.images img {
	background: #fafafa;
	border-radius: 16px;
}

.woocommerce div.product .product_title {
	font-size: clamp(24px, 3vw, 38px);
	line-height: 1.2;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--alka-blue);
	font-size: 27px;
	font-weight: 800;
}

.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.woocommerce .quantity .qty {
	min-height: 45px;
	border: 1px solid var(--alka-line);
	border-radius: 11px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	border-color: var(--alka-line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: #f4f6fa;
	border-color: var(--alka-line);
	border-radius: 10px 10px 0 0;
}

.woocommerce table.shop_table {
	background: #fff;
	border-color: var(--alka-line);
	border-radius: 16px;
}

.woocommerce form.checkout,
.woocommerce-account .woocommerce {
	padding: 26px;
	background: #fff;
	border: 1px solid var(--alka-line);
	border-radius: 18px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	min-height: 46px;
	padding: 10px 13px;
	background: #fff;
	border: 1px solid var(--alka-line);
	border-radius: 10px;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
	background: #fff;
	border-radius: 12px;
}

@keyframes alka-rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes alka-float {
	0%,
	100% {
		transform: translateY(0) rotate(-5deg);
	}
	50% {
		transform: translateY(-10px) rotate(-2deg);
	}
}

@media (max-width: 1180px) {
	.alka-header-main {
		grid-template-columns: auto minmax(260px, 1fr) auto auto;
	}

	.alka-phone {
		display: none;
	}

	.alka-primary-nav a {
		padding-inline: 14px;
	}

	.alka-category-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.alka-container {
		width: calc(100% - 30px);
		max-width: 720px;
	}

	.alka-notice nav,
	.alka-header-action > span:not(.alka-cart-count),
	.alka-nav-wrap,
	.alka-catalog-overlay {
		display: none;
	}

	.alka-notice-inner {
		justify-content: center;
	}

	.alka-header-main {
		grid-template-columns: auto auto 1fr auto auto;
		gap: 10px;
		min-height: 76px;
	}

	.alka-mobile-toggle {
		display: block;
	}

	.alka-brand {
		min-width: 0;
	}

	.alka-brand-copy {
		display: none;
	}

	.alka-brand-mark {
		width: 42px;
		height: 42px;
		font-size: 20px;
	}

	.alka-search {
		grid-column: 3;
	}

	.alka-header-action {
		min-width: 38px;
	}

	.alka-mobile-panel {
		position: fixed;
		z-index: 1001;
		top: 0;
		left: 0;
		display: block;
		width: min(360px, 88vw);
		height: 100vh;
		padding: 24px;
		overflow-y: auto;
		background: #fff;
		box-shadow: var(--alka-shadow);
		transform: translateX(-105%);
		transition: transform .25s ease;
	}

	.alka-menu-open .alka-mobile-panel {
		transform: translateX(0);
	}

	.alka-mobile-overlay {
		position: fixed;
		z-index: 1000;
		inset: 0;
		display: block;
		background: rgba(15, 23, 43, .55);
		opacity: 0;
		pointer-events: none;
		transition: opacity .25s ease;
	}

	.alka-menu-open .alka-mobile-overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.alka-mobile-panel-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-bottom: 18px;
		border-bottom: 1px solid var(--alka-line);
	}

	.alka-mobile-close {
		width: 38px;
		height: 38px;
		background: #f2f4f8;
		border: 0;
		border-radius: 10px;
		font-size: 24px;
	}

	.alka-mobile-panel ul {
		padding: 12px 0;
		margin: 0;
		list-style: none;
	}

	.alka-mobile-panel a {
		display: block;
		padding: 10px 4px;
		font-weight: 700;
	}

	.alka-mobile-panel .sub-menu {
		padding: 0 0 0 16px;
		color: var(--alka-muted);
	}

	.alka-mobile-catalog {
		padding: 13px 16px !important;
		color: #fff;
		background: var(--alka-blue);
		border-radius: 12px;
		text-align: center;
	}

	.alka-hero-grid {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-block: 60px;
	}

	.alka-hero-art {
		display: none;
	}

	.alka-hero-copy {
		max-width: 650px;
	}

	.alka-category-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.woocommerce .products,
	.woocommerce ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.alka-benefits {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 0;
	}

	.alka-benefits article:nth-child(2) {
		border-right: 0;
	}

	.alka-benefits article:nth-child(3) {
		padding-left: 0;
	}

	.alka-footer-grid {
		grid-template-columns: 1.4fr 1fr 1fr;
		gap: 36px;
	}

	.alka-footer-contact {
		grid-column: 2;
	}

	.alka-shop-sidebar {
		display: none;
	}
}

@media (max-width: 620px) {
	.alka-container {
		width: calc(100% - 22px);
		max-width: 520px;
	}

	.alka-notice {
		font-size: 10px;
		text-align: center;
	}

	.alka-header-main {
		grid-template-columns: auto auto 1fr auto;
		min-height: 68px;
	}

	.alka-search {
		order: 5;
		grid-column: 1 / -1;
		width: 100%;
		padding-bottom: 12px;
	}

	.alka-search input[type="search"],
	.alka-search .search-field {
		height: 44px;
	}

	.alka-search button,
	.alka-search input[type="submit"] {
		height: 34px;
	}

	.alka-search-icon {
		top: 11px;
	}

	.alka-header-action:not(.alka-cart) {
		display: none;
	}

	.alka-hero-grid {
		padding-block: 44px;
	}

	.alka-hero h1 {
		font-size: clamp(31px, 9.5vw, 44px);
	}

	.alka-hero-copy > p {
		font-size: 15px;
	}

	.alka-hero-actions,
	.alka-button {
		width: 100%;
	}

	.alka-hero-facts {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}

	.alka-hero-facts strong {
		font-size: 12px;
	}

	.alka-section {
		padding-block: 56px;
	}

	.alka-section-head {
		align-items: start;
	}

	.alka-section-head > a {
		font-size: 0;
	}

	.alka-category-grid {
		grid-template-columns: 1fr;
	}

	.alka-category-card {
		min-height: 96px;
	}

	.alka-category-image {
		flex-basis: 68px;
		width: 68px;
		height: 68px;
	}

	.woocommerce .products,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 9px;
	}

	.woocommerce ul.products li.product,
	.woocommerce-page ul.products li.product {
		padding: 9px;
		border-radius: 14px;
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		min-height: 58px;
		font-size: 12px;
	}

	.woocommerce ul.products li.product .price {
		font-size: 15px;
	}

	.alka-stock-badge {
		top: 15px;
		left: 15px;
		padding: 5px 6px;
		font-size: 7px;
	}

	.woocommerce span.onsale {
		top: 15px;
		right: 15px;
	}

	.alka-benefits {
		grid-template-columns: 1fr;
	}

	.alka-benefits article,
	.alka-benefits article:first-child,
	.alka-benefits article:nth-child(3) {
		padding: 0 0 24px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .15);
	}

	.alka-benefits article:last-child {
		padding-bottom: 0;
		border: 0;
	}

	.alka-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 34px 24px;
	}

	.alka-footer-grid > div:first-child {
		grid-column: 1 / -1;
	}

	.alka-footer-contact {
		grid-column: auto;
	}

	.alka-footer-bottom {
		gap: 16px;
	}

	.alka-content,
	.woocommerce div.product,
	.woocommerce form.checkout,
	.woocommerce-account .woocommerce {
		padding: 18px;
	}

	.woocommerce div.product .product_title {
		font-size: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
