:root {
	--sale: #e8332a;
	--sale-soft: #fdeceb;
	--ok: #17864f;
	--ok-soft: #e7f5ee;
}

.head__inner { gap: clamp(12px, 2vw, 28px); }

.hsearch {
	position: relative;
	display: flex;
	align-items: center;
	flex: 1 1 320px;
	min-width: 0;
	max-width: 520px;
	height: 48px;
	padding: 0 6px 0 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.hsearch:focus-within { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(0, 174, 239, .14); }
.hsearch > .ico { color: var(--muted); flex: none; }
.hsearch input {
	flex: 1;
	min-width: 0;
	height: 100%;
	padding: 0 10px;
	border: 0;
	background: none;
	font-size: 15px;
	outline: none;
}
.hsearch input::-webkit-search-cancel-button { display: none; }
.hsearch__go {
	flex: none;
	display: inline-flex;
	align-items: center;
	height: 36px;
	padding: 0 18px;
	border: 0;
	border-radius: 999px;
	background: var(--grad);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.head__actions { gap: 6px; }

.hact {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-width: 62px;
	height: 52px;
	padding: 0 8px;
	border-radius: 14px;
	color: var(--ink);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .01em;
	transition: background-color .2s ease;
}
.hact:hover { background: rgba(45, 56, 138, .07); }
.hact .ico { width: 22px; height: 22px; }
.hact__badge {
	position: absolute;
	top: 3px;
	right: 10px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--sale);
	color: #fff;
	font-family: var(--mono);
	font-size: 10px;
	line-height: 18px;
	text-align: center;
}

.shopnav {
	position: sticky;
	top: var(--head-h);
	z-index: 40;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, .92);
	backdrop-filter: saturate(160%) blur(10px);
}
.shopnav__inner { position: relative; display: flex; align-items: center; gap: 8px; }
.shopnav__inner::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 48px;
	height: 100%;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .95));
}
.shopnav__all {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: none;
	height: 46px;
	margin: 6px 12px 6px 0;
	padding: 0 20px;
	border-radius: 999px;
	background: var(--ink);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}
.shopnav__all .ico { width: 18px; height: 18px; }
.shopnav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 1 1 auto;
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.shopnav__list::-webkit-scrollbar { display: none; }
.shopnav__list a {
	display: inline-flex;
	align-items: center;
	height: 46px;
	padding: 0 14px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	color: var(--ink-2);
	transition: background-color .2s ease, color .2s ease;
}
.shopnav__list a:hover { background: var(--paper); color: var(--ink); }
.shopnav__list a.is-hot { color: var(--sale); font-weight: 700; }

.hero--shop { padding: 22px 0 8px; background: var(--paper); }
.hero--shop .hero__grid {
	display: grid;
	grid-template-columns: 290px minmax(0, 1fr);
	gap: 20px;
	align-items: stretch;
}

.catbox {
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: var(--card);
	overflow: hidden;
}
.catbox__head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--line);
	background: var(--ink);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .02em;
	text-transform: uppercase;
}
.catbox__head .ico { width: 18px; height: 18px; }
.catbox__list { padding: 6px; }
.catbox__list li + li { border-top: 1px solid var(--line); }
.catbox__list a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.3;
	transition: background-color .2s ease, padding-left .2s ease;
}
.catbox__list a:hover { background: var(--paper); padding-left: 16px; }
.catbox__list a span { flex: 1; min-width: 0; }
.catbox__list a small { flex: none; font-family: var(--mono); font-size: 11px; color: var(--muted); }
.catbox__more {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 13px 18px;
	border-top: 1px solid var(--line);
	background: var(--studio);
	font-size: 14px;
	font-weight: 600;
}
.catbox__more .ico { width: 18px; height: 18px; }

