:root {
	--om-blue: #005bff;
	--om-blue-hover: #0047d4;
	--om-blue-soft: #e8f0ff;
	--om-ink: #001a34;
	--om-muted: #5c6b7a;
	--om-faint: #8b97a3;
	--om-line: #e4e8ee;
	--om-bg: #f2f5f9;
	--om-card: #ffffff;
	--om-sale: #f91155;
	--om-green: #0b9f4a;
	--om-star: #ffb800;
	--om-radius: 16px;
	--om-radius-sm: 12px;
	--om-shadow: 0 8px 28px rgba(0, 26, 52, 0.08);
	--om-font: "Onest", "Segoe UI", sans-serif;
	--om-container: 1320px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	font-family: var(--om-font);
	color: var(--om-ink);
	background: var(--om-bg);
	font-size: 15px;
	line-height: 1.45;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.03em; }
p { margin: 0; }
.screen-reader-text,
.om-skip {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.om-skip:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	margin: 0;
	padding: 8px 12px;
	background: #fff;
	z-index: 100;
	clip: auto;
}
:focus-visible { outline: 2px solid var(--om-blue); outline-offset: 2px; }

.om-svg { width: 24px; height: 24px; display: block; flex: 0 0 auto; }
.om-container { width: min(var(--om-container), calc(100% - 32px)); margin-inline: auto; }
.om-muted { color: var(--om-muted); }

.om-sticky {
	position: sticky;
	top: 0;
	z-index: 40;
	width: 100%;
	max-width: 100%;
	background: #fff;
	box-shadow: 0 1px 0 rgba(0, 26, 52, 0.06);
}

.om-topbar { background: #fff; color: var(--om-muted); font-size: 13px; }
.om-topbar__inner { display: flex; align-items: center; gap: 20px; min-height: 36px; position: relative; }
.om-topbar__nav { flex: 1; }
.om-topbar .om-foot-list,
.om-inline-menu { display: flex; gap: 16px; flex-wrap: wrap; }
.om-topbar a:hover, .om-city:hover { color: var(--om-blue); }
.om-city {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: 0;
	padding: 0;
	color: var(--om-ink);
	font-weight: 600;
}
.om-city .om-svg { width: 16px; height: 16px; color: var(--om-blue); }
.om-city-pop {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	background: #fff;
	border-radius: 14px;
	box-shadow: var(--om-shadow);
	padding: 8px;
	min-width: 220px;
	z-index: 5;
}
.om-city-pop[hidden] { display: none; }
.om-city-pop button {
	display: block;
	width: 100%;
	text-align: left;
	background: none;
	border: 0;
	border-radius: 10px;
	padding: 10px 12px;
}
.om-city-pop button:hover, .om-city-pop button.is-on { background: var(--om-blue-soft); color: var(--om-blue); }
.om-topbar__right a { font-weight: 600; color: var(--om-ink); }

.om-header__row {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 76px;
}
.om-logo { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.om-logo__mark {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--om-blue);
	color: #fff;
	display: grid;
	place-items: center;
}
.om-logo__mark .om-svg { width: 22px; height: 22px; }
.om-logo__img { height: 40px; width: auto; }
.om-logo__name {
	font-weight: 800;
	font-size: 22px;
	letter-spacing: -0.04em;
	line-height: 1;
}
.om-catalog-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 48px;
	padding: 0 16px;
	border: 0;
	border-radius: 12px;
	background: var(--om-blue);
	color: #fff;
	font-weight: 700;
	flex: 0 0 auto;
}
.om-catalog-btn:hover, .om-catalog-btn[aria-expanded="true"] { background: var(--om-blue-hover); }
.om-catalog-btn .om-svg { width: 18px; height: 18px; }

