/* =========================================================================
   ElektraNu — design system
   Mobile-first. Forced light mode. 8px spacing grid.
   Accent discipline: orange = primary action + sale. Navy = links, nav,
   secondary. Never two loud accents in one block.
   ========================================================================= */

/* ---------- Tokens ---------- */

:root {
	color-scheme: only light;

	/* Brand */
	--ink: #13223B;
	--navy-900: #0E1B30;
	--orange: #F7931E;
	--orange-600: #E07C0A;
	--soft: #F5F7FA;
	--line: #E5E9F0;
	--muted: #5B6675;
	--text: #1B2636;
	--ok: #1E874B;
	--white: #FFFFFF;

	/* Type scale — 13 / 15 / 17 / 20 / 26 / 34 / 46 */
	--fs-xs: 0.8125rem;
	--fs-sm: 0.9375rem;
	--fs-md: 1.0625rem;
	--fs-lg: 1.25rem;
	--fs-xl: 1.625rem;
	--fs-2xl: 2.125rem;
	--fs-3xl: 2.875rem;

	--font-head: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

	/* 8px grid */
	--s1: 0.5rem;
	--s2: 1rem;
	--s3: 1.5rem;
	--s4: 2rem;
	--s5: 3rem;
	--s6: 4rem;
	--s7: 6rem;

	--r-sm: 6px;
	--r-md: 10px;
	--r-lg: 16px;
	--r-xl: 24px;
	--r-pill: 999px;

	--shadow-sm: 0 1px 2px rgba(19, 34, 59, .06);
	--shadow-md: 0 4px 16px rgba(19, 34, 59, .08);
	--shadow-lg: 0 16px 40px rgba(19, 34, 59, .12);

	--ease: cubic-bezier(.4, 0, .2, 1);
	--t: 180ms var(--ease);

	--wrap: 1280px;
	--header-h: 72px;
}

/* ---------- Reset ---------- */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--text);
	font-family: var(--font-body);
	font-size: var(--fs-md);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

h1, h2, h3, h4 {
	font-family: var(--font-head);
	color: var(--ink);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 var(--s2);
	font-weight: 700;
}

h1 { font-size: var(--fs-2xl); font-weight: 800; }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }

p { margin: 0 0 var(--s2); }

a { color: var(--ink); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--orange-600); }

button { font: inherit; cursor: pointer; }

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

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
	outline: 2px solid var(--orange);
	outline-offset: 2px;
	border-radius: var(--r-sm);
}

/* ---------- Layout helpers ---------- */

.wrap {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: var(--s2);
}

.section { padding-block: var(--s5); }
.section--soft { background: var(--soft); }

.section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--s2);
	margin-bottom: var(--s3);
}
.section__head p { color: var(--muted); margin: 4px 0 0; font-size: var(--fs-sm); }
.section__head h2 { margin: 0; }

.eyebrow {
	font-family: var(--font-head);
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--orange-600);
	margin: 0 0 var(--s1);
}

.link-more {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: var(--fs-sm);
	color: var(--ink);
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	gap: 6px;
}
.link-more svg { width: 16px; height: 16px; transition: transform var(--t); }
.link-more:hover svg { transform: translateX(3px); }

.icon { width: 24px; height: 24px; flex: none; }

/* ---------- Buttons ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--s1);
	min-height: 48px;
	padding: 0 var(--s3);
	border: 2px solid transparent;
	border-radius: var(--r-md);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: var(--fs-sm);
	line-height: 1;
	text-align: center;
	transition: background-color var(--t), border-color var(--t), color var(--t), transform var(--t);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-600); color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(19, 34, 59, .22); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .4); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--block { width: 100%; padding-inline: var(--s1); }

/* ---------- Topbar (USP) ---------- */