.promo {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: 16px;
	align-items: center;
	padding: clamp(24px, 3.4vw, 44px);
	border-radius: var(--r);
	background: var(--grad);
	color: #fff;
	overflow: hidden;
}
.promo::after {
	content: "";
	position: absolute;
	inset: auto -80px -140px auto;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
}
.promo__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .18);
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.promo__title { font-size: clamp(28px, 3.6vw, 46px); line-height: 1.06; letter-spacing: -.02em; font-weight: 800; }
.promo__lead { margin-top: 12px; max-width: 46ch; font-size: clamp(15px, 1.2vw, 17px); color: rgba(255, 255, 255, .88); }
.promo__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.promo__media { position: relative; z-index: 1; }
.promo__media img { border-radius: var(--r-sm); box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .55); }
.promo__tag {
	position: absolute;
	left: -10px;
	bottom: -12px;
	padding: 10px 16px;
	border-radius: 999px;
	background: #fff;
	color: var(--ink);
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 700;
	box-shadow: var(--shadow);
}

.usp { padding: 20px 0 8px; background: var(--paper); }
.usp__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}
.usp__grid li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	background: var(--card);
}
.usp__grid .ico { width: 26px; height: 26px; color: var(--navy); flex: none; }
.usp__grid b { display: block; font-size: 14px; }
.usp__grid span { display: block; font-size: 13px; color: var(--muted); }

.grid-prod {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
	gap: 14px;
}