.om-search { position: relative; flex: 1; min-width: 0; }
.om-search__input {
	width: 100%;
	height: 48px;
	border: 0;
	border-radius: 12px;
	background: var(--om-bg);
	padding: 0 56px 0 16px;
}
.om-search__input:focus { outline: none; box-shadow: 0 0 0 2px var(--om-blue); background: #fff; }
.om-search__btn {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 10px;
	background: var(--om-blue);
	color: #fff;
	display: grid;
	place-items: center;
}
.om-search__btn:hover { background: var(--om-blue-hover); }
.om-search__btn .om-svg { width: 20px; height: 20px; }
.om-suggest {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--om-shadow);
	padding: 8px;
	z-index: 6;
}
.om-suggest[hidden] { display: none; }
.om-suggest a {
	display: grid;
	grid-template-columns: 48px 1fr auto;
	gap: 10px;
	align-items: center;
	padding: 8px;
	border-radius: 12px;
}
.om-suggest a:hover { background: var(--om-bg); }
.om-suggest img { width: 36px; height: 48px; object-fit: contain; background: var(--om-bg); border-radius: 10px; }
.om-suggest strong { font-weight: 500; font-size: 14px; }
.om-suggest em { font-style: normal; font-weight: 700; white-space: nowrap; }

.om-actions { display: flex; align-items: stretch; gap: 2px; }
.om-action {
	position: relative;
	width: 72px;
	min-height: 56px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	color: var(--om-ink);
	font-size: 12px;
	font-weight: 500;
	border-radius: 12px;
}
.om-action:hover { background: var(--om-bg); color: var(--om-blue); }
.om-action .om-svg { width: 24px; height: 24px; }
.om-cart-count, .om-fav-count {
	position: absolute;
	top: 2px;
	right: 12px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 99px;
	background: var(--om-sale);
	color: #fff;
	font-style: normal;
	font-size: 11px;
	font-weight: 700;
	display: grid;
	place-items: center;
	line-height: 1;
}
.om-cart-count.is-empty, .om-fav-count.is-empty { display: none; }

