    :root {
      --ink: #070707;
      --paper: #f7f5f0;
      --white: #fff;
      --muted: #66615b;
      --line: #d9d5ce;
      --red: #e22b1a;
      --gold: #b78a35;
      --container: 100vw;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      overflow-x: hidden;
      color: var(--ink);
      background: var(--paper);
      font-family: "Manrope", Arial, sans-serif;
      line-height: 1.35;
    }
    img { display: block; width: 100%; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }

    .topbar {
      min-height: 28px;
      display: grid;
      place-items: center;
      background: var(--ink);
      color: var(--white);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(14px);
    }

    .header-inner {
      width: min(1320px, calc(100vw - 72px));
      min-height: 62px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 20px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }
    .nav.right { justify-content: flex-end; }
    .nav a { white-space: nowrap; transition: color 0.2s ease; }
    .nav a:hover,
    .nav a[aria-current="page"] { color: var(--red); }

    .brand {
      display: grid;
      justify-items: center;
      line-height: 1;
      font-weight: 900;
      text-transform: uppercase;
    }
    .brand strong { font-size: 20px; font-weight: 900; }
    .brand span { margin-top: 5px; color: var(--gold); font-size: 10px; font-weight: 800; }

    .icon-btn {
      width: 42px;
      height: 42px;
      display: inline-grid;
      place-items: center;
      border: 1px solid transparent;
      background: transparent;
      color: var(--ink);
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }
    .icon-btn:hover {
      border-color: var(--ink);
      background: var(--red);
      color: var(--white);
      transform: translate(-2px, -2px);
      box-shadow: 4px 4px 0 var(--ink);
    }

    h1, h2, h3, p { margin: 0; }
    h1, h2, h3 {
      line-height: 0.94;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }
    h1 { max-width: 820px; font-size: clamp(42px, 5vw, 78px); }
    h2 { font-size: clamp(34px, 4.4vw, 68px); }
    h3 { font-size: clamp(22px, 2vw, 32px); }

    .eyebrow {
      color: var(--red);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }
    .lead {
      max-width: 660px;
      color: var(--muted);
      font-size: clamp(16px, 1.2vw, 20px);
      font-weight: 800;
    }

    .btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid var(--ink);
      padding: 0 18px;
      background: var(--ink);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      cursor: pointer;
      box-shadow: inset 0 0 0 0 var(--red), 0 0 0 rgba(0,0,0,0);
      transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.24s ease, border-color 0.2s ease;
    }
    .btn:hover {
      transform: translate(-3px, -3px);
      background: var(--ink);
      border-color: var(--ink);
      box-shadow: inset 0 -54px 0 var(--red), 6px 6px 0 var(--ink);
    }
    .btn svg { transition: transform 0.22s ease; }
    .btn:hover svg { transform: translateX(5px); }
    .btn.light {
      border-color: var(--white);
      background: var(--white);
      color: var(--ink);
      box-shadow: 0 0 0 var(--red);
    }
    .btn.light:hover {
      border-color: var(--white);
      background: var(--white);
      color: var(--ink);
      box-shadow: 6px 6px 0 var(--red);
    }

    .blog-main { background: var(--paper); }

    .blog-hero {
      width: var(--container);
      height: clamp(420px, 52svh, 540px);
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      border-bottom: 1px solid var(--ink);
      background: var(--ink);
      color: var(--white);
      overflow: hidden;
    }
    .blog-hero-copy {
      display: grid;
      align-content: center;
      justify-items: start;
      gap: 16px;
      padding: clamp(38px, 5vw, 72px) max(32px, 4vw);
    }
    .blog-hero-copy .lead { color: #d8d3cb; }
    .blog-hero-media {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(230px, 0.52fr);
      gap: 1px;
      min-height: 0;
      background: var(--ink);
    }
    .blog-hero-media img { height: 100%; object-fit: cover; filter: saturate(1.04) contrast(1.05); }
    .hero-stack { display: grid; gap: 1px; background: var(--ink); }

    .category-tabs {
      width: var(--container);
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1px;
      border-bottom: 1px solid var(--ink);
      background: var(--ink);
    }
    .category-tabs a {
      min-height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px max(14px, 2vw);
      background: var(--white);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .category-tabs a:hover,
    .category-tabs a.active {
      background: var(--red);
      color: var(--white);
    }

    .section-head {
      width: min(1320px, calc(100vw - 72px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
      gap: 28px;
      align-items: end;
      padding: 64px 0 28px;
    }

    .blog-layout {
      width: min(1320px, calc(100vw - 72px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
      gap: 1px;
      border: 1px solid var(--ink);
      background: var(--ink);
    }

    .article-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1px;
      background: var(--ink);
    }
    .article-card {
      min-height: 0;
      display: grid;
      grid-template-rows: auto 1fr auto;
      background: var(--white);
      overflow: hidden;
    }
    .article-card img {
      aspect-ratio: 3 / 2;
      height: auto;
      object-fit: cover;
      transition: transform 0.35s ease, filter 0.22s ease;
    }
    .article-card:hover img {
      transform: scale(1.06);
      filter: saturate(1.08) contrast(1.06);
    }
    .article-copy {
      display: grid;
      align-content: start;
      gap: 10px;
      padding: 18px;
    }
    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      color: var(--red);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }
    .article-meta .article-views {
      margin-left: auto;
      display: inline-flex;
      gap: 4px;
      color: var(--red);
      white-space: nowrap;
    }
    .article-meta .article-views b {
      color: var(--ink);
      font-weight: 950;
    }
    .article-card p {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.45;
    }
    .article-footer {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
      padding: 14px 18px 18px;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }
    .article-footer a {
      min-height: 36px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--ink);
      padding: 0 12px;
      background: var(--ink);
      color: var(--white);
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }
    .article-footer a:hover {
      background: var(--red);
      border-color: var(--red);
      transform: translate(-2px, -2px);
      box-shadow: 4px 4px 0 var(--ink);
    }
    .blog-pagination {
      grid-column: 1 / -1;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 20px;
      background: var(--paper);
      border-top: 1px solid var(--ink);
    }
    .blog-pagination a,
    .blog-pagination span {
      min-width: 38px;
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--ink);
      background: var(--white);
      color: var(--ink);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }
    .blog-pagination a:hover,
    .blog-pagination .active {
      background: var(--red);
      color: var(--white);
      transform: translateY(-2px);
    }
    .blog-pagination .next {
      padding: 0 14px;
    }

    .blog-sidebar {
      display: grid;
      align-content: start;
      gap: 1px;
      background: var(--ink);
    }
    .sidebar-panel {
      display: grid;
      gap: 14px;
      padding: 24px 22px;
      background: var(--paper);
    }
    .sidebar-panel h3 { font-size: 24px; }
    .search-form {
      display: grid;
      grid-template-columns: 1fr 44px;
      border: 1px solid var(--ink);
      background: var(--white);
    }
    .search-form input {
      min-height: 44px;
      border: 0;
      padding: 0 12px;
      background: transparent;
      color: var(--ink);
      font-weight: 800;
      min-width: 0;
    }
    .search-form button {
      border: 0;
      border-left: 1px solid var(--ink);
      background: var(--ink);
      color: var(--white);
      cursor: pointer;
    }
    .popular-list {
      display: grid;
      gap: 1px;
      border: 1px solid var(--ink);
      background: var(--ink);
    }
    .popular-list a {
      min-height: 74px;
      display: grid;
      grid-template-columns: 34px 1fr;
      align-items: center;
      gap: 12px;
      padding: 12px;
      background: var(--white);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .popular-list a:hover {
      background: var(--ink);
      color: var(--white);
    }
    .popular-list span {
      color: var(--red);
      font-size: 18px;
      font-weight: 900;
    }

    .footer {
      margin-top: 0;
      padding: 48px max(28px, 4vw) 24px;
      background: var(--ink);
      color: var(--white);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(4, 1fr);
      gap: 28px;
      padding-bottom: 42px;
      border-bottom: 1px solid rgba(255,255,255,0.14);
    }
    .footer h4 { margin: 0 0 14px; font-size: 12px; font-weight: 900; text-transform: uppercase; }
    .footer a { display: block; margin-top: 8px; color: #d8d3cb; font-size: 13px; font-weight: 800; }
    .footer a:hover { color: var(--white); }
    .footer-grid > div:first-child h4 { font-size: 30px; line-height: 0.95; }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding-top: 22px;
      color: #b8b2aa;
      font-size: 12px;
      font-weight: 800;
    }

    @media (max-width: 1120px) {
      .blog-hero,
      .blog-layout {
        grid-template-columns: 1fr;
      }
      .blog-hero-media { min-height: 420px; }
      .category-tabs { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 760px) {
      .topbar { padding: 0 12px; text-align: center; }
      .header-inner {
        width: calc(100vw - 24px);
        grid-template-columns: 1fr auto;
      }
      .nav { display: none; }
      .brand { justify-items: start; }
      .blog-hero { height: auto; }
      .blog-hero-copy { padding: 46px 12px 54px; }
      .blog-hero-copy h1 { max-width: 340px; font-size: 38px; }
      .blog-hero-copy .lead { max-width: 340px; font-size: 16px; }
      .blog-hero-media { display: block; min-height: 0; }
      .blog-hero-media > img { height: 360px; }
      .hero-stack { display: none; }
      .category-tabs,
      .section-head,
      .blog-layout {
        width: min(100%, calc(100vw - 24px));
      }
      .category-tabs,
      .article-grid {
        grid-template-columns: 1fr;
      }
      .section-head {
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: start;
        padding: 44px 0 22px;
      }
      .section-head h2 {
        max-width: 100%;
        font-size: clamp(30px, 8vw, 34px);
        line-height: 1;
      }
      .article-card { min-height: 0; grid-template-rows: 220px auto auto; }
      .article-card img { height: 220px; aspect-ratio: auto; }
      .article-card h3 {
        max-width: 100%;
        font-size: 22px;
        line-height: 1.02;
      }
      .sidebar-panel { padding: 24px 12px; }
      .footer { padding: 38px 12px 22px; }
      .footer-grid,
      .footer-bottom { display: grid; grid-template-columns: 1fr; }
    }
  
    .footer-brand-copy p {
      max-width: 270px;
      margin: 10px 0 0;
      color: #cfc9c0;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.55;
    }
    .footer-locale {
      display: grid;
      gap: 12px;
      margin-top: 20px;
    }
    .footer-locale-group {
      display: grid;
      gap: 8px;
    }
    .footer-locale-label {
      color: #8f887f;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }
    .footer-locale-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .footer-pill {
      min-height: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 0;
      padding: 6px 9px;
      background: transparent;
      color: #d8d3cb;
      font-size: 11px;
      font-weight: 900;
      line-height: 1;
      text-transform: uppercase;
      cursor: pointer;
    }
    .footer-pill:hover,
    .footer-pill.is-active {
      background: var(--white);
      color: var(--ink);
    }
    .footer-legal-line {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px 14px;
    }
    /* Cookie consent banner */
    .luneva-cookie-consent {
      position: fixed;
      left: max(12px, 2vw);
      right: max(12px, 2vw);
      bottom: 12px;
      z-index: 120;
      display: none;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 16px;
      border: 1px solid var(--ink, #070707);
      padding: 14px;
      background: var(--white, #fff);
      color: var(--ink, #070707);
      box-shadow: 6px 6px 0 var(--ink, #070707);
    }
    body.cookie-consent-visible .luneva-cookie-consent { display: grid; }
    .luneva-cookie-copy {
      display: grid;
      gap: 4px;
    }
    .luneva-cookie-copy strong {
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }
    .luneva-cookie-copy span,
    .luneva-cookie-copy a {
      color: var(--muted, #66615b);
      font-size: 12px;
      font-weight: 800;
    }
    .luneva-cookie-copy a {
      color: var(--ink, #070707);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .luneva-cookie-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px;
    }
    .luneva-cookie-btn,
    .luneva-cookie-link {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--ink, #070707);
      padding: 0 13px;
      background: var(--white, #fff);
      color: var(--ink, #070707);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      cursor: pointer;
    }
    .luneva-cookie-btn.primary {
      background: var(--ink, #070707);
      color: var(--white, #fff);
    }
    .luneva-cookie-btn:hover,
    .luneva-cookie-link:hover {
      background: var(--red, #e22b1a);
      color: var(--white, #fff);
    }
    @media (max-width: 760px) {
      .luneva-cookie-consent {
        grid-template-columns: 1fr;
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-height: calc(100svh - 24px);
        overflow: auto;
      }
      .luneva-cookie-actions {
        display: grid;
        grid-template-columns: 1fr;
      }
      .luneva-cookie-btn,
      .luneva-cookie-link { width: 100%; }
    }

/* ── Опис під заголовком, а не збоку ────────────────────────────────
   `.section-head` був сіткою у дві колонки: ліворуч надпис і заголовок,
   праворуч пояснювальний абзац. Через це заголовок ламався раніше, ніж
   треба, а текст праворуч висів окремим стовпчиком.

   Тепер одна колонка: опис іде під заголовком.

   Виняток — блоки, де праворуч не текст, а керування: стрілки гортання
   стрічки та посилання «уся категорія». Їх лишаємо в рядку із
   заголовком, інакше вони поїдуть під нього і ряд розсиплеться. */
.section-head {
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.section-head:has(.rail-arrows),
.section-head:has(> .text-link),
.section-head:has(> a),
.section-head.compact-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

/* Картки на сторінці блогу підстрибують так само, як на головній і як
   картки товарів — щоб поведінка по сайту була одна. Досі тут лише
   збільшувалось фото, і клікабельність картки читалась гірше. */
.article-card {
  position: relative;
  z-index: 0;
  border: 1px solid var(--line);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.article-card:hover {
  z-index: 1;
  transform: translate(-4px, -4px);
  border-color: var(--ink);
  box-shadow: 8px 8px 0 var(--red);
}

/* Опис тепер займає всю ширину рядка. Обмеження 520-610px лишились від
   тих часів, коли він стояв правою колонкою — у ній це був сенс, а під
   заголовком текст просто обривався на середині. */
.section-head > p,
.section-head .lead,
.section-head > div > p.lead {
  max-width: none;
}

/* Блоки з керуванням праворуч (стрілки, посилання) не чіпаємо: там
   ліва колонка вужча навмисно, щоб керування не притискалось. */
.section-head:has(.rail-arrows) > p,
.section-head:has(> .text-link) > p,
.section-head.compact-head > p {
  max-width: 100%;
}