.pcard {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	background: var(--card);
	overflow: hidden;
	transition: border-color .2s ease, box-shadow .25s ease, transform .25s ease;
}
.pcard:hover { border-color: #cfd0c6; box-shadow: var(--shadow); transform: translateY(-3px); }
.pcard__flag {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--sale);
	color: #fff;
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 700;
}
.pcard__flag--new { background: var(--ok); }
.pcard__media {
	display: block;
	aspect-ratio: 1 / 1;
	padding: 14px;
	background: var(--studio);
}
.pcard__media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .35s ease; }
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__body { display: flex; flex-direction: column; flex: 1; gap: 8px; padding: 14px; }
.pcard__cat { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.pcard__name {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 3.9em;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
}
.pcard__name:hover { color: var(--navy); }
.pcard__prices { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.pcard__now { font-size: 21px; font-weight: 800; letter-spacing: -.02em; }
.pcard__now--sale { color: var(--sale); }
.pcard__old { font-size: 14px; color: var(--muted); text-decoration: line-through; }
.pcard__unit { font-size: 12px; color: var(--muted); }
.pcard__buy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 44px;
	border-radius: 999px;
	background: var(--ink);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	transition: background-color .2s ease;
}
.pcard__buy .ico { width: 18px; height: 18px; }
.pcard__buy:hover { background: var(--navy); }
.pcard--sale .pcard__buy { background: var(--sale); }
.pcard--sale .pcard__buy:hover { background: #c4241c; }

.deals { padding-block: clamp(40px, 5vw, 72px); background: var(--card); }
.deals .section__title { font-size: clamp(26px, 3vw, 40px); }
.popular { padding-top: clamp(40px, 5vw, 72px); }
.popular .section__title { font-size: clamp(26px, 3vw, 40px); }
.deals__timer {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--sale-soft);
	color: var(--sale);
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 700;
}
.deals__timer .ico { width: 16px; height: 16px; }

.rail--cards { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; }
.rail--cards::-webkit-scrollbar { display: none; }
.rail--cards > li { flex: 0 0 236px; scroll-snap-align: start; }

.trust { padding: 28px 0; background: var(--studio); border-top: 1px solid var(--line); }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.trust__k { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.trust__logos { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.trust__logos span {
	padding: 9px 18px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 600;
	color: var(--ink-2);
}

.msearch { margin: 8px 0; max-width: none; flex: 1 1 auto; }

@media (min-width: 961px) {
	.nav { display: none; }
	.msearch { display: none; }
}

@media (max-width: 1080px) {
	.hero--shop .hero__grid { grid-template-columns: 1fr; }
	.catbox { display: none; }
	.usp__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
	.hsearch:not(.msearch) { display: none; }
	.shopnav { position: static; }
	.shopnav__inner { flex-direction: column; align-items: stretch; gap: 0; }
	.shopnav__all { display: none; }
	.shopnav__list { margin-bottom: 4px; }
	.shopnav__inner::after { display: none; }
	.topbar__links .t-hide { display: none; }
	.deals__timer [data-cutoff-label] { display: none; }
}

@media (max-width: 860px) {
	.promo { grid-template-columns: 1fr; }
	.promo__media { display: none; }
}

@media (max-width: 560px) {
	.grid-prod { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
	.pcard__body { padding: 11px; gap: 6px; }
	.pcard__name { font-size: 13px; min-height: 3.6em; }
	.pcard__now { font-size: 18px; }
	.usp__grid { grid-template-columns: 1fr; }
	.hact { min-width: 46px; font-size: 0; gap: 0; }
	.rail--cards > li { flex-basis: 63vw; }
}

.section__foot { display: flex; justify-content: center; margin-top: 28px; }

.pdp { padding: 24px 0 8px; }
.pdp__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: start;
	margin-top: 18px;
}

.pgal { position: sticky; top: calc(var(--head-h) + 68px); display: flex; flex-direction: column; gap: 12px; }
.pgal__main {
	display: grid;
	place-items: center;
	padding: clamp(20px, 3vw, 44px);
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: var(--card);
}
.pgal__img { width: 100%; height: auto; object-fit: contain; mix-blend-mode: multiply; }
.pgal__thumbs { display: flex; flex-wrap: wrap; gap: 10px; }
.pgal__thumb {
	width: 84px;
	height: 84px;
	padding: 6px;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	background: var(--card);
	cursor: pointer;
	transition: border-color .2s ease;
}
.pgal__thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.pgal__thumb:hover { border-color: var(--muted); }
.pgal__thumb.is-active { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(45, 56, 138, .16); }

.pdp__title { font-size: clamp(25px, 3vw, 38px); line-height: 1.12; letter-spacing: -.02em; font-weight: 700; }
.pdp__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; margin-top: 14px; }
.pdp__stock { display: inline-flex; align-items: center; gap: 7px; color: var(--ok); font-size: 14px; font-weight: 600; }
.pdp__stock .ico { width: 17px; height: 17px; }
.pdp__sku { font-size: 13px; color: var(--muted); }
.pdp__lead { margin-top: 16px; font-size: 16px; color: var(--ink-2); }
.pdp__fit { margin-top: 8px; font-size: 15px; color: var(--ink-2); }

.pdp__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; margin-top: 22px; }
.pdp__price-now { font-size: clamp(26px, 3vw, 34px); font-weight: 800; letter-spacing: -.02em; color: var(--navy); }
.pdp__price-now small { font-size: 15px; font-weight: 500; color: var(--muted); }
.pdp__price-unit { font-size: 14px; color: var(--muted); }
.pdp__price-off { padding: 4px 10px; border-radius: 999px; background: var(--sale-soft); color: var(--sale); font-family: var(--mono); font-size: 13px; font-weight: 700; }

.tiers { margin: 22px 0 0; padding: 0; border: 0; }
.tiers legend { padding: 0; margin-bottom: 10px; font-size: 14px; font-weight: 600; }
.tiers__opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(128px, 1fr)); gap: 10px; }
.tier {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 14px 16px;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	background: var(--card);
	cursor: pointer;
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.tier:hover { border-color: var(--muted); }
.tier input { position: absolute; opacity: 0; pointer-events: none; }
.tier.is-active { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(45, 56, 138, .16); background: #f7f9ff; }
.tier__qty { font-size: 15px; font-weight: 700; }
.tier__sum { font-size: 13px; color: var(--muted); }
.tier__sum small { font-size: 11px; }
.tier__off {
	position: absolute;
	top: -9px;
	right: 10px;
	padding: 2px 9px;
	border-radius: 999px;
	background: var(--sale);
	color: #fff;
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
}

.ptable { margin-top: 26px; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); overflow: hidden; }
.ptable__head { padding: 18px 20px 14px; border-bottom: 1px solid var(--line); background: var(--studio); }
.ptable__head h2 { font-size: 17px; font-weight: 700; }
.ptable__head p { margin-top: 4px; font-size: 13px; color: var(--muted); }
.ptable__scroll { overflow-x: auto; }
.ptable__t { width: 100%; min-width: 440px; font-size: 14px; }
.ptable__t th, .ptable__t td { padding: 13px 20px; text-align: left; }
.ptable__t thead th {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--muted);
	border-bottom: 1px solid var(--line);
	white-space: nowrap;
}
.ptable__t tbody tr { cursor: pointer; transition: background-color .2s ease; }
.ptable__t tbody tr + tr th, .ptable__t tbody tr + tr td { border-top: 1px solid var(--line); }
.ptable__t tbody tr:hover { background: var(--studio); }
.ptable__t tbody tr.is-active { background: #f2f6ff; }
.ptable__t tbody tr.is-active th { box-shadow: inset 3px 0 0 var(--navy); }
.ptable__t tbody th { font-weight: 700; white-space: nowrap; }
.ptable__unit b { font-size: 16px; font-weight: 800; color: var(--navy); }
.ptable__save {
	display: inline-block;
	padding: 2px 9px;
	border-radius: 999px;
	background: var(--ok-soft);
	color: var(--ok);
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 700;
}
.ptable__t td small { margin-left: 8px; color: var(--muted); }
.ptable__base { font-size: 13px; color: var(--muted); }
.ptable__hint { padding: 13px 20px; border-top: 1px solid var(--line); background: var(--ok-soft); color: #0f6b3e; font-size: 14px; }

.pdp__buy { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.qty { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: var(--card); overflow: hidden; }
.qty__b { width: 46px; height: 52px; border: 0; background: none; font-size: 20px; font-weight: 600; color: var(--ink); cursor: pointer; transition: background-color .2s ease; }
.qty__b:hover { background: var(--paper); }
.qty__i { width: 58px; height: 52px; border: 0; background: none; text-align: center; font-size: 16px; font-weight: 700; -moz-appearance: textfield; }
.qty__i::-webkit-outer-spin-button, .qty__i::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp__cart { flex: 1 1 240px; min-height: 52px; }
.pdp__cartnote { margin-top: 10px; font-size: 13px; color: var(--muted); }

.pdp__facts { margin-top: 24px; border-top: 1px solid var(--line); }
.pdp__facts li { display: flex; flex-wrap: wrap; gap: 6px 16px; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.pdp__facts span { color: var(--muted); }
.pdp__note { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding: 13px 16px; border-radius: var(--r-sm); background: var(--kraft-soft); font-size: 14px; }
.pdp__note .ico { width: 20px; height: 20px; color: var(--kraft); flex: none; }
.pdp__cats { margin-top: 16px; font-size: 14px; color: var(--muted); }
.pdp__cats a { color: var(--navy); font-weight: 600; }
.pdp__cats a:hover { text-decoration: underline; }

.pdesc { padding-block: clamp(40px, 5vw, 72px); }
.pdesc__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.pdesc__copy .section__title { font-size: clamp(24px, 2.6vw, 34px); margin-bottom: 16px; }
.pdesc__copy p + p { margin-top: 14px; }
.pdesc__copy p { font-size: 16px; color: var(--ink-2); }
.pdesc__spec { padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); }
.pdesc__spec h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.spec > div { display: flex; flex-wrap: wrap; gap: 4px 16px; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--line); font-size: 14px; }
.spec dt { color: var(--muted); }
.spec dd { margin: 0; font-weight: 600; text-align: right; }

@media (max-width: 900px) {
	.pdp__grid, .pdesc__grid { grid-template-columns: minmax(0, 1fr); }
	.pgal { position: static; }
}

@media (max-width: 560px) {
	.tiers__opts { grid-template-columns: 1fr; }
	.ptable__t th, .ptable__t td { padding: 11px 14px; }
	.pdp__cart { flex-basis: 100%; }
}

.pdp__price-sum { font-size: 15px; color: var(--muted); }
.pdp__price-sum b { color: var(--ink); font-weight: 700; }
.tier__sum b { font-size: 15px; font-weight: 800; color: var(--navy); }
.qty__u { padding-right: 4px; font-size: 13px; color: var(--muted); }
.qty__i { width: 62px; }
.ptable__now { padding: 13px 20px; border-top: 1px solid var(--line); background: #f2f6ff; font-size: 14px; }
.ptable__now b { font-weight: 800; }
.ptable__t td small { display: inline-block; margin-left: 6px; font-family: var(--mono); font-size: 11px; color: var(--muted); }
.pdp__cartnote b { color: var(--ink); }