.topbar {
	background: var(--navy-900);
	color: rgba(255, 255, 255, .92);
	font-size: var(--fs-xs);
	font-weight: 500;
}
.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s3);
	min-height: 40px;
}
.topbar__list { display: none; gap: var(--s4); }
.topbar__item { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar__item svg { width: 16px; height: 16px; color: var(--orange); }

.topbar__aside { display: none; gap: var(--s3); }
.topbar__aside a { color: rgba(255, 255, 255, .8); }
.topbar__aside a:hover { color: #fff; }

/* Mobile: a single rotating USP. The track holds duplicated items and steps
   with a transform, so there is never an empty frame. */
.ticker {
	overflow: hidden;
	height: 40px;
	flex: 1;
}
.ticker__track { transition: transform 520ms var(--ease); }
.ticker__item {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	white-space: nowrap;
}
.ticker__item svg { width: 15px; height: 15px; color: var(--orange); }

/* ---------- Header ---------- */

.header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: #fff;
	border-bottom: 1px solid var(--line);
	transition: box-shadow var(--t);
}
.header.is-stuck { box-shadow: var(--shadow-md); }

.header__inner {
	display: flex;
	align-items: center;
	gap: var(--s2);
	min-height: var(--header-h);
	transition: min-height var(--t);
}
.header.is-stuck .header__inner { min-height: 60px; }

.logo { display: block; flex: none; }
.logo img {
	height: 42px;
	width: auto;
	transition: height var(--t);
}
.header.is-stuck .logo img { height: 34px; }

.header__actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }

.iconbtn {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-width: 48px;
	min-height: 48px;
	padding: 6px 8px;
	border: 0;
	background: transparent;
	border-radius: var(--r-md);
	color: var(--ink);
	font-family: var(--font-head);
	font-size: 11px;
	font-weight: 600;
	transition: background-color var(--t);
}
.iconbtn:hover { background: var(--soft); color: var(--ink); }
.iconbtn__label { display: none; }
.iconbtn__count {
	position: absolute;
	top: 4px;
	right: 6px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: var(--r-pill);
	background: var(--orange);
	color: #fff;
	font-size: 11px;
	line-height: 18px;
	text-align: center;
}

.burger { display: inline-flex; }

/* ---------- Search ---------- */

.header .search { display: none; }
.search { flex: 1; min-width: 0; }
.search__form {
	display: flex;
	align-items: stretch;
	border: 2px solid var(--line);
	border-radius: var(--r-md);
	background: #fff;
	overflow: hidden;
	transition: border-color var(--t), box-shadow var(--t);
}
.search__form:focus-within {
	border-color: var(--ink);
	box-shadow: 0 0 0 4px rgba(19, 34, 59, .06);
}
.search__scope {
	display: none;
	border: 0;
	border-right: 1px solid var(--line);
	background: var(--soft);
	color: var(--ink);
	font-family: var(--font-head);
	font-size: var(--fs-xs);
	font-weight: 600;
	padding: 0 var(--s2);
	max-width: 190px;
}
.search__input {
	flex: 1;
	min-width: 0;
	border: 0;
	padding: 12px var(--s2);
	font-size: 16px; /* 16px stops iOS zooming on focus */
	font-family: var(--font-body);
	color: var(--text);
	background: transparent;
}
.search__input::placeholder { color: #94A0B0; }
.search__input:focus { outline: 0; }
.search__btn {
	flex: none;
	border: 0;
	width: 52px;
	display: grid;
	place-items: center;
	background: var(--orange);
	color: #fff;
	transition: background-color var(--t);
}
.search__btn:hover { background: var(--orange-600); }
.search__btn svg { width: 20px; height: 20px; }

/* Mobile search rail: hides on scroll-down, returns on scroll-up */
.searchbar {
	position: sticky;
	top: var(--header-h);
	z-index: 55;
	background: #fff;
	border-bottom: 1px solid var(--line);
	padding: var(--s1) 0;
	transition: transform 260ms var(--ease);
}
.searchbar.is-hidden { transform: translateY(-140%); }

/* ---------- Nav / mega menu ---------- */

.nav { display: none; border-top: 1px solid var(--line); }
.nav__list { display: flex; gap: 2px; flex-wrap: nowrap; }

/* The two lowest-priority entries only appear once there is room for them.
   They cannot be scrolled away instead: an overflow container would clip
   the mega menu that hangs out of it. */
.nav__item--extra { display: none; }
.nav__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 10px;
	font-family: var(--font-head);
	font-size: var(--fs-sm);
	font-weight: 600;
	color: var(--ink);
	border-bottom: 3px solid transparent;
	white-space: nowrap;
	background: none;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	transition: color var(--t), border-color var(--t);
}
.nav__link:hover, .nav__item.is-open .nav__link {
	color: var(--orange-600);
	border-bottom-color: var(--orange);
}
.nav__link svg { width: 14px; height: 14px; transition: transform var(--t); }
.nav__item.is-open .nav__link svg { transform: rotate(180deg); }