.om-header-cart { position: relative; }
.om-minicart {
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	width: 360px;
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--om-shadow);
	padding: 12px;
	z-index: 7;
}
.om-minicart[hidden] { display: none !important; }
.om-minicart__empty { padding: 18px 8px; text-align: center; color: var(--om-muted); }
.om-minicart__item { display: grid; grid-template-columns: 56px 1fr auto; gap: 10px; align-items: center; padding: 8px 0; }
.om-minicart__thumb img { width: 48px; height: 64px; object-fit: cover; aspect-ratio: 3 / 4; background: var(--om-bg); border-radius: 10px; }
.om-minicart__info { min-width: 0; display: grid; gap: 4px; font-size: 13px; }
.om-minicart__info a { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.om-minicart__info span { color: var(--om-muted); }
.om-minicart__remove { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; color: var(--om-muted); font-size: 20px; }
.om-minicart__remove:hover { background: #fff1f4; color: var(--om-sale); }
.om-minicart__total, .om-minicart__actions { display: flex; justify-content: space-between; gap: 8px; align-items: center; margin-top: 8px; }
.om-minicart__actions .button { flex: 1; }

.om-catalog-panel {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: #fff;
	box-shadow: 0 18px 40px rgba(0, 26, 52, 0.12);
	border-radius: 0 0 20px 20px;
	padding: 18px 0 22px;
}
.om-catalog-panel[hidden] { display: none; }
.om-catalog-panel__grid { display: grid; grid-template-columns: 280px 1fr; gap: 12px; min-height: 280px; }
.om-cat-parents a, .om-cat-sub a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 11px 12px;
	border-radius: 12px;
	font-weight: 600;
}
.om-cat-parents .is-active > a, .om-cat-parents a:hover, .om-cat-sub a:hover { background: var(--om-blue-soft); color: var(--om-blue); }
.om-cat-parents .om-svg { width: 16px; height: 16px; color: var(--om-faint); }
.om-cat-sub { display: none; }
.om-cat-sub.is-active { display: block; }
.om-cat-sub ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.om-cat-sub__all { color: var(--om-blue); }
.om-backdrop { position: fixed; inset: 0; background: rgba(0, 26, 52, 0.35); z-index: 35; }
.om-backdrop[hidden] { display: none; }

.button, a.button, button.button, .om-slide__btn, .wp-element-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 16px;
	border-radius: 12px;
	border: 0;
	background: var(--om-blue);
	color: #fff !important;
	font-weight: 700;
	cursor: pointer;
	text-align: center;
	line-height: 1.2;
}
.button:hover, a.button:hover, button.button:hover, .om-slide__btn:hover { background: var(--om-blue-hover); }
a.button.om-buy-now,
.button.om-buy-now {
	display: flex;
	width: 100%;
	flex: 1 1 100%;
	margin-top: 4px;
	background: #fff !important;
	color: var(--om-blue) !important;
	box-shadow: inset 0 0 0 1.5px var(--om-blue);
}
.button.disabled { background: #e7ebf0 !important; color: var(--om-faint) !important; pointer-events: none; }

.om-main { padding-top: 24px; padding-bottom: 28px; }
.om-zoom[hidden] { display: none !important; }
.om-zoom {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 26, 52, 0.92);
}
.om-zoom img { max-width: 100%; max-height: 100%; object-fit: contain; }
.om-zoom__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 12px;
	background: #fff;
	color: var(--om-ink);
	font-size: 26px;
	line-height: 1;
}
.om-hero { padding-top: 16px; }
.om-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 12px; }
.om-hero__main { position: relative; min-height: 280px; }
.om-slide {
	display: none;
	min-height: 280px;
	border-radius: 20px;
	padding: 28px;
	color: #fff;
	position: relative;
	overflow: hidden;
	align-items: center;
}
.om-slide.is-active { display: flex; }
.om-slide.is-light { color: var(--om-ink); }
.om-slide__copy { position: relative; z-index: 1; max-width: 460px; display: grid; gap: 10px; }
.om-slide h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.05; }
.om-slide p { font-size: 16px; max-width: 36ch; }
.om-slide__btn { justify-self: start; background: #fff; color: var(--om-ink) !important; margin-top: 6px; }
.om-slide.is-light .om-slide__btn { background: var(--om-blue); color: #fff !important; }
.om-slide__pic {
	position: absolute;
	right: 12px;
	bottom: 0;
	width: min(46%, 380px);
	height: 100%;
	object-fit: contain;
	pointer-events: none;
}
.om-hero__dots { position: absolute; left: 28px; bottom: 16px; display: flex; gap: 6px; z-index: 2; }
.om-hero__dots button {
	width: 8px;
	height: 8px;
	border-radius: 99px;
	border: 0;
	background: rgba(255, 255, 255, 0.55);
	padding: 0;
}
.om-slide.is-light ~ .om-hero__dots button, .om-hero__main:has(.om-slide.is-active.is-light) .om-hero__dots button { background: rgba(0, 26, 52, 0.2); }
.om-hero__dots button.is-active { width: 22px; background: #fff; }
.om-hero__main:has(.om-slide.is-active.is-light) .om-hero__dots button.is-active { background: var(--om-blue); }
.om-hero__side { display: grid; gap: 12px; }
.om-side-card {
	border-radius: 20px;
	min-height: 134px;
	padding: 18px;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 4px;
}
.om-side-card b { font-size: 24px; letter-spacing: -0.03em; }
.om-side-card--dark { background: #001a34; }

.om-section { margin-top: 28px; }
.om-section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.om-section__title { font-size: 26px; }
.om-section__link { display: inline-flex; align-items: center; gap: 2px; color: var(--om-blue); font-weight: 700; }
.om-section__link .om-svg { width: 18px; height: 18px; }

.om-cat-tiles { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 10px; }
.om-tile { display: grid; justify-items: center; gap: 8px; text-align: center; font-size: 13px; font-weight: 600; }
.om-tile__pic {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 18px;
	background: #fff;
	display: grid;
	place-items: center;
	overflow: hidden;
	color: var(--om-blue);
}
.om-tile__pic .om-svg { width: 40px; height: 40px; }
.om-tile__pic img { width: 70%; height: 70%; object-fit: contain; }
.om-tile:hover .om-tile__pic { box-shadow: var(--om-shadow); }

.om-benefits { margin-top: 28px; }
.om-benefits__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	background: #fff;
	border-radius: 20px;
	padding: 8px;
}
.om-benefit { display: flex; gap: 12px; align-items: center; padding: 14px; }
.om-benefit .om-svg { width: 28px; height: 28px; color: var(--om-blue); }
.om-benefit b { display: block; }
.om-benefit span { color: var(--om-muted); font-size: 13px; }

.om-footer { margin-top: 36px; background: #fff; padding: 32px 0 20px; width: 100%; max-width: 100%; }
.om-bottom-nav { display: none; }
.om-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 24px; }
.om-footer__about { margin-top: 12px; color: var(--om-muted); max-width: 36ch; }
.om-footer__title { font-size: 15px; margin-bottom: 10px; }
.om-foot-list { display: grid; gap: 8px; color: var(--om-muted); }
.om-foot-list a:hover { color: var(--om-blue); }
.om-pay { margin-top: 14px; font-size: 13px; color: var(--om-faint); }
.om-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 22px;
	padding-top: 14px;
	border-top: 1px solid var(--om-line);
	color: var(--om-faint);
	font-size: 13px;
}
.om-logo--footer .om-logo__name { font-size: 20px; }

.om-page { padding-top: 18px; }
.om-page-title { font-size: clamp(28px, 3vw, 36px); margin: 8px 0 16px; }
.om-content, .om-article {
	background: #fff;
	border-radius: 20px;
	padding: 22px;
}
.om-article time, .om-post-card time { color: var(--om-faint); font-size: 13px; }
.om-content > * + * { margin-top: 12px; }
.om-content ul, .om-content ol { padding-left: 18px; }
.om-content li { list-style: disc; }
.om-posts { display: grid; gap: 12px; }
.om-post-card { display: grid; grid-template-columns: 220px 1fr; gap: 16px; background: #fff; border-radius: 18px; overflow: hidden; }
.om-post-card__media img { width: 100%; height: 100%; object-fit: cover; min-height: 140px; }
.om-post-card div { padding: 16px 16px 16px 0; }
.om-post-card h2 { font-size: 20px; margin: 6px 0; }
.om-article__cover { border-radius: 16px; overflow: hidden; margin-bottom: 16px; }
.om-article__cover img { width: 100%; max-height: 460px; object-fit: cover; }
.om-empty {
	background: #fff;
	border-radius: 20px;
	padding: 36px 20px;
	text-align: center;
	display: grid;
	justify-items: center;
	gap: 8px;
}
.om-empty .button { margin-top: 8px; }
.om-pager { margin-top: 16px; }
.om-comments { margin-top: 20px; }
.om-comment-list { display: grid; gap: 12px; margin: 12px 0; }
.om-comment-list li { background: var(--om-bg); border-radius: 12px; padding: 12px; list-style: none; }

body.om-lock { overflow: hidden; }

@media (max-width: 1100px) {
	.om-cat-tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.om-hero__grid, .om-footer__grid, .om-benefits__grid { grid-template-columns: 1fr 1fr; }
	.om-hero__side { grid-template-columns: 1fr 1fr; }
	.om-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
	.om-topbar { display: none; }
	.om-header__row { min-height: 0; padding: 10px 0 12px; display: grid; grid-template-columns: auto minmax(0, 1fr); width: 100%; }
	.om-main { padding-top: 16px; }
	.om-logo { grid-column: 1 / -1; }
	.om-logo__name { font-size: 18px; }
	.om-actions { display: none; }
	.om-catalog-btn span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
	.om-catalog-btn { width: 48px; padding: 0; justify-content: center; }
	.om-hero__grid, .om-hero__side, .om-benefits__grid, .om-footer__grid, .om-post-card { grid-template-columns: 1fr; }
	.om-post-card div { padding: 0 14px 14px; }
	.om-slide { min-height: 240px; padding: 20px; }
	.om-slide__pic { width: 46%; opacity: 0.95; }
	.om-cat-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.om-section__title { font-size: 22px; }
	.om-catalog-panel {
		position: fixed;
		inset: 0;
		border-radius: 0;
		z-index: 80;
		overflow: auto;
		padding-top: 12px;
	}
	.om-catalog-panel__grid, .om-cat-sub ul { grid-template-columns: 1fr; }
	.om-bottom-nav {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 45;
		background: #fff;
		border-top: 1px solid var(--om-line);
		padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
	}
	.om-bottom-nav a, .om-bottom-nav button {
		background: none;
		border: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 2px;
		font-size: 11px;
		font-weight: 600;
		color: var(--om-muted);
		padding: 4px 0;
	}
	.om-bottom-nav .om-svg { width: 22px; height: 22px; }
	.om-bottom-nav .is-active { color: var(--om-blue); }
	body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
	.om-footer__bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
}
