:root {
  --al-bg: #f7f5f0;
  --al-surface: #ffffff;
  --al-surface-soft: #f1eee7;
  --al-ink: #121820;
  --al-muted: #66707c;
  --al-line: #dedbd3;
  --al-line-dark: #273241;
  --al-dark: #0d1724;
  --al-dark-2: #152334;
  --al-accent: #b58b56;
  --al-accent-deep: #8d683c;
  --al-positive: #315e4c;
  --al-negative: #7b4e4b;
  --al-radius-sm: 12px;
  --al-radius: 20px;
  --al-radius-lg: 30px;
  --al-shadow: 0 22px 60px rgba(15, 24, 35, .08);
  --al-shadow-hover: 0 26px 70px rgba(15, 24, 35, .14);
  --al-container: 1220px;
  --al-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--al-ink);
  background: var(--al-bg);
  font-family: var(--al-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(181, 139, 86, .28); }

.container { width: min(calc(100% - 40px), var(--al-container)); margin-inline: auto; }
.narrow-content { width: min(100%, 840px); }
.site-main { min-height: 55vh; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { clip: auto; width: auto; height: auto; left: 20px; top: 20px; z-index: 10000; background: #fff; padding: 12px 16px; border-radius: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(18, 24, 32, .07);
  background: rgba(247,245,240,.88);
  backdrop-filter: blur(18px) saturate(1.3);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 34px rgba(15,24,35,.08); background: rgba(247,245,240,.96); }
.site-header__inner { min-height: 78px; display: flex; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand__mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: var(--al-dark); color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .08em; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }
.brand__text { display: grid; line-height: 1.1; gap: 4px; }
.brand__text strong { font-size: 15px; letter-spacing: -.01em; }
.brand__text small { color: var(--al-muted); font-size: 11px; }
.brand__logo .custom-logo-link { display: block; }
.brand__logo img { width: auto; max-height: 50px; }
.primary-nav { margin-left: auto; }
.primary-nav__list { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.primary-nav__list a { position: relative; display: inline-block; font-size: 14px; font-weight: 620; color: #293440; }
.primary-nav__list > li > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1.5px; background: var(--al-accent); transition: right .2s ease; }
.primary-nav__list > li > a:hover::after { right: 0; }
.primary-nav__list .sub-menu { position: absolute; margin: 12px 0 0; padding: 14px; min-width: 220px; list-style: none; background: #fff; border: 1px solid var(--al-line); border-radius: 14px; box-shadow: var(--al-shadow); opacity: 0; visibility: hidden; transform: translateY(6px); transition: .2s ease; }
.primary-nav__list li { position: relative; }
.primary-nav__list li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-nav__list .sub-menu a { display: block; padding: 9px 10px; border-radius: 8px; }
.primary-nav__list .sub-menu a:hover { background: var(--al-surface-soft); }
.site-header__actions { display: flex; align-items: center; gap: 8px; }
.icon-button { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--al-line); background: rgba(255,255,255,.6); color: var(--al-ink); border-radius: 13px; cursor: pointer; transition: .2s ease; }
.icon-button:hover { border-color: #b9b5ac; background: #fff; transform: translateY(-1px); }
.mobile-menu-button { display: none; }

.search-panel { position: fixed; inset: 0; z-index: 3000; }
.search-panel__backdrop { position: absolute; inset: 0; background: rgba(8,14,22,.62); backdrop-filter: blur(6px); }
.search-panel__dialog { position: relative; width: min(calc(100% - 32px), 680px); margin: 12vh auto 0; padding: clamp(30px, 5vw, 54px); background: var(--al-bg); border-radius: var(--al-radius-lg); box-shadow: 0 50px 130px rgba(0,0,0,.28); }
.search-panel__dialog h2 { margin: 6px 0 26px; font-size: clamp(30px, 5vw, 48px); line-height: 1.05; letter-spacing: -.045em; }
.search-panel__close { position: absolute; top: 18px; right: 18px; }
.search-panel .search-form { display: flex; gap: 10px; }
.search-panel .search-field { flex: 1; min-width: 0; border: 1px solid var(--al-line); background: #fff; border-radius: 14px; padding: 14px 16px; outline: 0; }
.search-panel .search-submit { border: 0; padding: 0 20px; border-radius: 14px; background: var(--al-dark); color: #fff; font-weight: 700; }
.search-panel__hint { color: var(--al-muted); font-size: 13px; margin: 14px 0 0; }

.eyebrow { margin: 0 0 10px; color: var(--al-accent-deep); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 11px 18px; border: 1px solid transparent; border-radius: 13px; font-size: 14px; font-weight: 750; line-height: 1; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--al-accent); color: #111820; box-shadow: 0 12px 28px rgba(181,139,86,.24); }
.button--primary:hover { background: #c39863; box-shadow: 0 14px 34px rgba(181,139,86,.3); }
.button--dark { background: var(--al-dark); color: #fff; }
.button--dark:hover { background: #17283c; }
.button--ghost { border-color: var(--al-line); background: rgba(255,255,255,.58); }
.button--ghost:hover { background: #fff; }
.button--light { background: #f7f5f0; color: var(--al-dark); }
.button--small { min-height: 40px; padding: 9px 14px; border-radius: 11px; font-size: 13px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 750; font-size: 14px; }
.text-link .icon { transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }
.text-button { border: 0; background: transparent; padding: 8px; color: var(--al-muted); cursor: pointer; }

.hero { overflow: hidden; padding: clamp(72px, 9vw, 126px) 0 94px; background: radial-gradient(circle at 84% 23%, rgba(181,139,86,.15), transparent 32%), linear-gradient(180deg, #f7f5f0 0%, #f4f1ea 100%); }
.hero__grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(390px,.9fr); align-items: center; gap: 78px; }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(48px, 6.3vw, 84px); line-height: .98; letter-spacing: -.065em; font-weight: 760; }
.hero__lead { max-width: 660px; margin: 28px 0 0; color: #4f5965; font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.hero-search { display: flex; align-items: center; gap: 12px; max-width: 690px; margin-top: 34px; padding: 8px 8px 8px 16px; border: 1px solid #d5d0c7; border-radius: 17px; background: rgba(255,255,255,.82); box-shadow: 0 14px 40px rgba(15,24,35,.07); }
.hero-search > span { color: var(--al-muted); }
.hero-search input { flex: 1; min-width: 0; border: 0; background: transparent; color: var(--al-ink); outline: none; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 31px; color: #58626e; font-size: 12px; }
.trust-line span { display: inline-flex; gap: 7px; align-items: center; }
.hero__visual { position: relative; min-height: 520px; }
.hero-orbit { position: absolute; border: 1px solid rgba(181,139,86,.28); border-radius: 999px; transform: rotate(-14deg); }
.hero-orbit--one { width: 470px; height: 470px; right: -80px; top: 22px; }
.hero-orbit--two { width: 330px; height: 330px; left: 36px; top: 80px; border-color: rgba(15,24,35,.10); transform: rotate(28deg); }
.hero-card { position: absolute; background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.9); box-shadow: 0 30px 90px rgba(15,24,35,.16); backdrop-filter: blur(18px); }
.hero-card--main { width: min(390px, 82%); min-height: 360px; top: 58px; right: 42px; padding: 34px; border-radius: 31px; transform: rotate(2deg); }
.hero-card--main::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(18,24,32,.07); border-radius: 24px; pointer-events: none; }
.hero-card__eyebrow { display: block; color: var(--al-accent-deep); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-card--main > strong { display: block; margin-top: 18px; font-size: 31px; line-height: 1.08; letter-spacing: -.045em; }
.hero-card__metric { display: flex; align-items: baseline; gap: 10px; margin-top: 54px; }
.hero-card__metric span { font-size: 62px; font-weight: 780; line-height: 1; letter-spacing: -.06em; }
.hero-card__metric small { max-width: 80px; color: var(--al-muted); line-height: 1.2; }
.hero-card__lines { display: grid; gap: 8px; margin-top: 30px; }
.hero-card__lines i { display: block; height: 8px; border-radius: 999px; background: #e4e0d7; }
.hero-card__lines i:nth-child(1) { width: 84%; }
.hero-card__lines i:nth-child(2) { width: 64%; }
.hero-card__lines i:nth-child(3) { width: 76%; background: rgba(181,139,86,.38); }
.hero-card--small { left: 0; top: 115px; width: 150px; padding: 18px; border-radius: 18px; transform: rotate(-7deg); }
.hero-card--small span, .hero-card--small strong { display: block; }
.hero-card--small span { color: var(--al-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .11em; }
.hero-card--small strong { margin-top: 3px; font-size: 15px; }
.hero-card--bottom { top: auto; left: 48px; bottom: 28px; transform: rotate(5deg); }

.section { padding: clamp(72px, 8vw, 112px) 0; }
.section--tight { padding: 46px 0; }
.section--soft { background: #efebe3; }
.section--categories { border-top: 1px solid var(--al-line); }
.section-heading { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 32px; }
.section-heading h2 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.04; letter-spacing: -.045em; }
.section-heading__note { color: var(--al-muted); font-size: 13px; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.category-card { position: relative; min-height: 184px; padding: 24px; border: 1px solid var(--al-line); border-radius: var(--al-radius); background: rgba(255,255,255,.52); overflow: hidden; transition: .22s ease; }
.category-card:hover { transform: translateY(-4px); background: #fff; border-color: #c8c3b9; box-shadow: var(--al-shadow); }
.category-card__index { display: block; color: #9a9489; font-size: 11px; letter-spacing: .12em; }
.category-card strong { display: block; max-width: 200px; margin-top: 45px; font-size: 21px; line-height: 1.15; letter-spacing: -.025em; }
.category-card small { display: block; margin-top: 7px; color: var(--al-muted); }
.category-card__arrow { position: absolute; right: 22px; bottom: 22px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--al-surface-soft); transition: .2s ease; }
.category-card:hover .category-card__arrow { background: var(--al-dark); color: #fff; transform: rotate(-8deg); }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.product-card { min-width: 0; border: 1px solid var(--al-line); border-radius: 22px; background: #fff; overflow: hidden; transition: .22s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--al-shadow-hover); border-color: #cac4ba; }
.product-card__media { position: relative; display: block; aspect-ratio: 4 / 3; background: #efede7; overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .32s ease; }
.product-card:hover .product-card__media img { transform: scale(1.025); }
.product-card__badge { position: absolute; left: 14px; top: 14px; max-width: calc(100% - 28px); padding: 7px 10px; border-radius: 9px; background: var(--al-dark); color: #fff; font-size: 10px; font-weight: 760; letter-spacing: .03em; }
.product-card__body { padding: 20px; }
.product-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--al-muted); font-size: 11px; }
.product-card h3 { margin: 11px 0 8px; font-size: 20px; line-height: 1.18; letter-spacing: -.025em; }
.product-card h3 a:hover { color: var(--al-accent-deep); }
.product-card p { margin: 0; min-height: 48px; color: #5f6974; font-size: 13px; line-height: 1.45; }
.product-card__footer { display: flex; justify-content: space-between; align-items: end; gap: 10px; margin-top: 20px; padding-top: 17px; border-top: 1px solid #ebe8e1; }
.product-card__price { display: grid; }
.product-card__price small { color: var(--al-muted); font-size: 10px; }
.product-card__price strong { font-size: 18px; line-height: 1.2; }
.score { display: inline-flex; align-items: center; gap: 6px; color: var(--al-dark); }
.score .icon { color: var(--al-accent-deep); }
.score strong { font-size: 20px; }
.score span { color: var(--al-muted); font-size: 11px; }
.score--compact { gap: 4px; }
.score--compact strong { font-size: 13px; }
.compare-button { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--al-line); background: #faf9f6; color: #4e5864; border-radius: 10px; padding: 8px 9px; font-size: 11px; cursor: pointer; }
.compare-button.is-active { background: var(--al-dark); color: #fff; border-color: var(--al-dark); }
.compare-button--wide { width: 100%; justify-content: center; margin-top: 10px; min-height: 43px; font-size: 13px; }

.empty-state { padding: 38px; border: 1px dashed #cfc9be; border-radius: var(--al-radius); background: rgba(255,255,255,.48); text-align: center; }
.empty-state h2, .empty-state h3 { margin: 0 auto 10px; max-width: 700px; letter-spacing: -.03em; }
.empty-state p { max-width: 700px; margin: 0 auto 18px; color: var(--al-muted); }
.empty-state--premium { padding: clamp(50px, 7vw, 90px); background: linear-gradient(135deg, #fff, #efebe3); border-style: solid; }

.section--editorial { background: var(--al-dark); color: #fff; }
.section--editorial .eyebrow { color: #d5af7d; }
.section--editorial .text-link { color: #f4efe7; }
.editorial-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.14); }
.editorial-column { min-height: 420px; padding: 34px 34px 30px 0; border-right: 1px solid rgba(255,255,255,.14); }
.editorial-column + .editorial-column { padding-left: 34px; }
.editorial-column:last-child { border-right: 0; }
.editorial-column__number { display: block; color: #d2a66f; font-size: 12px; letter-spacing: .15em; }
.editorial-column h3 { margin: 56px 0 12px; font-size: 33px; letter-spacing: -.035em; }
.editorial-column > p { color: #aeb8c4; min-height: 76px; }
.editorial-list { list-style: none; padding: 0; margin: 28px 0; border-top: 1px solid rgba(255,255,255,.1); }
.editorial-list li { border-bottom: 1px solid rgba(255,255,255,.1); }
.editorial-list a { display: block; padding: 12px 0; font-size: 13px; color: #dde3e9; }
.editorial-column__muted { margin: 28px 0; font-size: 13px; color: #8f9aa6 !important; }
.section--method { background: #ded7ca; }
.method-card { padding: clamp(36px, 5vw, 64px); border-radius: 30px; background: var(--al-dark); color: #fff; }
.method-card > div:first-child { display: grid; grid-template-columns: .65fr 1.35fr; gap: 60px; align-items: start; }
.method-card h2 { margin: 0; max-width: 820px; font-size: clamp(34px, 4.4vw, 57px); line-height: 1.04; letter-spacing: -.048em; }
.method-card .eyebrow { color: #d5af7d; }
.method-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin: 54px 0 34px; border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.method-steps > div { padding: 28px 28px 28px 0; }
.method-steps > div + div { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.15); }
.method-steps span { color: #d2a66f; font-size: 11px; letter-spacing: .13em; }
.method-steps strong { display: block; margin-top: 28px; font-size: 18px; }
.method-steps p { margin: 7px 0 0; color: #9eabb8; font-size: 13px; }

.page-hero { padding: 56px 0 62px; border-bottom: 1px solid var(--al-line); background: radial-gradient(circle at 92% 20%, rgba(181,139,86,.12), transparent 30%); }
.page-hero--compact h1 { max-width: 980px; margin: 18px 0 0; font-size: clamp(46px, 6vw, 74px); line-height: 1.02; letter-spacing: -.06em; }
.page-hero__lead { max-width: 760px; margin: 20px 0 0; color: var(--al-muted); font-size: 19px; }
.page-hero--catalog { padding-bottom: 48px; }
.page-hero--catalog h1 { margin: 18px 0 0; font-size: clamp(50px, 6vw, 78px); letter-spacing: -.06em; line-height: 1; }
.breadcrumbs { margin-bottom: 32px; }
.breadcrumbs ol { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; color: #7c858e; font-size: 11px; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: #aaa49b; }
.breadcrumbs a:hover { color: var(--al-ink); }
.term-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.term-chips a { display: inline-flex; gap: 8px; align-items: center; padding: 8px 11px; border: 1px solid var(--al-line); border-radius: 999px; background: rgba(255,255,255,.52); font-size: 12px; }
.term-chips a:hover { background: #fff; }
.term-chips span { display: grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: #ece8df; font-size: 10px; }
.catalog-toolbar { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 26px; color: var(--al-muted); font-size: 13px; }
.catalog-toolbar p { margin: 0; }
.catalog-toolbar strong { color: var(--al-ink); }

.product-hero { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); gap: 58px; align-items: center; padding: 20px 0 60px; }
.product-hero__media { position: relative; overflow: hidden; border-radius: 28px; background: #ece9e2; min-height: 480px; }
.product-hero__media img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.product-hero__badge { position: absolute; left: 20px; top: 20px; padding: 8px 11px; background: var(--al-dark); color: #fff; border-radius: 10px; font-size: 11px; font-weight: 750; }
.product-hero__content h1 { margin: 0; font-size: clamp(39px, 5vw, 66px); line-height: 1.01; letter-spacing: -.055em; }
.product-hero__content h1 span { color: #8a9198; font-weight: 500; }
.product-hero__verdict { margin: 23px 0; color: #505b66; font-size: 18px; line-height: 1.55; }
.product-hero__rating-row { display: flex; align-items: center; gap: 25px; margin: 22px 0; }
.product-hero__updated { display: grid; padding-left: 25px; border-left: 1px solid var(--al-line); }
.product-hero__updated span { color: var(--al-muted); font-size: 10px; }
.product-hero__updated strong { font-size: 12px; }
.product-price-box { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 18px; border: 1px solid var(--al-line); border-radius: 17px; background: #fff; }
.product-price-box > div { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.product-price-box small { width: 100%; color: var(--al-muted); font-size: 10px; }
.product-price-box strong { font-size: 27px; line-height: 1; }
.product-price-box del { color: #9a9fa5; font-size: 12px; }
.price-check { display: flex; align-items: center; gap: 6px; margin: 10px 0; color: var(--al-muted); font-size: 11px; }
.affiliate-note { color: var(--al-muted); font-size: 10.5px; line-height: 1.45; }

.aio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.aio-card { padding: 28px; border-radius: var(--al-radius); background: #fff; border: 1px solid var(--al-line); }
.aio-card--answer { background: #e8e2d7; border-color: #d3cabd; }
.aio-card > p:last-child { margin: 0; font-size: 18px; line-height: 1.6; }
.aio-card ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.aio-card li { display: flex; gap: 9px; align-items: flex-start; }
.aio-card li .icon { margin-top: 4px; color: var(--al-positive); flex: 0 0 auto; }
.pros-cons { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.pros-cons__box { padding: 30px; border: 1px solid var(--al-line); border-radius: var(--al-radius); background: #fff; }
.pros-cons__box h2 { margin: 0 0 22px; font-size: 31px; letter-spacing: -.04em; }
.pros-cons__box ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.pros-cons__box li { display: flex; align-items: flex-start; gap: 10px; }
.pros-cons__box li .icon { margin-top: 4px; flex: 0 0 auto; }
.pros-cons__box--pros .icon { color: var(--al-positive); }
.pros-cons__box--cons .icon { color: var(--al-negative); }

.content-layout { display: grid; grid-template-columns: minmax(0,1fr) 260px; gap: 60px; align-items: start; }
.content-layout--editorial { padding-top: 60px; padding-bottom: 80px; }
.article-content { min-width: 0; }
.entry-content { font-size: 18px; line-height: 1.78; color: #303a44; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2 { margin: 2.2em 0 .65em; color: var(--al-ink); font-size: 34px; line-height: 1.15; letter-spacing: -.035em; }
.entry-content h3 { margin: 1.8em 0 .6em; color: var(--al-ink); font-size: 25px; line-height: 1.2; letter-spacing: -.025em; }
.entry-content a { color: #795a34; text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote { margin: 30px 0; padding: 22px 26px; border-left: 3px solid var(--al-accent); background: #efeae1; border-radius: 0 14px 14px 0; }
.entry-content table { width: 100%; border-collapse: collapse; font-size: 14px; }
.entry-content th, .entry-content td { padding: 12px 14px; border: 1px solid var(--al-line); text-align: left; }
.entry-content th { background: #eeeae2; }
.article-aside { position: sticky; top: 104px; }
.aside-card { display: grid; gap: 10px; padding: 20px; border: 1px solid var(--al-line); border-radius: 16px; background: rgba(255,255,255,.65); font-size: 12px; }
.aside-card strong { margin-bottom: 4px; font-size: 13px; }
.aside-card a { color: var(--al-accent-deep); font-weight: 700; }
.article-aside .affiliate-note { margin-top: 12px; padding: 0 6px; }

.spec-groups { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.spec-group { overflow: hidden; border: 1px solid #d5d0c7; border-radius: var(--al-radius); background: rgba(255,255,255,.72); }
.spec-group h3 { margin: 0; padding: 20px; border-bottom: 1px solid #ddd8cf; font-size: 16px; }
.spec-group dl { margin: 0; }
.spec-group dl > div { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 12px 20px; border-bottom: 1px solid #e5e1d9; font-size: 13px; }
.spec-group dl > div:last-child { border-bottom: 0; }
.spec-group dt { color: var(--al-muted); }
.spec-group dd { margin: 0; font-weight: 650; text-align: right; }
.offers-table { border: 1px solid var(--al-line); border-radius: var(--al-radius); background: #fff; overflow: hidden; }
.offers-table__head, .offers-table__row { display: grid; grid-template-columns: 1.1fr .8fr .9fr .8fr auto; gap: 15px; align-items: center; padding: 14px 18px; }
.offers-table__head { background: #ece8df; color: var(--al-muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.offers-table__row { border-top: 1px solid #ebe7df; font-size: 13px; }
.offers-table__price { font-size: 17px; font-weight: 780; }
.offers-footnote { margin: 12px 4px 0; color: var(--al-muted); font-size: 11px; }
.sources-card { margin-top: 34px; padding: 28px; border: 1px solid var(--al-line); border-radius: var(--al-radius); background: #fff; }
.sources-card h2 { margin: 0 0 18px; font-size: 28px; letter-spacing: -.035em; }
.sources-card ol { margin: 0; padding-left: 20px; color: #4f5964; font-size: 13px; }
.sources-card a { color: var(--al-accent-deep); text-decoration: underline; }
.author-card { display: flex; gap: 22px; align-items: center; }
.author-card__avatar img { border-radius: 50%; }
.author-card h2 { margin: 0 0 5px; font-size: 27px; letter-spacing: -.03em; }
.author-card p:not(.eyebrow) { max-width: 760px; margin: 0; color: var(--al-muted); }
.author-card span { display: block; margin-top: 9px; color: #7b848d; font-size: 11px; }

.editorial-hero { padding: 54px 0 60px; border-bottom: 1px solid var(--al-line); }
.editorial-hero__grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr); gap: 56px; align-items: center; }
.editorial-hero h1 { margin: 0; font-size: clamp(48px, 6vw, 78px); line-height: 1.01; letter-spacing: -.06em; }
.editorial-hero__lead { max-width: 760px; margin: 20px 0; color: var(--al-muted); font-size: 19px; }
.editorial-hero__meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; color: #7b858f; font-size: 11px; }
.editorial-hero__media { overflow: hidden; aspect-ratio: 4/3; border-radius: 24px; background: #ebe8e1; }
.editorial-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.editorial-aio { margin-bottom: 18px; }

.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.article-card { overflow: hidden; border: 1px solid var(--al-line); border-radius: var(--al-radius); background: #fff; }
.article-card__media { display: block; aspect-ratio: 16/10; background: #ebe8e1; overflow: hidden; }
.article-card__media:empty { display: none; }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.article-card:hover .article-card__media img { transform: scale(1.025); }
.article-card__body { padding: 24px; }
.article-card__date { color: #8b8174; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.article-card h2 { margin: 12px 0 10px; font-size: 24px; line-height: 1.15; letter-spacing: -.03em; }
.article-card p { color: var(--al-muted); font-size: 13px; }
.pagination-wrap { margin-top: 36px; }
.nav-links { display: flex; gap: 7px; flex-wrap: wrap; }
.page-numbers { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 10px; border: 1px solid var(--al-line); border-radius: 10px; background: #fff; }
.page-numbers.current { background: var(--al-dark); color: #fff; border-color: var(--al-dark); }

.compare-products-head { display: grid; grid-template-columns: 220px repeat(4,minmax(170px,1fr)); align-items: stretch; overflow-x: auto; border: 1px solid var(--al-line); border-radius: 18px 18px 0 0; background: #fff; }
.compare-products-head__empty { padding: 22px; color: var(--al-muted); font-size: 12px; }
.compare-products-head__product { min-width: 170px; padding: 18px; border-left: 1px solid var(--al-line); }
.compare-products-head__product img { width: 74px; height: 60px; object-fit: cover; border-radius: 10px; margin-bottom: 12px; }
.compare-products-head__product strong, .compare-products-head__product span { display: block; }
.compare-products-head__product strong { line-height: 1.25; }
.compare-products-head__product span { margin-top: 5px; color: var(--al-muted); font-size: 12px; }
.dynamic-compare { border: 1px solid var(--al-line); border-top: 0; border-radius: 0 0 18px 18px; overflow-x: auto; background: #fff; }
.dynamic-compare__group { min-width: 900px; }
.dynamic-compare__group h2 { margin: 0; padding: 14px 20px; background: #ece8df; font-size: 14px; }
.dynamic-compare__row { display: grid; grid-template-columns: 220px repeat(4,minmax(170px,1fr)); border-top: 1px solid #ebe7df; }
.dynamic-compare__row > * { padding: 12px 18px; border-left: 1px solid #ebe7df; font-size: 12px; }
.dynamic-compare__row > *:first-child { border-left: 0; }
.dynamic-compare__row strong { color: var(--al-muted); }
.compare-summary-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 12px; margin-top: 22px; }
.compare-summary-grid article { padding: 22px; border: 1px solid var(--al-line); border-radius: 16px; background: #fff; }
.compare-summary-grid h3 { margin: 0 0 8px; }
.compare-summary-grid p:not(.eyebrow) { color: var(--al-muted); font-size: 13px; }

.not-found { min-height: 70vh; display: grid; place-items: center; padding: 80px 0; text-align: center; }
.not-found__code { display: block; font-size: clamp(110px, 20vw, 250px); line-height: .8; color: #ded8cd; font-weight: 800; letter-spacing: -.08em; }
.not-found h1 { max-width: 760px; margin: 20px auto 12px; font-size: clamp(38px,5vw,66px); line-height: 1.05; letter-spacing: -.05em; }
.not-found p { color: var(--al-muted); }
.not-found__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.compare-tray { position: fixed; left: 50%; bottom: 20px; z-index: 2000; transform: translateX(-50%); width: min(calc(100% - 28px), 620px); display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 11px 12px 11px 17px; border: 1px solid rgba(255,255,255,.18); border-radius: 17px; background: rgba(13,23,36,.94); color: #fff; box-shadow: 0 24px 70px rgba(0,0,0,.28); backdrop-filter: blur(16px); }
.compare-tray > div:first-child { display: flex; align-items: baseline; gap: 6px; }
.compare-tray strong { font-size: 20px; }
.compare-tray span { color: #acb6c0; font-size: 11px; }
.compare-tray__actions { display: flex; align-items: center; gap: 6px; }
.compare-tray .text-button { color: #aeb8c2; }

.site-footer { padding: 70px 0 26px; background: #09121d; color: #e6ebf0; }
.site-footer__top { display: grid; grid-template-columns: .9fr 1.4fr; gap: 80px; }
.brand--footer .brand__mark { background: #d2a66f; color: #101722; }
.brand--footer .brand__text small { color: #8896a4; }
.site-footer__brand > p { max-width: 430px; margin-top: 22px; color: #8e9ba8; font-size: 13px; }
.footer-columns { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer-columns h3 { margin: 0 0 18px; color: #fff; font-size: 13px; }
.footer-columns a { display: block; margin: 8px 0; color: #93a0ad; font-size: 12px; }
.footer-columns a:hover { color: #fff; }
.site-footer__widgets { margin-top: 38px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #6f7d8b; font-size: 10.5px; }
.site-footer__bottom p { margin: 0; }
.site-footer__disclosure { max-width: 520px; text-align: right; }

.comments-area { max-width: 820px; margin: 60px auto; }
.comment-list { padding-left: 20px; }

@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr .78fr; gap: 36px; }
  .hero__visual { min-height: 450px; }
  .hero-card--main { right: 0; }
  .category-grid, .product-grid { grid-template-columns: repeat(2,1fr); }
  .article-grid { grid-template-columns: repeat(2,1fr); }
  .primary-nav__list { gap: 18px; }
  .primary-nav__list a { font-size: 13px; }
  .offers-table__head, .offers-table__row { grid-template-columns: 1fr .7fr .8fr auto; }
  .offers-table__head > :nth-child(4), .offers-table__row > :nth-child(4) { display: none; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 28px), var(--al-container)); }
  .site-header__inner { min-height: 68px; }
  .primary-nav { position: fixed; top: 68px; left: 0; right: 0; bottom: 0; display: none; padding: 26px 20px; background: rgba(247,245,240,.98); overflow-y: auto; }
  body.menu-open .primary-nav { display: block; }
  .primary-nav__list { display: grid; align-content: start; gap: 0; }
  .primary-nav__list > li { border-bottom: 1px solid var(--al-line); }
  .primary-nav__list a { display: block; padding: 16px 4px; font-size: 18px; }
  .primary-nav__list > li > a::after { display: none; }
  .primary-nav__list .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; border: 0; margin: 0; padding: 0 0 10px 14px; }
  .primary-nav__list .sub-menu a { font-size: 14px; padding: 8px 4px; }
  .mobile-menu-button { display: grid; }
  .hero { padding-top: 68px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { position: relative; z-index: 2; }
  .hero__visual { min-height: 430px; max-width: 560px; width: 100%; margin: 0 auto; }
  .section { padding: 72px 0; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-column, .editorial-column + .editorial-column { min-height: auto; padding: 30px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .editorial-column h3 { margin-top: 26px; }
  .editorial-column > p { min-height: 0; }
  .method-card > div:first-child { grid-template-columns: 1fr; gap: 10px; }
  .method-steps { grid-template-columns: 1fr; }
  .method-steps > div, .method-steps > div + div { padding: 22px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .method-steps > div:last-child { border-bottom: 0; }
  .method-steps strong { margin-top: 14px; }
  .product-hero { grid-template-columns: 1fr; gap: 32px; }
  .product-hero__media, .product-hero__media img { min-height: 380px; }
  .content-layout { grid-template-columns: 1fr; gap: 30px; }
  .article-aside { position: static; order: -1; }
  .aside-card { display: flex; flex-wrap: wrap; gap: 10px 16px; }
  .spec-groups { grid-template-columns: 1fr; }
  .editorial-hero__grid { grid-template-columns: 1fr; }
  .editorial-hero__media { max-width: 650px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 620px) {
  .brand__text small { display: none; }
  .brand__mark { width: 38px; height: 38px; border-radius: 12px; }
  .hero { padding: 52px 0 70px; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero__lead { font-size: 17px; }
  .hero-search { display: grid; grid-template-columns: auto 1fr; padding: 12px; }
  .hero-search .button { grid-column: 1 / -1; width: 100%; }
  .hero__visual { min-height: 370px; }
  .hero-card--main { width: 85%; min-height: 300px; padding: 26px; right: 0; top: 38px; }
  .hero-card--main > strong { font-size: 25px; }
  .hero-card__metric { margin-top: 36px; }
  .hero-card__metric span { font-size: 48px; }
  .hero-card--small { width: 128px; left: 4px; top: 90px; }
  .hero-card--bottom { top: auto; bottom: 0; left: 40px; }
  .hero-orbit--one { width: 360px; height: 360px; right: -90px; }
  .category-grid, .product-grid, .article-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 150px; }
  .category-card strong { margin-top: 28px; }
  .section-heading { align-items: start; flex-direction: column; }
  .aio-grid, .pros-cons { grid-template-columns: 1fr; }
  .product-price-box { align-items: stretch; flex-direction: column; }
  .product-price-box .button { width: 100%; }
  .product-hero__rating-row { gap: 16px; }
  .product-hero__updated { padding-left: 16px; }
  .offers-table { background: transparent; border: 0; overflow: visible; }
  .offers-table__head { display: none; }
  .offers-table__row { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; margin-bottom: 10px; padding: 16px; border: 1px solid var(--al-line); border-radius: 15px; background: #fff; }
  .offers-table__row > * { display: block !important; }
  .offers-table__row > strong { grid-column: 1; }
  .offers-table__price { grid-column: 2; grid-row: 1; text-align: right; }
  .offers-table__row > span:nth-child(3) { grid-column: 1 / -1; color: var(--al-muted); font-size: 11px; }
  .offers-table__row > span:nth-child(4) { grid-column: 1 / -1; color: var(--al-muted); font-size: 10px; }
  .offers-table__row .button { grid-column: 1 / -1; width: 100%; }
  .spec-group dl > div { grid-template-columns: 1fr; gap: 3px; }
  .spec-group dd { text-align: left; }
  .entry-content { font-size: 16px; }
  .entry-content h2 { font-size: 29px; }
  .page-hero--compact h1, .page-hero--catalog h1, .editorial-hero h1 { font-size: clamp(39px, 12vw, 56px); }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .site-footer__bottom { flex-direction: column; }
  .site-footer__disclosure { text-align: left; }
  .compare-tray { bottom: 10px; align-items: stretch; }
  .compare-tray > div:first-child { display: grid; }
  .compare-tray__actions { gap: 2px; }
  .compare-tray .text-button { font-size: 11px; }
  .compare-tray .button { font-size: 11px; padding-inline: 10px; }
  .search-panel__dialog { margin-top: 5vh; }
  .search-panel .search-form { display: grid; }
  .search-panel .search-submit { min-height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* Tovarny Guid 1.2: moderation and ad-marking refinements */
.method-card--light { background: #fff; color: var(--al-dark); border: 1px solid var(--al-line); }
.method-card--light .eyebrow { color: var(--al-accent-deep); }
.method-card--light .method-steps > div + div { border-left-color: var(--al-line); }
.method-card--light .method-steps span { color: var(--al-accent-deep); }
.method-card--light .method-steps p { color: var(--al-muted); }
.offers-table__shop { min-width: 0; }
.offers-table__shop strong { display: block; }
.offer-ad-label { display: block; margin-top: 5px; color: #7a6450; font-size: 9px; line-height: 1.4; letter-spacing: .015em; overflow-wrap: anywhere; }
.site-footer__seller-note { max-width: 650px; }
.site-footer__bottom { flex-wrap: wrap; }
.site-footer__bottom > p { flex: 1 1 260px; }
.site-footer__disclosure { max-width: none; text-align: left; }

@media (max-width: 620px) {
  .offers-table__shop { grid-column: 1; grid-row: 1; }
  .offers-table__row > .offers-table__shop { display: block !important; }
  .offer-ad-label { max-width: 250px; }
  .method-card--light .method-steps > div + div { border-left: 0; border-bottom-color: var(--al-line); }
}