.nav__item { position: static; }

.mega {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: #fff;
	border-top: 1px solid var(--line);
	box-shadow: var(--shadow-lg);
	padding: var(--s4) 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.nav__item.is-open .mega { opacity: 1; visibility: visible; transform: none; }

.mega__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--s3) var(--s4);
}
.mega__col h4 {
	font-size: var(--fs-sm);
	margin-bottom: var(--s1);
	padding-bottom: var(--s1);
	border-bottom: 1px solid var(--line);
}
.mega__col a {
	display: block;
	padding: 5px 0;
	font-size: var(--fs-sm);
	color: var(--muted);
}
.mega__col a:hover { color: var(--orange-600); }

.mega__promo {
	border-radius: var(--r-lg);
	overflow: hidden;
	position: relative;
	background: var(--soft);
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: var(--s2);
	color: #fff;
}
.mega__promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mega__promo::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(14, 27, 48, .88), rgba(14, 27, 48, .1));
}
.mega__promo > * { position: relative; z-index: 1; }
.mega__promo strong { font-family: var(--font-head); font-size: var(--fs-md); display: block; }
.mega__promo span { font-size: var(--fs-xs); color: rgba(255, 255, 255, .8); }

/* ---------- Mobile drawer nav ---------- */

.mobnav {
	position: fixed;
	inset: 0 30% 0 0;
	min-width: 300px;
	max-width: 420px;
	background: #fff;
	z-index: 90;
	transform: translateX(-100%);
	transition: transform 280ms var(--ease);
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-lg);
	visibility: hidden;
}
.mobnav.is-open { transform: none; visibility: visible; }
.mobnav__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--s2);
	border-bottom: 1px solid var(--line);
}
.mobnav__head img { height: 32px; width: auto; }
.mobnav__body { overflow-y: auto; padding: var(--s1) 0 var(--s4); }
.mobnav__link {
	display: flex;
	align-items: center;
	gap: var(--s2);
	padding: 14px var(--s2);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: var(--fs-sm);
	border-bottom: 1px solid var(--line);
}
.mobnav__link svg:first-child { width: 20px; height: 20px; color: var(--ink); }
.mobnav__link svg:last-child { width: 16px; height: 16px; margin-left: auto; color: var(--muted); }

.scrim {
	position: fixed;
	inset: 0;
	background: rgba(14, 27, 48, .5);
	opacity: 0;
	visibility: hidden;
	z-index: 80;
	transition: opacity var(--t), visibility var(--t);
}
.scrim.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */

.hero { padding-block: var(--s4) var(--s5); }
.hero__grid { display: grid; gap: var(--s3); align-items: center; }

.hero h1 { font-size: var(--fs-2xl); margin-bottom: var(--s2); }
.hero h1 em {
	font-style: italic;
	font-weight: 800;
	color: var(--orange);
	font-family: var(--font-head);
}
.hero__lead { color: var(--muted); font-size: var(--fs-md); max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s1); margin-top: var(--s3); }

.hero__media {
	position: relative;
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	aspect-ratio: 3 / 2;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

.hero__chip {
	position: absolute;
	left: var(--s2);
	bottom: var(--s2);
	right: var(--s2);
	display: flex;
	align-items: center;
	gap: var(--s2);
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(6px);
	border-radius: var(--r-md);
	padding: var(--s1) var(--s2);
	box-shadow: var(--shadow-md);
}
.hero__chip svg { width: 28px; height: 28px; color: var(--orange); flex: none; }
.hero__chip strong { font-family: var(--font-head); font-size: var(--fs-sm); display: block; color: var(--ink); }
.hero__chip span { font-size: var(--fs-xs); color: var(--muted); }

.trustrow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--s2) var(--s3);
	margin-top: var(--s3);
	padding-top: var(--s3);
	border-top: 1px solid var(--line);
	font-size: var(--fs-xs);
	color: var(--muted);
}
.trustrow strong { color: var(--ink); font-family: var(--font-head); }
.trustrow > div { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.trustrow__seal {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	border: 1px solid var(--line);
	border-radius: var(--r-pill);
	background: #fff;
	font-family: var(--font-head);
	font-size: 11px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: .02em;
}
.trustrow__seal svg { width: 15px; height: 15px; color: var(--orange); }
.trustrow svg { width: 18px; height: 18px; color: var(--ok); }

.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 15px; height: 15px; color: var(--orange); }

/* ---------- Brands strip ---------- */

.brands { border-block: 1px solid var(--line); padding-block: var(--s3); background: #fff; }
.brands__label {
	font-family: var(--font-head);
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
	text-align: center;
	margin-bottom: var(--s2);
}
.brands__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--s2) var(--s4);
}
.brands__item {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: var(--fs-md);
	color: #9AA6B6;
	letter-spacing: -0.01em;
	transition: color var(--t);
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding-inline: 4px;
}
.brands__item:hover { color: var(--ink); }

/* ---------- Category grid ---------- */

.cats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s2); }

.cat-tile {
	display: flex;
	flex-direction: column;
	gap: var(--s1);
	padding: var(--s2);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.cat-tile:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: #CFD8E4;
}
.cat-tile__art {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	border-radius: var(--r-md);
	background: var(--soft);
	overflow: hidden;
}
.cat-tile__art img { width: 100%; height: 100%; object-fit: cover; }
.cat-tile__art svg { width: 52px; height: 52px; color: var(--ink); opacity: .85; }
.cat-tile__name {
	overflow-wrap: anywhere;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: var(--fs-sm);
	color: var(--ink);
	line-height: 1.3;
}
.cat-tile__count { font-size: var(--fs-xs); color: var(--muted); }

/* ---------- Product card ---------- */

.grid-products {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--s2);
}

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: var(--s2);
	transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: #CFD8E4;
}

.card__media {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	margin-bottom: var(--s2);
	border-radius: var(--r-md);
	background: var(--soft);
	overflow: hidden;
}
.card__media img { width: 100%; height: 100%; object-fit: contain; padding: 12%; }
.card__media svg { width: 46%; height: 46%; color: var(--ink); opacity: .8; }

.badge {
	position: absolute;
	top: var(--s1);
	left: var(--s1);
	z-index: 2;
	padding: 4px 10px;
	border-radius: var(--r-pill);
	font-family: var(--font-head);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .02em;
	background: var(--orange);
	color: #fff;
}

.card__eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 2px;
}
.card__brand {
	font-family: var(--font-head);
	font-size: var(--fs-xs);
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 2px;
}
.card__title {
	overflow-wrap: anywhere;
	font-family: var(--font-head);
	font-size: var(--fs-sm);
	font-weight: 600;
	line-height: 1.35;
	color: var(--ink);
	margin: 0 0 var(--s1);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card__price { margin-top: auto; display: flex; align-items: baseline; gap: var(--s1); flex-wrap: wrap; }
.price {
	font-family: var(--font-head);
	font-size: var(--fs-lg);
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -0.02em;
}
.price--sale { color: var(--orange-600); }
.price--old {
	font-size: var(--fs-xs);
	font-weight: 500;
	color: var(--muted);
	text-decoration: line-through;
	font-family: var(--font-body);
}
.card__vat { font-size: 11px; color: var(--muted); margin-top: 2px; }

.stock {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	margin: var(--s1) 0;
	font-size: var(--fs-xs);
	color: var(--muted);
	line-height: 1.35;
}
.stock svg { width: 15px; height: 15px; color: var(--ok); flex: none; margin-top: 1px; }
.stock strong { color: var(--ok); font-weight: 600; }

/* ---------- Why / USP blocks ---------- */

.why { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: var(--s2); }
.why__item {
	display: flex;
	gap: var(--s2);
	padding: var(--s2);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
}
.why__icon {
	flex: none;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: var(--r-md);
	background: var(--soft);
}
.why__icon svg { width: 26px; height: 26px; color: var(--ink); }
.why__item h3 { font-size: var(--fs-md); margin-bottom: 2px; }
.why__item p { font-size: var(--fs-sm); color: var(--muted); margin: 0; }

/* ---------- Promo band ---------- */

.promo {
	position: relative;
	border-radius: var(--r-xl);
	overflow: hidden;
	background: var(--navy-900);
	color: #fff;
	display: grid;
}
.promo__media { position: relative; min-height: 240px; }
.promo__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo__body { padding: var(--s4) var(--s3); }
.promo h2 { color: #fff; }
.promo h2 em { font-style: italic; color: var(--orange); }
.promo p { color: rgba(255, 255, 255, .78); font-size: var(--fs-sm); max-width: 48ch; }
.promo__list { margin: var(--s2) 0 var(--s3); display: grid; gap: 8px; }
.promo__list li { display: flex; align-items: center; gap: 10px; font-size: var(--fs-sm); }
.promo__list svg { width: 18px; height: 18px; color: var(--orange); flex: none; }

/* ---------- Reviews ---------- */

.reviews { display: grid; gap: var(--s2); }
.review {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: var(--s3) var(--s2);
}
.review__text { font-size: var(--fs-sm); color: var(--text); margin: var(--s1) 0 var(--s2); }
.review__who { display: flex; align-items: center; gap: var(--s1); font-size: var(--fs-xs); color: var(--muted); }
.review__avatar {
	width: 34px;
	height: 34px;
	border-radius: var(--r-pill);
	background: var(--ink);
	color: #fff;
	display: grid;
	place-items: center;
	font-family: var(--font-head);
	font-size: var(--fs-xs);
	font-weight: 700;
	flex: none;
}
.review__who strong { display: block; color: var(--ink); font-family: var(--font-head); }

.score {
	display: flex;
	align-items: center;
	gap: var(--s2);
	background: var(--ink);
	color: #fff;
	border-radius: var(--r-lg);
	padding: var(--s3) var(--s2);
}
.score__num { font-family: var(--font-head); font-size: var(--fs-2xl); font-weight: 800; line-height: 1; }
.score p { color: rgba(255, 255, 255, .76); font-size: var(--fs-xs); margin: 4px 0 0; }

/* ---------- Footer ---------- */

.footer { background: var(--navy-900); color: rgba(255, 255, 255, .72); padding-block: var(--s5) var(--s3); }
.footer h4 {
	color: #fff;
	font-size: var(--fs-sm);
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-bottom: var(--s2);
}
.footer a { color: rgba(255, 255, 255, .72); font-size: var(--fs-sm); }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; gap: var(--s4); }
.footer__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s3); }
.footer__list li { padding: 0; }
.footer__list a { display: inline-flex; align-items: center; min-height: 40px; }
.footer__logo { height: 40px; width: auto; margin-bottom: var(--s2); }
.footer__about p { font-size: var(--fs-sm); max-width: 40ch; }

.newsletter__form { display: flex; flex-wrap: wrap; gap: var(--s1); margin-top: var(--s1); }
.newsletter__form .btn { flex: 1 1 auto; }
.newsletter__input {
	flex: 1;
	min-width: 0;
	border: 1px solid rgba(255, 255, 255, .22);
	background: rgba(255, 255, 255, .06);
	color: #fff;
	border-radius: var(--r-md);
	padding: 12px var(--s2);
	font-size: 16px;
	font-family: var(--font-body);
	flex: 1 1 160px;
}
.newsletter__input::placeholder { color: rgba(255, 255, 255, .5); }

.paybar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--s1);
	margin-top: var(--s2);
}
.pay {
	height: 30px;
	min-width: 48px;
	padding: 0 10px;
	display: grid;
	place-items: center;
	background: #fff;
	border-radius: var(--r-sm);
	font-family: var(--font-head);
	font-size: 11px;
	font-weight: 700;
	color: var(--navy-900);
	letter-spacing: -.01em;
}

.footer__bottom {
	margin-top: var(--s4);
	padding-top: var(--s2);
	border-top: 1px solid rgba(255, 255, 255, .14);
	display: flex;
	flex-wrap: wrap;
	gap: var(--s1) var(--s3);
	justify-content: space-between;
	font-size: var(--fs-xs);
}

/* ---------- Cart drawer ---------- */

.drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(420px, 92vw);
	background: #fff;
	z-index: 90;
	transform: translateX(100%);
	transition: transform 280ms var(--ease);
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: none; visibility: visible; }
.drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--s2);
	border-bottom: 1px solid var(--line);
}
.drawer__head h3 { margin: 0; }
.drawer__body { flex: 1; overflow-y: auto; padding: var(--s2); }
.drawer__foot { border-top: 1px solid var(--line); padding: var(--s2); }
.drawer__empty { text-align: center; color: var(--muted); font-size: var(--fs-sm); padding: var(--s5) 0; }

.cartline { display: flex; gap: var(--s2); padding: var(--s2) 0; border-bottom: 1px solid var(--line); }
.cartline__art {
	width: 64px;
	height: 64px;
	flex: none;
	border-radius: var(--r-sm);
	background: var(--soft);
	display: grid;
	place-items: center;
}
.cartline__art svg { width: 30px; height: 30px; color: var(--ink); opacity: .8; }
.cartline h4 { font-size: var(--fs-xs); margin: 0 0 2px; line-height: 1.3; }
.cartline span { font-size: var(--fs-xs); color: var(--muted); }
.cartline b { font-family: var(--font-head); color: var(--ink); }

.drawer__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: var(--s2); }
.drawer__total b { font-family: var(--font-head); font-size: var(--fs-lg); color: var(--ink); }

/* ---------- Toast ---------- */

.toast {
	position: fixed;
	left: 50%;
	bottom: 24px;
	z-index: 100;
	transform: translate(-50%, 140%);
	display: flex;
	align-items: center;
	gap: var(--s2);
	width: min(440px, calc(100vw - 32px));
	background: var(--ink);
	color: #fff;
	border-radius: var(--r-md);
	padding: var(--s2);
	box-shadow: var(--shadow-lg);
	transition: transform 320ms var(--ease);
}
.toast.is-open { transform: translate(-50%, 0); }
.toast__icon {
	width: 34px;
	height: 34px;
	flex: none;
	border-radius: var(--r-pill);
	background: var(--ok);
	display: grid;
	place-items: center;
}
.toast__icon svg { width: 18px; height: 18px; color: #fff; }
.toast strong { display: block; font-family: var(--font-head); font-size: var(--fs-sm); }
.toast button {
	margin-left: auto;
	background: transparent;
	border: 0;
	color: var(--orange);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: var(--fs-xs);
	white-space: nowrap;
}

/* ---------- Floating WhatsApp ---------- */

.wa {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 70;
	width: 54px;
	height: 54px;
	border-radius: var(--r-pill);
	background: #25D366;
	display: grid;
	place-items: center;
	box-shadow: var(--shadow-lg);
	transition: transform var(--t);
}
.wa:hover { transform: scale(1.06); }
.wa svg { width: 28px; height: 28px; color: #fff; }

/* ---------- Reveal on scroll ---------- */

/* Scoped to .js so that if the script never runs, the content is simply
   visible rather than permanently transparent. */
.js .reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Breakpoints ---------- */

@media (min-width: 600px) {
	.cats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.grid-products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.why { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
	:root { --header-h: 88px; }

	h1 { font-size: var(--fs-3xl); }
	h2 { font-size: var(--fs-2xl); }
	.section { padding-block: var(--s6); }

	.wrap { padding-inline: var(--s3); }

	.topbar__list { display: flex; }
	.ticker { display: none; }

	.burger, .searchbar { display: none; }
	.header .search { display: block; }
	.nav { display: block; }
	.search__scope { display: block; }
	.iconbtn__label { display: block; }

	.header__inner { gap: var(--s4); }
	.search { max-width: 620px; margin-inline: auto; }

	.hero { padding-block: var(--s6); }
	.hero__grid { grid-template-columns: 1fr 1.1fr; gap: var(--s5); }
	.hero h1 { font-size: var(--fs-3xl); }
	.hero__lead { font-size: var(--fs-lg); }

	.cats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.grid-products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.why { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.reviews { grid-template-columns: repeat(3, minmax(0, 1fr)); }

	.promo { grid-template-columns: 1.15fr 1fr; align-items: center; }
	.promo__media { min-height: 380px; }
	.promo__body { padding: var(--s5); }

	.footer__grid { grid-template-columns: 1.2fr 2.4fr; gap: var(--s6); }

	.wa { right: 24px; bottom: 24px; width: 60px; height: 60px; }
}

@media (min-width: 1120px) {
	.why { grid-template-columns: repeat(5, minmax(0, 1fr)); }
	.why__item { flex-direction: column; }

	.footer__cols { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.topbar__aside { display: flex; }
	.nav__item--extra { display: block; }
	.nav__list { gap: var(--s1); }
	.nav__link { padding: 12px var(--s2); }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
	}
	.js .reveal { opacity: 1; transform: none; }
}
