/* ════════════════════════════════════════════════════════
   Friga — main.css
   Generated from prototypes: smak24-home, category-archive, product-card
   ════════════════════════════════════════════════════════ */

/* ── 0. Custom Properties ──────────────────────────────── */
:root {
  --accent:       #C4785B;
  --accent-hover: #9B3D1A;
  --accent-light: #dcfce7;
  --accent-text:  #15803d;
  --choco-bg:#261b14;
  --red:          #dc2626;
  --red-light:    #fee2e2;
  --red-text:     #b91c1c;
  --bg:           #FAF6EF;
  --bg2:#F2E9D8;
  --surface:      #ffffff;
  --surface2:     #f3f2ef;
  --border:       #e5e4e0;
  --border2:      #d1d0cc;
  --text:         #1a1a18;
  --text2:        #6b6b67;
  --text3:        #9a9a96;
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    16px;
  --shadow:       0 1px 3px rgba(0,0,0,0.07), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-lg:    0 2px 8px rgba(0,0,0,0.08), 0 16px 48px rgba(0,0,0,0.10);
}

/* ── 1. Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ── 2. Container ──────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ── 3. Header ─────────────────────────────────────────── */
.site-header {
  background: var(--choco-bg);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .2s;
}
.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 62px;
}

/* Logo */
.logo {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-img { height: 78px; width: auto; object-fit: contain; }
.logo-text { font-family: 'Geologica', sans-serif; font-weight: 700; }

/* Search */
.search-wrap { flex: 1; margin: 0 auto; position: relative; }
.search-wrap form { display: flex; align-items: center; }
.search-wrap input[type="search"],
.search-wrap input[type="text"] {
  width: 100%; height: 40px;
  padding: 0 44px 0 16px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: var(--surface2);
  font-size: 14px; font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.search-wrap input:focus {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(22,163,74,.1);
}
.search-wrap input::placeholder { color: var(--text3); }
.search-btn {
  position: absolute; right: 0; top: 0;
  width: 40px; height: 40px;
  background: var(--accent); border: none;
  border-radius: 0 20px 20px 0;
  color: white;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.search-btn:hover { background: var(--accent-hover); }
.search-btn svg { width: 16px; height: 16px; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }

/* ── Nav dropdown (info button) ─────────────────────────── */
.h-nav-wrap { position: relative; }
.h-btn--nav { }
.h-nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 210;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 200px;
  padding: 6px 0;
  white-space: nowrap;
}
.h-nav-dropdown.is-open { display: block; }
.h-nav-list { list-style: none; margin: 0; padding: 0; }
.h-nav-list li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text2);
  transition: color .15s, background .15s;
}
.h-nav-list li a:hover { color: var(--accent); background: var(--surface2); }
.h-nav-list li.current-menu-item > a { color: var(--accent); font-weight: 600; }

/* Mobile catalog open button — hidden on desktop, shown via media query below */
.h-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 6px 12px; border-radius: var(--radius-sm);
  background: none; border: none; color: var(--bg);
  font-size: 10px; font-family: inherit; cursor: pointer;
  transition: color .15s, background .15s;
  position: relative;
}
.h-btn:hover { color: var(--text); background: var(--surface2); }
.h-btn svg    { width: 26px; height: 26px; }
.h-badge {
  position: absolute; top: 2px; right: 6px;
  background: var(--accent); color: white;
  font-size: 10px; font-weight: 700;
  min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

/* ── 4. Navbar ─────────────────────────────────────────── */


.btn-categories {
  display: flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 18px;
  background: var(--bg); color: var(--choco-bg);
  border: none; font-size: 13px; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase; flex-shrink: 0; cursor: pointer;
  border-radius: 10px;
  transition: background .15s;
}
.btn-categories:hover { background: var(--accent-hover); }
.btn-categories svg   { width: 16px; height: 16px; }

/* Nav links — WP menu renders ul>li>a */
.nav-links,
.nav-links ul {
  display: flex; align-items: center; list-style: none; margin: 0; padding: 0;
}
.nav-links li { position: relative; }
.nav-links li a,
.nav-links > a {
  display: flex; align-items: center; height: 46px; padding: 0 13px;
  font-size: 14px; color: var(--text2);
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s; white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li.current-menu-item > a,
.nav-links li.current-page-ancestor > a,
.nav-links li.current-menu-ancestor > a {
  color: var(--text);
}
.nav-links li.current-menu-item > a {
  color: var(--accent); border-bottom-color: var(--accent); font-weight: 600;
}

/* Language switcher */
.nav-lang { margin-left: auto; display: flex; gap: 2px; }
.lang-btn {
  padding: 3px 8px; border-radius: 4px; font-size: 12px; font-weight: 600;
  border: none; background: none; color: var(--text3); transition: all .15s; cursor: pointer;
}
.lang-btn:hover { color: var(--text); background: var(--surface2); }
.lang-btn.active { background: var(--surface2); color: var(--text); }

/* Categories dropdown */
#categories-menu {
  display: none;
  position: absolute; top: 108px; left: 0; right: 0; z-index: 180;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 24px 0;
}
#categories-menu.is-open { display: block; }
#categories-menu .container > ul {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; list-style: none;
}
#categories-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text2); transition: background .15s, color .15s;
}
#categories-menu a:hover { background: var(--surface2); color: var(--accent); }
#categories-menu .cat-icon-tiny {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}

/* Mobile menu */
/* ── Mobile menu — slide panel from left ────────────────── */
#mobile-menu {
  position: fixed; inset: 0; z-index: 300;
  pointer-events: none; visibility: hidden;
  transition: visibility 0s .3s;
}
#mobile-menu.is-open {
  pointer-events: auto; visibility: visible;
  transition: visibility 0s 0s;
}
body.menu-open { overflow: hidden; }

.mobile-menu__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0; transition: opacity .3s;
}
#mobile-menu.is-open .mobile-menu__overlay { opacity: 1; }

.mobile-menu__panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: min(320px, 100vw);
  background: var(--surface);
  display: flex; flex-direction: column;
  transform: translateX(-100%); transition: transform .3s ease;
  box-shadow: 4px 0 24px rgba(0,0,0,.13);
  overflow: hidden;
}
#mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }

/* Head — search field + close button */
.mobile-menu__head {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 10px 10px 14px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.mobile-menu__head-search {
  flex: 1; display: flex; align-items: center;
  background: var(--bg2, #f4f4f4);
  border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  padding: 0 8px;
}
.mobile-menu__head-search input[type="search"] {
  flex: 1; border: none; background: none;
  padding: 9px 4px; font-size: 14px; color: var(--text); outline: none;
}
.mobile-menu__head-search input[type="search"]::placeholder { color: var(--text3); }
.mobile-menu__head-search button[type="submit"] {
  background: none; border: none; cursor: pointer;
  color: var(--text3); padding: 6px 4px;
  display: flex; align-items: center; flex-shrink: 0;
}
.mobile-menu__head-search button:hover { color: var(--accent); }
.mobile-menu__head-search svg { width: 18px; height: 18px; }
.mobile-menu__close {
  background: none; border: none; cursor: pointer;
  color: var(--text3); padding: 4px; flex-shrink: 0;
  display: flex; align-items: center; border-radius: 6px;
}
.mobile-menu__close:hover { color: var(--text); }
.mobile-menu__close svg { width: 22px; height: 22px; }

/* Scrollable body */
.mobile-menu__body {
  flex: 1; overflow-y: auto; overflow-x: hidden;
}

/* Category list */
.mobile-menu__list {
  list-style: none; margin: 0; padding: 0;
}
.mobile-menu__list li { position: relative; }

/* Item without children — plain link */
.mobile-menu__list li:not(.menu-item-has-children) > a {
  display: flex; align-items: center; gap: 10px; padding: 11px 16px;
  font-size: 16px; font-weight: 500; color: var(--text);
  text-decoration: none; border-bottom: 1px solid var(--border);
}
.mobile-menu__list li:not(.menu-item-has-children) > a:hover { color: var(--accent); }

/* Item with children — row wraps link + arrow */
.mm-item-row {
  display: flex; align-items: stretch;
  border-bottom: 1px solid var(--border);
}
.mm-item-row > a {
  flex: 1; display: flex; align-items: center; gap: 10px; padding: 11px 16px;
  font-size: 16px; font-weight: 500; color: var(--text);
  text-decoration: none;
}
.mm-item-row > a:hover { color: var(--accent); }
.mobile-menu__list li.mm-open > .mm-item-row > a { color: var(--accent); }
.mm-cat-icon { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }

/* Arrow toggle button */
.mm-sub-arrow {
  flex-shrink: 0; width: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; border-left: 1px solid var(--border);
  cursor: pointer; color: var(--text3);
  transition: color .15s;
}
.mm-sub-arrow svg { transition: transform .22s ease; }
.mm-sub-arrow:hover { color: var(--accent); }
.mobile-menu__list li.mm-open > .mm-item-row .mm-sub-arrow { color: var(--accent); }
.mobile-menu__list li.mm-open > .mm-item-row .mm-sub-arrow svg { transform: rotate(180deg); }

/* Sub-menu */
.mobile-menu__list .sub-menu {
  display: none; list-style: none; margin: 0; padding: 0;
  background: var(--bg2, #f9f9f9);
}
.mobile-menu__list li.mm-open > .sub-menu { display: block; }
.mobile-menu__list .sub-menu li > a {
  display: block; padding: 10px 16px 10px 28px;
  font-size: 13px; color: var(--text2);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-menu__list .sub-menu li:last-child > a { border-bottom: none; }
.mobile-menu__list .sub-menu li > a:hover { color: var(--accent); }

/* Registered mobile nav below categories */
.mobile-menu__nav {
  border-top: 1px solid var(--border);
  padding: 8px 0;
  flex-shrink: 0;
}
.mobile-menu__nav-list {
  list-style: none; margin: 0; padding: 0;
}
.mobile-menu__nav-list li a {
  display: block;
  padding: 11px 20px;
  font-size: 14px; font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  transition: color .15s, background .15s;
}
.mobile-menu__nav-list li a:hover { color: var(--accent); background: var(--surface2); }
.mobile-menu__nav-list li.current-menu-item > a { color: var(--accent); font-weight: 600; }

/* Lang at bottom */
.mobile-menu__lang {
  padding: 12px 16px; border-top: 1px solid var(--border);
  display: flex; gap: 8px; flex-shrink: 0;
}
.mobile-menu__lang .lang-btn {
  padding: 5px 12px; border-radius: 6px; font-size: 13px; font-weight: 500;
  color: var(--text2); text-decoration: none;
  border: 1px solid var(--border);
  transition: color .15s, border-color .15s, background .15s;
}
.mobile-menu__lang .lang-btn.active,
.mobile-menu__lang .lang-btn:hover { color: var(--accent); border-color: var(--accent); }

/* ── Wishlist fav button on product card ─────────────────── */
.card-fav-btn {
  position: absolute; top: 6px; right: 6px; z-index: 2;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.82); border: none; border-radius: 50%;
  cursor: pointer; color: var(--text3);
  transition: color .15s, background .15s;
  backdrop-filter: blur(3px);
}
.card-fav-btn:hover   { color: var(--red); background: #fff; }
.card-fav-btn.is-active { color: var(--red); }

/* ── 4b. Categories mega-menu ─────────────────────────────── */
.categories-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1240px;
  z-index: 200;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
}
.categories-dropdown.is-open { display: block; }

.cat-menu {
  display: flex;
  height: 100%;
}

/* Left column — parent list */
.cat-menu__parents {
  width: 230px;
  flex-shrink: 0;
  list-style: none;
  margin: 0; padding: 6px 0;
  border-right: 1px solid var(--border);
  overflow-y: auto;
}
.cat-menu__item { display: block; }
.cat-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-size: 15px;
  color: var(--text);
  transition: background .1s, color .1s;
  white-space: nowrap;
  overflow: hidden;
}
.cat-menu__link span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat-menu__icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}
.cat-menu__icon svg { width: 22px; height: 22px; display: block; }
.cat-menu__arrow {
  width: 13px; height: 13px;
  flex-shrink: 0;
  opacity: .3;
  margin-left: auto;
  transition: opacity .12s, transform .12s;
}
.cat-menu__item.is-active .cat-menu__link {
  background: var(--surface2);
  color: var(--accent);
  font-weight: 600;
}
.cat-menu__item.is-active .cat-menu__arrow {
  opacity: 1;
  transform: translateX(2px);
}
.cat-menu__item:not(.is-active) .cat-menu__link:hover {
  background: var(--surface2);
  color: var(--accent);
}

/* Right column — subcategory panels */
.cat-menu__stage {
  flex: 1;
  overflow-y: auto;
  padding: 20px 22px;
}
.cat-menu__panel { display: none; }
.cat-menu__panel.is-active { display: block; }

.cat-menu__panel-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.cat-menu__subs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px 6px;
}
.cat-menu__sub {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text2);
  transition: background .1s, color .1s;
  white-space: nowrap;
  overflow: hidden;
}
.cat-menu__sub::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--border2);
  flex-shrink: 0;
  margin-right: 8px;
  transition: background .1s;
}
.cat-menu__sub span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat-menu__sub:hover { background: var(--surface2); color: var(--accent); }
.cat-menu__sub:hover::before { background: var(--accent); }
.cat-menu__sub-icon { display: none; }
.cat-menu__sub-icon svg { display: none; }

.cat-menu__view-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}
.cat-menu__view-all svg { width: 13px; height: 13px; }
.cat-menu__view-all:hover { text-decoration: underline; }

/* ── 5. Sections layout ────────────────────────────────── */
.section {
  max-width: 1280px; margin: 40px auto 0; padding: 0 10px;
}
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Geologica', sans-serif;
  font-size: 20px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.section-title::before {
  content: ''; display: block;
  width: 4px; height: 22px; border-radius: 2px;
  background: var(--accent); flex-shrink: 0;
}
.section-title.red::before,
.section-title--red::before    { background: var(--red); }
.section-title.blue::before,
.section-title--blue::before   { background: var(--health); }
.section-link {
  font-size: 13px; color: var(--text2);
  display: flex; align-items: center; gap: 4px;
  transition: color .15s;
}
.section-link:hover { color: var(--accent); }
.section-link svg { width: 14px; height: 14px; }

/* ── 6. Hero ───────────────────────────────────────────── */
.hero {
  max-width: 1280px; margin: 10px auto 0; padding: 0 10px;
  display: grid; grid-template-columns: 1fr 320px; gap: 10px;
}
.hero-main {
  border-radius: var(--radius-lg);
  position: relative; height: 360px; background: #1a3a2a;
  overflow: visible;
}

/* Prototype-style pure CSS slider */
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; padding: 36px;
  opacity: 0; transition: opacity .5s ease;
  pointer-events: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-slide  .promo-img-float {
  position: absolute;
  bottom: -30px;
  right: -5px;
  height: calc(100% + 28px);
  max-width: 38%;
}
.hero-slide-overlay { position: absolute; inset: 0; }
/* In overlay mode the slide itself must not clip the floating image */
.hero-slide.hero-slide--img-overlay {
  overflow: visible;
}
.hero-slide.hero-slide--img-overlay .hero-slide-bg,
.hero-slide.hero-slide--img-overlay .hero-slide-overlay {
  border-radius: var(--radius-lg);
}
.hero-img-float {
  position: absolute;
  bottom: 0; right: 0;
  height: calc(100% + 40px);
  width: auto; max-width: 50%;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(-8px 4px 24px rgba(0,0,0,.35));
  transform-origin: bottom center;
}
.hero-slide--img-overlay .hero-content { max-width: 50%; }
.hero-content {
  position: relative; z-index: 1; color: white; max-width: 450px;
}
.hero-tag {
  display: inline-block; background: var(--red); color: white;
  font-size: 8px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px; margin-bottom: 10px;
}
.hero-title {
  font-family: 'Geologica', sans-serif;
  font-size: 28px; font-weight: 700; line-height: 1.25; margin-bottom: 10px;
}
.hero-sub { font-size: 14px; opacity: .85; margin-bottom: 20px; line-height: 1.5; }
.hero-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; background: var(--accent); color: white;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; border: none;
  transition: background .15s, transform .1s;
}
.hero-btn:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* Dots */
.hero-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,.4); border: none; padding: 0;
  transition: width .3s, background .3s; cursor: pointer;
}
.hero-dot.active { width: 20px; background: white; }

/* Hero side banners */
.hero-side { display: flex; flex-direction: column; gap: 10px; }
.hero-side-banner {
  flex: 1; border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer; min-height: 0;
  display: block;
}
.hsb-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hsb-overlay { position: absolute; inset: 0; }
.hsb-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.hsb-tag { font-size: 8px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .8; margin-bottom: 4px; max-width: 120px;
  display: flex;
  justify-content: center;}
.hsb-title { font-family: 'Geologica', sans-serif; font-size: 16px; font-weight: 600; line-height: 1.3; margin-bottom: 6px; }
.hsb-subtitle { font-size: 12px; opacity: .75; margin-bottom: 8px; }
.hsb-cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 6px; border: none;
  width: fit-content; transition: opacity .15s; cursor: pointer;
}
.hsb-cta:hover { opacity: .85; }

/* ── 7. Categories grid ────────────────────────────────── */
.cats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.cat-card {
  background: linear-gradient(150deg,#EEF4EA,#B8D4A8);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: row; align-items: stretch;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  min-height: 90px;
}
.cat-card:hover { box-shadow: var(--shadow); }
.cat-card__text {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 14px 16px; gap: 4px;
}
.cat-card .cat-name  { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; margin: 0; }
.cat-card .cat-count { font-size: 12px; color: var(--text3); margin: 0; }
.cat-photo {
  width: 50%; flex-shrink: 0;
  overflow: hidden;
}
.cat-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; display: block; }
.cat-card:hover .cat-photo img { transform: scale(1.05); }

/* ── 8. Product cards ──────────────────────────────────── */
.products-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
}
.prod-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
  position: relative;
}
.prod-card:hover { box-shadow: var(--shadow-lg) }

.prod-img-wrap {
  aspect-ratio: 1; background: #fff;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.prod-img-wrap img,
.prod-img {
  position: absolute;
  width: 100%; height: auto;
  object-fit: contain;
  transition: transform .3s;
}
.woocommerce-Price-currencySymbol {
  font-size: 0.73em;
}
.prod-labels {
  position: absolute; top: 8px; left: 8px;
  display: flex; flex-direction: column; gap: 4px; z-index: 1;
}
.prod-label {
  display: inline-flex; padding: 2px 7px; border-radius: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  line-height: 1.4;
}
.lbl-new    { background: var(--accent-light); color: var(--accent-text); }
.lbl-sale   { background: var(--red-light);    color: var(--red-text);    }
.lbl-hot    { background: #fef3c7;             color: #92400e;            }
.lbl-health { background: var(--health-light); color: var(--health-text); }

.prod-fav {
  position: absolute; top: 8px; right: 8px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text3); transition: all .15s; opacity: 0; z-index: 1;
}
.prod-card:hover .prod-fav { opacity: 1; }
.prod-fav:hover,
.prod-fav.is-active {
  color: var(--red); border-color: var(--red); background: var(--red-light);
}
.prod-fav svg { width: 14px; height: 14px; }

.prod-body { padding: 12px 12px 14px; display: flex; flex-direction: column; flex: 1; }
.prod-brand { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 4px; }
.prod-name {
  font-size: 15px;
  line-height: 1.4;
  color: var(--text);
  flex: 1;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  max-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-name a { color: inherit; }
.prod-name a:hover { color: var(--accent); }

.prod-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.star {
  width: 12px; height: 12px; color: #f59e0b;
}
.star--fill { color: #f59e0b; }
.prod-rating-count { font-size: 11px; color: var(--text3); margin-left: 2px; }

.prod-price-row { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.prod-price {
  font-family: 'Geologica', sans-serif; font-size: 17px; font-weight: 600; color: var(--text);
}
/* WooCommerce price HTML structure overrides */
.prod-price .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; color: inherit; }
.prod-price ins  { text-decoration: none; color: var(--red); }
.prod-price del  { font-size: 12px; color: var(--text3); font-weight: 400; }
.prod-price del .woocommerce-Price-amount { color: var(--text3); font-size: 12px; }

.prod-buy {
  width: 100%;
  height: 34px;
  background: #16a34a00;
  color: #16a34a;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .15s, border-color .15s;
  cursor: pointer;
}
.prod-buy:hover { background: var(--accent-hover); border-color: var(--accent-hover); color:#fff}
.prod-buy.loading,
.prod-buy.is-adding { opacity: .6; pointer-events: none; }
.prod-buy svg { width: 14px; height: 14px; }

/* ── 9. Promo strip ────────────────────────────────────── */
.promo-strip {
  max-width: 1280px; margin: 40px auto 0; padding: 0 10px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  overflow: visible;
}
.promo-banner {
  border-radius: var(--radius); overflow: hidden;
  position: relative; height: 180px;
  display: block;
}
.promo-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.promo-overlay   { position: absolute; inset: 0; }
.promo-content {
  position: relative; z-index: 1; padding: 28px;
  height: 100%; display: flex; flex-direction: column; justify-content: center; color: white;
}
.promo-label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  opacity: .8; margin-bottom: 6px;
}
.promo-title { font-family: 'Geologica', sans-serif; font-size: 20px; font-weight: 700; line-height: 1.3; margin-bottom: 6px; }
.promo-sub { font-size: 13px; opacity: .8; margin-bottom: 14px; }
.promo-btn {
  display: inline-flex; align-items: center;
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; border: 2px solid white;
  color: white; background: transparent; width: fit-content;
  transition: background .15s, color .15s; cursor: pointer;
}
.promo-btn:hover { background: white; color: var(--text); }

/* Promo banner: image floating above block */
.promo-banner--img-overlay,
.hero-side-banner--img-overlay {
  overflow: visible;
}
/* Restore rounded corners on inner layers (parent overflow:visible breaks clipping) */
.promo-banner--img-overlay .promo-banner-bg,
.promo-banner--img-overlay .promo-overlay {
  border-radius: var(--radius);
}
.hero-side-banner--img-overlay .hsb-bg,
.hero-side-banner--img-overlay .hsb-overlay {
  border-radius: var(--radius);
}
.promo-img-float {
  position: absolute;
  bottom: 0; right: -5px;
  height: calc(100% + 28px);
  width: auto; max-width: 48%;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.25));
}
/* Rotate variants — обрати в адмін-панелі банера */
.promo-img-float--r0   { transform: rotate(0deg); }
.promo-img-float--r5   { transform: rotate(5deg); }
.promo-img-float--r10  { transform: rotate(10deg); }
.promo-img-float--r15  { transform: rotate(15deg); }
.promo-img-float--r20  { transform: rotate(20deg); }
.promo-img-float--rm5  { transform: rotate(-5deg); }
.promo-img-float--rm10 { transform: rotate(-10deg); }
.promo-img-float--rm15 { transform: rotate(-15deg); }
.promo-img-float--rm20 { transform: rotate(-20deg); }
/* Clip siblings above the float so content text doesn't overlap */
.promo-banner--img-overlay .promo-content,
.hero-side-banner--img-overlay .hsb-content {
  max-width: 58%;
}

/* ── 10. Health section ────────────────────────────────── */
.health-section {
  max-width: 1280px; margin: 48px auto 0; padding: 0 20px;
}
.health-banner {
  background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0ea5e9 100%);
  border-radius: var(--radius-lg); padding: 36px 40px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  position: relative; overflow: hidden;
}
.health-banner::before {
  content: ''; position: absolute; top: -60px; right: 200px;
  width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.05);
  pointer-events: none;
}
.health-banner::after {
  content: ''; position: absolute; bottom: -80px; right: 80px;
  width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.06);
  pointer-events: none;
}
.health-left { position: relative; z-index: 1; }
.health-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 14px;
}
.health-tag svg { width: 13px; height: 13px; }
.health-title {
  font-family: 'Geologica', sans-serif;
  font-size: 26px; font-weight: 700; color: white; line-height: 1.3; margin-bottom: 10px;
}
.health-sub {
  font-size: 14px; color: rgba(255,255,255,.75);
  line-height: 1.6; margin-bottom: 22px; max-width: 500px;
}
.health-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.health-pill {
  background: rgba(255,255,255,.15); color: white;
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.2);
}
.health-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; background: white; color: var(--health-dark);
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; border: none;
  transition: transform .15s, box-shadow .15s; cursor: pointer;
}
.health-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.health-cta svg { width: 16px; height: 16px; }
.health-stats {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 14px;
}
.health-stat {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 14px 20px; text-align: center; min-width: 130px;
}
.health-stat-num {
  font-family: 'Geologica', sans-serif;
  font-size: 26px; font-weight: 700; color: white; line-height: 1;
}
.health-stat-label { font-size: 11px; color: rgba(255,255,255,.7); margin-top: 4px; }
.health-products { margin-top: 24px; }

/* Pulse icon for health tag */
.icon-pulse { display: inline-flex; align-items: center; }

/* ── 11. Articles ──────────────────────────────────────── */
.articles-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px;
}
.article-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.article-card:hover { box-shadow: var(--shadow-lg); }
.article-img {
  aspect-ratio: 16/9; background: var(--surface2);
  display: block; overflow: hidden;
}
.article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.article-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.article-cat {
  display: inline-block; margin-bottom: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 2px 8px; border-radius: 4px;
  background: var(--accent-light); color: var(--accent-text);
}
.article-title {
  font-family: 'Geologica', sans-serif;
  font-size: 15px; font-weight: 500; line-height: 1.4; margin-bottom: 8px; color: var(--text);
  flex: 1;
}
.article-title a { color: inherit; }
.article-title a:hover { color: var(--accent); }
.article-excerpt { font-size: 13px; color: var(--text2); line-height: 1.5; margin-bottom: 12px; }
.article-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; gap: 8px;
}
.article-date {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--text3);
}
.article-date svg { width: 12px; height: 12px; }
.article-link {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600; color: var(--accent); transition: gap .15s;
}
.article-link:hover { gap: 6px; }
.article-link svg { width: 12px; height: 12px; }

/* ── 12. Trust strip ───────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 48px 0 0;
}
.trust-inner {
  max-width: 1280px; margin: 0 auto; padding: 24px 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.trust-item { display: flex; align-items: flex-start; gap: 14px; }
.trust-icon {
width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8D5039;
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; color: var(--text); }
.trust-sub   { font-size: 12px; color: var(--text2); line-height: 1.4; }

/* ── 13. Footer ────────────────────────────────────────── */
.site-footer { background: #18181b; padding: 48px 0 24px;}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-top {
  display: grid; grid-template-columns: 240px 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 36px; border-bottom: 1px solid #27272a;
}
.footer-logo {
  display: block; margin-bottom: 10px;
  font-family: 'Geologica', sans-serif; font-size: 22px; font-weight: 700; color: #ef4444;
}
.footer-logo-img { height: 100px; width: auto; object-fit: contain; }
.footer-desc { font-size: 13px; color: #71717a; line-height: 1.6; margin-bottom: 16px; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: #27272a; border: none; color: #a1a1aa;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.social-btn:hover { background: var(--accent); color: white; }
.social-btn svg { width: 15px; height: 15px; }
.footer-col-title {
  font-size: 13px; font-weight: 700; color: #e4e4e7;
  margin-bottom: 14px; letter-spacing: .04em; text-transform: uppercase;
}
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a,
.footer-links li a { font-size: 13px; color: #71717a; transition: color .15s; }
.footer-links a:hover { color: #e4e4e7; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: #71717a; text-decoration: none;
}
.footer-contact-item:hover { color: #a1a1aa; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-schedule { display: flex; flex-direction: column; gap: 6px; }
.footer-schedule-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: #71717a;
}
.footer-schedule-row span:last-child { color: #a1a1aa; }
.footer-bottom {
  padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: #52525b; }
.footer-pay  { display: flex; align-items: center; gap: 8px; }
.pay-logo {
  height: 22px; padding: 4px 8px; background: #27272a; border-radius: 4px;
  font-size: 10px; font-weight: 700; color: #a1a1aa;
  display: flex; align-items: center;
}
.pay-logo img {
  max-width: 35px;
}

/* ── 14. Scroll to top ─────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent); color: white; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(22,163,74,.4);
  transition: opacity .3s, transform .3s;
  opacity: 0; pointer-events: none;
}
.scroll-top.visible   { opacity: 1; pointer-events: auto; }
.scroll-top:hover     { transform: translateY(-2px); }
.scroll-top svg       { width: 20px; height: 20px; }

/* ── 15. Breadcrumb ────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text3); flex-wrap: wrap;
  padding: 14px 0;
}
.breadcrumb a { color: var(--text2); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border2); }

/* ── 16. Pagination ────────────────────────────────────── */
.pagination {
  display: flex; justify-content: center; gap: 4px;
  margin: 32px 0; flex-wrap: wrap;
}
.pagination .page-numbers {
  display: flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--text2);
  transition: background .15s, border-color .15s, color .15s;
}
.pagination .page-numbers:hover { border-color: var(--accent); color: var(--accent); }
.pagination .current { background: var(--accent); border-color: var(--accent); color: white; }
.pagination .dots { border-color: transparent; pointer-events: none; }

/* ── 17. Category page (WooCommerce archive) ───────────── */
.cat-page { padding-bottom: 40px; }
.cat-archive-title {
  font-family: 'Geologica', sans-serif;
  font-size: 22px; font-weight: 700; margin: 8px 0 16px; color: var(--text);
}
.cat-page-layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 32px;
  align-items: start;
}
.cat-sidebar { position: sticky; top: 130px; background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);}
.cat-main {}

/* ── Filter placeholder ──────────────────────────── */
.filter-placeholder {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 20px 18px;
  box-shadow: 0 4px 24px rgba(22,163,74,.07);
}
.filter-placeholder h3 {
  font-family: 'Geologica', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 18px;
}
.filter-ph-group {
  margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.filter-ph-group:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-ph-label { font-size: 12px; font-weight: 700; color: var(--text2); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .03em; }
.filter-ph-items { display: flex; flex-direction: column; gap: 8px; }
.filter-ph-item  { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text3); }
.filter-ph-check { width: 16px; height: 16px; border-radius: 3px; border: 1.5px solid var(--border2); background: var(--surface2); flex-shrink: 0; }
.filter-ph-range { height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--accent-light) 55%, var(--surface2) 100%); margin: 8px 0 4px; }
.filter-ph-minmax { display: flex; justify-content: space-between; font-size: 12px; color: var(--text3); }
.filter-ph-actions { display: flex; gap: 10px; margin-top: 18px; }
.filter-ph-btn {
  flex: 1; height: 36px; border-radius: var(--radius-sm); border: none;
  font-size: 13px; font-weight: 600; font-family: inherit; cursor: not-allowed; opacity: .65;
}
.filter-ph-btn-apply { background: var(--accent); color: #fff; }
.filter-ph-btn-reset { background: var(--surface2); color: var(--text2); }

/* ── Sort pills row ──────────────────────────────── */
.filter-sort-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.filter-toggle {
  display: none; /* shown on mobile */
  align-items: center; gap: 6px;
  padding: 7px 16px; font-size: 14px; font-weight: 600;
  background: var(--accent); color: #fff; border: none;
  border-radius: var(--radius-sm); cursor: pointer; font-family: inherit;
  white-space: nowrap;
}
.sort-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.sort-pill {
  padding: 7px 18px; border-radius: 20px;
  border: 1px solid var(--border2); background: var(--surface2);
  color: var(--text); font-size: 13px; font-weight: 500;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
}
.sort-pill:hover { border-color: var(--accent); color: var(--accent-hover); }
.sort-pill.active {
  background: rgba(22,163,74,.14); border-color: #70cf70;
  color: var(--accent-hover); font-weight: 600;
}

/* ── Archive product grid ────────────────────────── */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

/* ── Product card (archive + search + related) ───── */
.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none; color: inherit; display: block;
}
.product-card:hover { box-shadow: var(--shadow-lg);}

.card-img {
  aspect-ratio: 1; background: #fff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.card-img img {
  position: absolute;
  width: 100%; height: 100%; object-fit: contain;
}
.card-badge {
  position: absolute; top: 8px; left: 8px; z-index: 1;
  font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 20px;
  font-family: 'Geologica', sans-serif;
}
.card-badge-new  { background: var(--accent-light); color: var(--accent-text); }
.card-badge-sale { background: var(--red-light);    color: var(--red-text);    }

.card-body { padding: 12px 14px 14px; }
.card-name {
  font-size: 13px; line-height: 1.4; color: var(--text);
  margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-price-row   { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.card-price       { font-family: 'Geologica', sans-serif; font-size: 16px; font-weight: 600; color: var(--text); }
.card-price .woocommerce-Price-amount { font-size: inherit; color: inherit; }
.card-price.sale  { color: var(--red); }
.card-old         { font-size: 13px; color: var(--text3); text-decoration: line-through; }
.card-old .woocommerce-Price-amount { font-size: inherit; color: var(--text3); }
.card-buy {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  width: 100%; height: 34px;border:none;
  border-radius: var(--radius-sm); background: #274E33; color: #fff;
  font-size: 13px; font-weight: 600; font-family: inherit; cursor: pointer;
  transition: background .15s, color .15s, opacity .15s; text-decoration: none;
}
.card-buy:hover,
.card-buy--details:hover { background: var(--accent); color: white; }
.card-buy.is-adding,
.card-buy.loading { opacity: .5; pointer-events: none; cursor: default; }

.card-stock {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 500; margin-bottom: 9px;
}
.card-stock::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.card-stock--in  { color: #2d9b4e; }
.card-stock--in::before  { background: #2d9b4e; }
.card-stock--out { color: var(--text3); }
.card-stock--out::before { background: #c0c0c0; }
.product-card--out { opacity: .75;filter: grayscale(0.7); }
.product-card--out .card-buy { border-color: var(--border); color: var(--text3); }
.product-card--out .card-buy:hover { background: var(--border); color: var(--text3); }

/* ── Category description at bottom ────────────── */
.cat-description-block {
  margin: 36px 0 0; padding: 0;
}
.cat-description-block h3 {
  font-family: 'Geologica', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 14px;
}
.cat-description-inner {
  position: relative;
  font-size: 15px; line-height: 1.7; color: var(--text2); text-align: left;
}

/* Rich content styles for all description areas */
.wcpsf-intro-text,
.wcpsf-bottom-text,
.cat-description-inner {
  font-size: 15px; line-height: 1.7; color: var(--text2);
}
.wcpsf-intro-text p, .wcpsf-bottom-text p, .cat-description-inner p {
  margin-bottom: 12px;
}
.wcpsf-intro-text ul, .wcpsf-bottom-text ul, .cat-description-inner ul,
.wcpsf-intro-text ol, .wcpsf-bottom-text ol, .cat-description-inner ol {
  margin-bottom: 14px; padding-left: 0; list-style: none;
}
.wcpsf-intro-text ul li, .wcpsf-bottom-text ul li, .cat-description-inner ul li {
  position: relative; padding-left: 20px; margin-bottom: 6px;
}
.wcpsf-intro-text ul li::before, .wcpsf-bottom-text ul li::before, .cat-description-inner ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}
.wcpsf-intro-text ol, .wcpsf-bottom-text ol, .cat-description-inner ol {
  counter-reset: seo-ol;
}
.wcpsf-intro-text ol li, .wcpsf-bottom-text ol li, .cat-description-inner ol li {
  position: relative; padding-left: 28px; margin-bottom: 6px;
  counter-increment: seo-ol;
}
.wcpsf-intro-text ol li::before, .wcpsf-bottom-text ol li::before, .cat-description-inner ol li::before {
  content: counter(seo-ol);
  position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; line-height: 20px; text-align: center;
}
.wcpsf-intro-text h2, .wcpsf-bottom-text h2, .cat-description-inner h2,
.wcpsf-intro-text h3, .wcpsf-bottom-text h3, .cat-description-inner h3 {
  font-family: 'Geologica', sans-serif; font-weight: 700;
  color: var(--text); margin: 20px 0 8px;
}
.wcpsf-intro-text h2, .wcpsf-bottom-text h2, .cat-description-inner h2 { font-size: 18px; }
.wcpsf-intro-text h3, .wcpsf-bottom-text h3, .cat-description-inner h3 { font-size: 16px; }
.wcpsf-intro-text { margin-bottom: 20px; }
.wcpsf-bottom-text { margin-top: 36px; }

/* Legacy: keep old WC product-grid rules for safety */
.products-grid { width: 100%; }
.products-grid ul.products {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px;
  list-style: none; margin: 0; padding: 0;
}

/* Sidebar filter (real widgets, when added later) */
.category-filter,
.widget.woocommerce-widget-layered-nav,
.widget.widget_price_filter,
.widget.woocommerce-widget-layered-nav-filters {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; margin-bottom: 16px;
}
.widget-title { font-size: 15px; font-weight: 700; margin-bottom: 14px; color: var(--text); font-family: 'Geologica', sans-serif; }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget ul li { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 14px; color: var(--text2); }
.widget ul li a { color: var(--text2); transition: color .15s; }
.widget ul li a:hover { color: var(--accent); }
.widget ul li.chosen > a { color: var(--accent); font-weight: 600; }
.widget .count { font-size: 12px; color: var(--text3); margin-left: auto; }
.price_slider_wrapper { padding: 4px 0; }
.price_slider.ui-slider { background: var(--surface2); border-radius: 4px; height: 4px; border: none; margin: 10px 0; }
.price_slider .ui-slider-range { background: var(--accent); border: none; }
.price_slider .ui-slider-handle {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--accent); top: -6px; outline: none;
}
.price_label { font-size: 13px; color: var(--text2); margin-bottom: 10px; }

/* ── 18. Single post (blog) ────────────────────────────── */
.single-post-wrap { max-width: 760px; margin: 0 auto; padding: 0 20px 60px; }
.post-header { margin-bottom: 24px; }
.post-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.post-cat {
  display: inline-block; padding: 3px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  background: var(--accent-light); color: var(--accent-text); letter-spacing: .04em;
}
.post-title {
  font-family: 'Geologica', sans-serif;
  font-size: 32px; font-weight: 700; line-height: 1.3; margin-bottom: 14px;
}
.post-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--text2);
}
.post-meta-item { display: flex; align-items: center; gap: 5px; }
.post-meta-item svg { width: 14px; height: 14px; color: var(--text3); }
.post-feat-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.post-feat-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-content { font-size: 16px; line-height: 1.8; color: var(--text); }
.post-content h2 { font-family: 'Geologica', sans-serif; font-size: 22px; font-weight: 700; margin: 28px 0 12px; }
.post-content h3 { font-family: 'Geologica', sans-serif; font-size: 18px; font-weight: 600; margin: 22px 0 10px; }
.post-content p  { margin-bottom: 16px; }
.post-content ul { margin: 0 0 16px 20px; }
.post-content ol { margin: 0 0 16px 20px; }
.post-content li { margin-bottom: 6px; }
.post-content img { border-radius: var(--radius-sm); margin: 16px 0; }
.post-content a { color: var(--accent); }
.post-content a:hover { text-decoration: underline; }
.post-content blockquote {
  border-left: 3px solid var(--accent); padding: 12px 20px;
  background: var(--accent-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0; font-style: italic;
}

/* ── 19. Page templates ────────────────────────────────── */
.page-wrap { max-width: 900px; margin: 0 auto; padding: 24px 20px 60px; }
.page-title-wrap { margin-bottom: 24px; }
.page-title-wrap h1 {
  font-family: 'Geologica', sans-serif; font-size: 28px; font-weight: 700;
}
.entry-content { font-size: 16px; line-height: 1.7; }
.entry-content p { margin-bottom: 14px; }
.entry-content h2 { font-family: 'Geologica', sans-serif; font-size: 22px; font-weight: 700; margin: 24px 0 10px; }

/* ── Static pages (page.php) ───────────────────────────── */
.page-content { max-width: 860px; margin: 0 auto; padding: 32px 20px 64px; }
.page-article {}
.page-header { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.page-title  { font-family: 'Geologica', sans-serif; font-size: 32px; font-weight: 700; line-height: 1.25; color: var(--text); margin: 0; }
.page-thumbnail { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.page-thumbnail img { width: 100%; height: auto; display: block; }
.page-body { font-size: 16px; line-height: 1.8; color: var(--text); }
.page-body p  { margin-bottom: 16px; }
.page-body h2 { font-family: 'Geologica', sans-serif; font-size: 24px; font-weight: 700; margin: 32px 0 12px; color: var(--text); }
.page-body h3 { font-family: 'Geologica', sans-serif; font-size: 20px; font-weight: 600; margin: 24px 0 10px; color: var(--text); }
.page-body h4 { font-family: 'Geologica', sans-serif; font-size: 17px; font-weight: 600; margin: 20px 0 8px; }
.page-body a  { color: var(--accent); }
.page-body a:hover { text-decoration: underline; }
.page-body ul { margin: 0 0 16px 0; padding: 0; list-style: none; }
.page-body ul li { padding-left: 20px; position: relative; margin-bottom: 8px; }
.page-body ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.page-body ol { margin: 0 0 16px 0; padding: 0; list-style: none; counter-reset: page-ol; }
.page-body ol li { padding-left: 32px; position: relative; margin-bottom: 8px; counter-increment: page-ol; }
.page-body ol li::before { content: counter(page-ol); position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.page-body img { border-radius: var(--radius-sm); max-width: 100%; height: auto; margin: 16px 0; }
.page-body blockquote { border-left: 4px solid var(--accent); margin: 20px 0; padding: 12px 18px; background: var(--accent-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--text2); }
.page-body blockquote p { margin: 0; }
.page-body table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 15px; }
.page-body table th, .page-body table td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.page-body table th { background: var(--surface2); font-weight: 600; }
.page-body table tr:nth-child(even) td { background: var(--surface); }
.page-body .wp-block-image { margin: 20px 0; }
.page-body .wp-block-image img { border-radius: var(--radius-sm); }
.page-body .wp-block-quote { border-left: 4px solid var(--accent); margin: 20px 0; padding: 12px 18px; background: var(--accent-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
@media (max-width: 680px) {
  .page-content { padding: 20px 16px 48px; }
  .page-title { font-size: 26px; }
  .page-body h2 { font-size: 20px; }
  .page-body h3 { font-size: 18px; }
}

/* ── 20. 404 / not found ───────────────────────────────── */
.error-page {
  min-height: 60vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 60px 20px;
}
.error-code {
  font-family: 'Geologica', sans-serif;
  font-size: 100px; font-weight: 700; color: var(--border2); line-height: 1;
}
.error-title {
  font-family: 'Geologica', sans-serif;
  font-size: 28px; font-weight: 700; margin: 16px 0 12px;
}
.error-text { font-size: 16px; color: var(--text2); margin-bottom: 28px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: var(--accent); color: white;
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; border: none;
  transition: background .15s; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-hover); }

/* ── 21. Search results ────────────────────────────────── */
.search-page-wrap  { padding-bottom: 60px; }
.search-page-title { font-family: 'Geologica', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 20px; }
.search-page-title em { font-style: normal; color: var(--accent); }

/* ── 22. WordPress alignment helpers ──────────────────── */
.alignnone  { margin: 0 0 16px; }
.alignleft  { float: left; margin: 0 20px 16px 0; }
.alignright { float: right; margin: 0 0 16px 20px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--text3); text-align: center; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
.skip-link:focus {
  clip: auto; clip-path: none; height: auto; margin: 0;
  overflow: visible; width: auto;
  background: var(--surface); padding: 10px 20px;
  top: 0; left: 0; position: fixed; z-index: 9999;
}

/* ── 23. Responsive ────────────────────────────────────── */
@media (max-width: 1100px) {
  .cats-grid     { grid-template-columns: repeat(3, 1fr); }
  .products-row  { grid-template-columns: repeat(4, 1fr); }
  .health-products .products-row { grid-template-columns: repeat(4, 1fr); }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 1024px) {
  .cats-grid    { grid-template-columns: repeat(2, 1fr); }
  .cat-page-layout { grid-template-columns: 230px 1fr; gap: 20px; }
}

@media (max-width: 820px) {
  .hero                  { grid-template-columns: 1fr; }
  .hero-side             { flex-direction: row; height: 140px; }
  .hero-side-banner      { flex: 1; min-height: unset; }
  .hero-main             { height: 280px; }
  .hero-slide            { height: 280px; }
  .cats-grid             { grid-template-columns: repeat(2, 1fr); }
  .promo-strip           { grid-template-columns: 1fr; }
  .articles-grid         { grid-template-columns: 1fr 1fr; }
  .trust-inner           { grid-template-columns: repeat(2, 1fr); }
  .health-banner         { grid-template-columns: 1fr; }
  .health-stats          { flex-direction: row; }
  .health-products .products-row { grid-template-columns: repeat(3, 1fr); }
  .footer-top            { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cat-page-layout { grid-template-columns: 1fr; }
  /* Filter sidebar becomes a slide-in drawer on mobile */
  .cat-sidebar {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 80vw; max-width: 320px;
    background: var(--surface); z-index: 500;
    overflow-y: auto; padding: 24px 20px 40px;
    transform: translateX(-110vw); transition: transform .3s cubic-bezier(.7,0,.3,1);
    box-shadow: none;
  }
  .cat-sidebar.is-open {
    transform: translateX(0);
    box-shadow: 0 0 0 100vw rgba(0,0,0,.25);
  }
  .filter-toggle { display: flex; }
  .post-title            { font-size: 24px; }
  .nav-links li a        { padding: 0 9px; font-size: 13px; }
  .hsb-content{ padding: 15px 10px;}
  .promo-img-float {
  position: absolute;
bottom: -5px;
  right: -5px;
  height: auto;
  max-width: 55%;
}
.hsb-content {
  justify-content: flex-start;

}
.hero-btn{
  display:none;
}
}

@media (max-width: 640px) {
  .hero-main             { height: 220px; }
  .hero-slide            { height: 220px; padding: 15px; }
  .hero-title            { font-size: 20px; }
  .hsb-subtitle          { display: none; }
  .cats-grid             { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card .cat-count{display:none;}
  .cat-photo img{
    object-fit: contain;
  }
  .products-row          { grid-template-columns: repeat(2, 1fr); }
  .health-products .products-row { grid-template-columns: repeat(2, 1fr); }
  .articles-grid         { grid-template-columns: 1fr; }
  .trust-inner           { grid-template-columns: 1fr; }
  .nav-links             { display: none; }
  .footer-top            { grid-template-columns: 1fr; }
  .health-banner         { padding: 24px 20px; }
  .health-title          { font-size: 20px; }
  .h-btn span:not(.h-badge) { display: none; }
  .promo-strip           { gap: 10px; }
  .arch-grid { grid-template-columns: repeat(2, 1fr); }
  /* Mobile: КАТАЛОГ button — compact with label */
  .btn-categories        { height: 40px; padding: 0 12px; width: auto; gap: 6px; border-radius: 10px; }
  .btn-categories span   { font-size: 11px; letter-spacing: .04em; display: flex; }
  .site-header .search-wrap { display: none; }

  .h-nav-wrap            { display: none; }
  .h-contacts-wrap       { display: none; }
  .container             { padding-left: 10px; padding-right: 10px; }
}

/* ============================================================
   18. Single product page
   ============================================================ */
.sp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 56px;
}
.sp-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 40px;
}

/* --- Gallery --- */
.sp-gallery { display: flex; flex-direction: column; gap: 12px; }
.sp-main-img {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.sp-main-img .sp-photo {
  width:100%; height: 100%;
  object-fit: contain;
  transition: transform .3s;
  display: block;
}
.sp-main-img:hover .sp-photo { transform: scale(1.05); }
.sp-badge {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px; font-weight: 600;
  z-index: 1;
}
.sp-badge-new { background: var(--accent-light); color: var(--accent); }
.sp-badge-sale { background: #fde8e8; color: #c0392b; }
.sp-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sp-thumb {
  width: 72px; height: 72px;
  flex-shrink: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s;
  padding: 0;
}
.sp-thumb:hover { border-color: var(--border2); }
.sp-thumb.active { border-color: var(--accent); }
.sp-thumb img {
  width: 80%; height: 80%;
  object-fit: contain;
  display: block;
}

/* --- Info panel --- */
.sp-info { display: flex; flex-direction: column; gap: 18px; }
.sp-meta-row {
  display: flex; align-items: center;
  gap: 10px; flex-wrap: wrap;
}
.sp-brand-link {
  font-size: 12px; font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 2px 10px;
  background: var(--accent-light);
  border-radius: 4px;
  text-decoration: none;
}
.sp-brand-link:hover { background: var(--accent); color: #fff; }
.sp-brand-logo-link {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  background: #fff;
  border-radius: 50%;
}
.sp-brand-logo-link:hover { border-color: var(--accent); }
.sp-brand-logo-corner {
  position: absolute;
  top: 12px;
  right: 14px;
}
.sp-brand-logo {
  max-height: 76px;
  max-width: 76px;
  border-radius: 50%;;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
.sp-attr-brand-logo-link { display: inline-flex; align-items: center; }
.sp-attr-brand-logo { max-height: 28px; max-width: 70px; width: auto; height: auto; object-fit: contain; display: block; }
.sp-attr-brand-link { color: var(--accent); text-decoration: none; font-weight: 500; }
.sp-attr-brand-link:hover { text-decoration: underline; }
.sp-sku { font-size: 12px; color: var(--text3); }
.sp-title {
  font-family: 'Geologica', sans-serif;
  font-size: 22px; font-weight: 500; line-height: 1.35;
  margin: 0;
}
.sp-rating-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sp-stars { display: flex; gap: 3px; }
.sp-star-icon { width: 18px; height: 18px; }
.sp-star-icon.filled { color: #f5a623; }
.sp-star-icon.empty { color: #d0d0d0; }
.sp-rating-num { font-size: 14px; font-weight: 600; }
.sp-rating-link {
  font-size: 13px; color: var(--text2);
  border-bottom: 1px dashed var(--border2);
  text-decoration: none;
}
.sp-rating-link:hover { color: var(--accent); border-color: var(--accent); }

/* Price block */
.sp-price-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.sp-price-row {
  display: flex; align-items: baseline;
  gap: 12px; flex-wrap: wrap;
}
.sp-price-current {
  font-family: 'Geologica', sans-serif;
  font-size: 32px; font-weight: 600;
}
.sp-price-old {
  font-size: 18px; color: var(--text3);
  text-decoration: line-through;
}
.sp-price-save {
  font-size: 13px; font-weight: 600;
  background: #fde8e8; color: #c0392b;
  padding: 2px 10px; border-radius: 20px;
}
.sp-stock-row {
  display: flex; align-items: center;
  gap: 6px; font-size: 13px;
  color: green; font-weight: 600;
}
.sp-stock-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: green;
  flex-shrink: 0;
}
.sp-stock-dot.out { background: #c0392b; }
.sp-stock-row:has(.sp-stock-dot.out) { color: #c0392b; }
.sp-stock-sep { color: var(--border2); margin: 0 2px; }
.sp-stock-row .sp-sku { font-weight: 400; color: var(--text3); font-size: 12px; }

/* Attributes */
.sp-attrs-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sp-attrs-block table { width: 100%; border-collapse: collapse; }
.sp-attrs-block tr:not(:last-child) td { border-bottom: 1px dashed var(--border); }
.sp-attrs-block td { padding: 10px 16px; font-size: 14px; line-height: 1.4; }
.sp-attrs-block td:first-child {
  color: var(--text2); width: 38%;
  background: var(--surface2);
}
.sp-attrs-block td:last-child { color: var(--text); font-weight: 500; }

/* Short description */
.sp-desc-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.sp-desc-text { font-size: 14px; color: var(--text2); line-height: 1.7; }
.sp-desc-text p:last-child { margin-bottom: 0; }

/* Actions */
.sp-actions-block { display: flex; flex-direction: column; gap: 10px; }
.sp-qty-cart-row { display: flex; gap: 10px; align-items: stretch; }
.sp-qty-ctrl {
  display: flex; align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden; flex-shrink: 0;
}
.sp-qty-btn {
  width: 40px; height: 44px;
  border: none; background: none;
  font-size: 18px; cursor: pointer;
  color: var(--text2);
  transition: background .15s;
  font-family: inherit;
}
.sp-qty-btn:hover { background: var(--surface2); }
.sp-qty-input {
  width: 52px; height: 44px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-size: 15px; font-weight: 600;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
  outline: none;
  -moz-appearance: textfield;
}
.sp-qty-input::-webkit-inner-spin-button,
.sp-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.sp-btn-buy {
  flex: 1; height: 44px;
  background: #274E33; color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600;
  font-family: inherit; cursor: pointer;
  transition: background .15s;
  display: flex; align-items: center;
  justify-content: center; gap: 8px;
}
.sp-btn-buy:hover { background: var(--accent-hover); }
.sp-btn-row { display: flex; gap: 8px; }
.sp-btn-outline {
  flex: 1; height: 40px;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text2);
  font-size: 13px; font-weight: 500;
  font-family: inherit; cursor: pointer;
  transition: all .15s;
  display: flex; align-items: center;
  justify-content: center; gap: 6px;
}
.sp-btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.sp-btn-fav:hover { border-color: #c0392b; color: #c0392b; background: #fde8e8; }
.sp-out-of-stock {
  padding: 12px 16px;
  background: #fde8e8; color: #c0392b;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  text-align: center;
}

/* Full description + sections */
.sp-full-desc, .sp-section {
  margin-top: 40px;
}
.sp-section-title {
  font-family: 'Geologica', sans-serif;
  font-size: 20px; font-weight: 600;
  margin: 0 0 20px;
}
.sp-full-desc-body {
  font-size: 15px; color: var(--text2);
  line-height: 1.75;
}
.sp-full-desc-body p:last-child { margin-bottom: 0; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

/* Question modal */
.sp-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.sp-modal-overlay[hidden] { display: none; }
.sp-modal {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  width: 100%; max-width: 480px;
  padding: 28px;
}
.sp-modal-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.sp-modal-title {
  font-family: 'Geologica', sans-serif;
  font-size: 17px; font-weight: 600;
  margin: 0;
}
.sp-modal-close {
  width: 32px; height: 32px;
  border: none; background: var(--surface2);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); transition: background .15s;
}
.sp-modal-close:hover { background: var(--border); }
.sp-modal-product {
  display: flex; align-items: center;
  gap: 10px;
  background: var(--surface2);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 18px;
  font-size: 13px; color: var(--text);
}
.sp-modal-img { width: 40px; height: 40px; object-fit: contain; border-radius: 4px; flex-shrink: 0; }
.sp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.sp-field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.sp-field:last-child { margin-bottom: 0; }
.sp-form-row .sp-field { margin-bottom: 0; }
.sp-field label { font-size: 13px; font-weight: 500; color: var(--text2); }
.sp-field input,
.sp-field textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 14px; font-family: inherit;
  color: var(--text); background: var(--surface);
  outline: none; transition: border-color .15s;
}
.sp-field input:focus,
.sp-field textarea:focus { border-color: var(--accent); }
.sp-field textarea { min-height: 90px; resize: vertical; }
.sp-modal-footer {
  display: flex; gap: 10px; justify-content: flex-end;
  margin-top: 16px;
}
.sp-btn-cancel {
  height: 38px; padding: 0 18px;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text2); font-size: 14px;
  font-family: inherit; cursor: pointer;
  transition: all .15s;
}
.sp-btn-cancel:hover { border-color: var(--accent); color: var(--accent); }
.sp-btn-submit {
  height: 38px; padding: 0 22px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--accent); color: #fff;
  font-size: 14px; font-weight: 600;
  font-family: inherit; cursor: pointer;
  transition: background .15s;
}
.sp-btn-submit:hover { background: var(--accent-hover); }

/* Responsive */
@media (max-width: 960px) {
  .sp-grid { grid-template-columns: 360px 1fr; gap: 24px; }
}
@media (max-width: 820px) {
  .sp-grid { grid-template-columns: 1fr; }
  
}
@media (max-width: 560px) {
  .sp-title { font-size: 18px; }
  .sp-price-current { font-size: 26px; }
  .sp-form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   24. Blog — archive & single
   ═══════════════════════════════════════════════════════ */

/* ── Layout: 2-column (content + sidebar) ── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
  padding-bottom: 60px;
}
.blog-main { min-width: 0; }

/* ── Archive header ── */
.blog-archive-header { margin-bottom: 28px; }
.blog-archive-title {
  font-family: 'Geologica', sans-serif;
  font-size: 26px; font-weight: 700; margin-bottom: 8px;
}
.blog-archive-desc { font-size: 15px; color: var(--text2); margin-bottom: 0; }

/* ── Blog grid (article cards) ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}
.blog-empty { font-size: 15px; color: var(--text2); padding: 40px 0; }

/* ── Sidebar ── */
.blog-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 20px;
}
.blog-widget__title {
  font-family: 'Geologica', sans-serif;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 14px; color: var(--text);
}
/* Category list */
.blog-cat-list { list-style: none; margin: 0; padding: 0; }
.blog-cat-list__item + .blog-cat-list__item { border-top: 1px solid var(--border); }
.blog-cat-list__item a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 14px; color: var(--text2);
  transition: color .15s;
}
.blog-cat-list__item a:hover,
.blog-cat-list__item.is-active a { color: var(--accent); }
.blog-cat-list__count {
  font-size: 12px; color: var(--text3);
  background: var(--surface2); padding: 1px 6px; border-radius: 20px;
}
/* Recent posts */
.blog-recent-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.blog-recent-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--text);
}
.blog-recent-item img {
  width: 52px; height: 52px; flex-shrink: 0;
  object-fit: cover; border-radius: var(--radius-sm);
}
.blog-recent-item span { display: flex; flex-direction: column; gap: 3px; }
.blog-recent-item strong { font-weight: 600; line-height: 1.4; }
.blog-recent-item time { font-size: 11px; color: var(--text3); }
.blog-recent-item:hover strong { color: var(--accent); }

/* ── Single post — post-nav ── */
.post-nav {
  display: flex; gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 24px; margin-top: 28px;
}
.post-nav__prev,
.post-nav__next { flex: 1; }
.post-nav__next { text-align: right; }
.post-nav a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--text2);
  transition: color .15s;
}
.post-nav a:hover { color: var(--accent); }
.post-nav a span {
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* ── Single post — tags ── */
.post-tags { margin-top: 20px; margin-bottom: 4px; }
.post-tags a {
  display: inline-block; margin: 0 4px 6px 0;
  padding: 3px 10px; border-radius: 20px;
  font-size: 12px; color: var(--text2);
  border: 1px solid var(--border);
  transition: border-color .15s, color .15s;
}
.post-tags a:hover { border-color: var(--accent); color: var(--accent); }

/* ── Single post — author box ── */
.post-author-box {
  display: flex; align-items: flex-start; gap: 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; margin-top: 32px; background: var(--surface);
}
.post-author-box__avatar { border-radius: 50%; flex-shrink: 0; }
.post-author-box__name { font-size: 15px; font-weight: 700; display: block; margin-bottom: 6px; }
.post-author-box__bio { font-size: 14px; color: var(--text2); margin: 0; line-height: 1.6; }

/* ── Paginated post ── */
.post-pages {
  display: flex; align-items: center; gap: 8px;
  margin-top: 24px; flex-wrap: wrap; font-size: 14px;
}
.post-pages a, .post-pages span {
  display: flex; align-items: center; justify-content: center;
  min-width: 32px; height: 32px; padding: 0 8px;
  border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  color: var(--text2); font-weight: 600; transition: all .15s;
}
.post-pages a:hover { border-color: var(--accent); color: var(--accent); }

/* ═══════════════════════════════════════════════════════
   25. Brands page
   ═══════════════════════════════════════════════════════ */

.brands-page-header { margin-bottom: 28px; }
.brands-page-title {
  font-family: 'Geologica', sans-serif;
  font-size: 28px; font-weight: 700; margin-bottom: 10px;
}

/* Letter filter alphabar */
.brands-alpha {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin-bottom: 32px;
}
.brands-alpha__item {
  display: flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 8px;
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700;
  border: 1.5px solid var(--border); color: var(--text2);
  transition: border-color .15s, color .15s, background .15s;
}
.brands-alpha__item:hover { border-color: var(--accent); color: var(--accent); }
.brands-alpha__item.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Letter section */
.brands-section { margin-bottom: 36px; }
.brands-section__letter {
  font-family: 'Geologica', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--accent); margin-bottom: 16px;
  padding-bottom: 8px; border-bottom: 2px solid var(--accent-light);
}

/* Brand card grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.brand-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 16px 12px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface);
  transition: box-shadow .2s, border-color .2s, transform .15s;
  text-align: center;
}
.brand-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.brand-card__logo {
  height: 60px; display: flex; align-items: center; justify-content: center;
  width: 100%;
}
.brand-card__logo img {
  max-width: 120px; max-height: 60px;
  width: auto; height: auto; object-fit: contain;
}
.brand-card__initials {
  font-family: 'Geologica', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--accent-text); background: var(--accent-light);
  width: 56px; height: 56px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.brand-card__name {
  font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3;
}
.brand-card__count {
  font-size: 11px; color: var(--text3);
}

.brands-slider {
  --brands-gap: 20px;
  --brands-per-view: 5;
  margin-top: 8px;
}
.brands-slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.brands-slider__viewport:active {
  cursor: grabbing;
}
.brands-slider__viewport::-webkit-scrollbar { display: none; }
.brands-slider__track {
  display: flex;
  gap: var(--brands-gap);
}
.brands-slide {
  flex: 0 0 calc((100% - (var(--brands-per-view) - 1) * var(--brands-gap)) / var(--brands-per-view));
  min-width: 0;
  scroll-snap-align: start;
  box-sizing: border-box;
}
.brands-slider .brand-card {
  width: 100%;
  min-height: 150px;
  padding: 18px 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.brands-slider .brand-card__logo {
  height: 70px;
}
.brands-slider .brand-card__logo img {
  max-width: 100%;
  max-height: 70px;
  filter: grayscale(100%);
  opacity: .75;
  transition: filter .25s ease, opacity .25s ease;
}
.brands-slider .brand-card__name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text2);
  line-height: 1.3;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s ease;
}
.brands-slider .brand-card__city {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--text3);
  line-height: 1.2;
  margin-top: auto;
}
.brands-slider .brand-card__city .icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--accent);
}
.brands-slider .brand-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: none;
}
.brands-slider .brand-card:hover .brand-card__logo img {
  filter: grayscale(0);
  opacity: 1;
}
.brands-slider .brand-card:hover .brand-card__name {
  color: var(--text);
}

.brands-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.brands-slider__nav button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: var(--border2);
  cursor: pointer;
  transition: background .2s ease, width .2s ease, border-radius .2s ease;
}
.brands-slider__nav button:hover {
  background: var(--text3);
}
.brands-slider__nav button.is-active {
  width: 22px;
  border-radius: 4px;
  background: var(--accent);
}

@media (max-width: 1199px) {
  .brands-slider {
    --brands-per-view: 4;
    --brands-gap: 18px;
  }
}
@media (max-width: 899px) {
  .brands-slider {
    --brands-per-view: 3;
    --brands-gap: 16px;
  }
}
@media (max-width: 639px) {
  .brands-slider {
    --brands-per-view: 2;
    --brands-gap: 12px;
  }
  .brands-slider__nav {
    margin-top: 18px;
  }
  .brands-slider .brand-card {
    min-height: 130px;
    padding: 14px 10px;
  }
  .brands-slider .brand-card__logo {
    height: 56px;
  }
  .brands-slider .brand-card__logo img {
    max-height: 56px;
  }
}
.brands-empty { font-size: 15px; color: var(--text2); padding: 40px 0; }

/* ── Single brand archive header ── */
.brand-archive-header {
  display: flex; align-items: center; gap: 28px;
  margin-bottom: 32px;
  padding: 24px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.brand-archive-logo {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  min-width: 140px; max-width: 200px;
}
.brand-archive-logo img { max-height: 90px; width: auto; object-fit: contain; }
.brand-archive-info { flex: 1; }
.brand-archive-title {
  font-family: 'Geologica', sans-serif;
  font-size: 24px; font-weight: 700; margin-bottom: 8px;
}
.brand-archive-desc { font-size: 14px; color: var(--text2); line-height: 1.6; margin-bottom: 8px; }
.brand-archive-count {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: 12px; font-weight: 600; background: var(--accent-light); color: var(--accent-text);
}
.brand-no-products { text-align: center; padding: 60px 20px; color: var(--text2); }
.brand-no-products p { margin-bottom: 20px; font-size: 16px; }

/* ══ Responsive ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-archive-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .post-author-box { flex-direction: column; }
}
@media (max-width: 400px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Temporarily hidden: login button & language switcher ── */
.h-btn--login { display: none !important; }
.nav-lang     { display: none !important; }


/* ── Wishlist drawer ──────────────────────────────────────── */
#wishlist-drawer {
  position: fixed; inset: 0; z-index: 400;
  pointer-events: none; visibility: hidden;
  transition: visibility 0s .28s;
}
#wishlist-drawer.is-open {
  pointer-events: auto; visibility: visible;
  transition: visibility 0s 0s;
}
.wishlist-drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0; transition: opacity .25s;
}
#wishlist-drawer.is-open .wishlist-drawer__overlay { opacity: 1; }
.wishlist-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(380px, 100vw);
  background: var(--surface); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .28s;
  overflow: hidden;
}
#wishlist-drawer.is-open .wishlist-drawer__panel { transform: translateX(0); }
body.wishlist-open { overflow: hidden; }
.wishlist-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.wishlist-drawer__title { font-size: 17px; font-weight: 600; margin: 0; }
.wishlist-drawer__close {
  background: none; border: none; cursor: pointer; color: var(--text3);
  padding: 4px; display: flex; align-items: center;
}
.wishlist-drawer__close:hover { color: var(--text); }
.wishlist-drawer__body {
  flex: 1; overflow-y: auto; padding: 16px 20px;
}
.wishlist-drawer__foot {
  padding: 14px 20px; border-top: 1px solid var(--border); flex-shrink: 0;
}
.wishlist-drawer__empty,
.wishlist-drawer__loading {
  text-align: center; color: var(--text3); padding: 40px 0; font-size: 14px;
}
.wishlist-drawer__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.wishlist-drawer__item {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.wishlist-drawer__item:last-child { border-bottom: none; padding-bottom: 0; }
.wishlist-drawer__thumb img {
  width: 60px; height: 60px; object-fit: contain;
  border-radius: 6px; border: 1px solid var(--border);
}
.wishlist-drawer__info { flex: 1; min-width: 0; }
.wishlist-drawer__name {
  display: block; font-size: 13px; font-weight: 500; color: var(--text);
  text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wishlist-drawer__name:hover { color: var(--accent); }
.wishlist-drawer__price { font-size: 13px; color: var(--accent); font-weight: 600; }
.wishlist-drawer__remove {
  flex-shrink: 0; background: none; border: none; cursor: pointer;
  color: var(--text3); padding: 6px; border-radius: 4px;
  transition: color .15s, background .15s;
}
.wishlist-drawer__remove:hover { color: var(--red, #e05); background: #fef2f2; }

/* ── Sticky buy bar (single product) ───────────────────── */
.sp-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,.10);
  z-index: 300;
  transform: translateY(100%);
  transition: transform .25s ease;
}
.sp-sticky-bar.is-visible { transform: translateY(0); }
.sp-sticky-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
}
.sp-sticky-product {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.sp-sticky-img {
  width: 48px; height: 48px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.sp-sticky-title {
  font-size: 14px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sp-sticky-price {
  font-size: 18px; font-weight: 700;
  color: var(--accent);
  white-space: nowrap; flex-shrink: 0;
}
.sp-sticky-qty { flex-shrink: 0; }
.sp-sticky-qty .sp-qty-input { width: 40px; }
@media (max-width: 820px) {
  .sp-sticky-title { display: none; }
  .sp-sticky-inner { gap: 10px; height: 56px; }
}

/* ── Contacts dropdown (like info button) ───────────────── */
.h-contacts-wrap { position: relative; }
.contacts-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 210;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 280px;
  padding: 12px 0;
}
.contacts-dropdown.is-open { display: block; }
.contacts-dropdown__body {
  display: flex; flex-direction: column; gap: 0;
}
.contacts-item {
  display: flex; align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  color: var(--text2);
  transition: color .15s, background .15s;
}
.contacts-item:hover {
  background: var(--surface2);
  color: var(--accent);
}
.contacts-item__icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: currentColor;
  flex-shrink: 0;
}
.contacts-item__icon svg {
  width: 20px; height: 20px;
}
.contacts-item__info {
  flex: 1;
  display: flex; flex-direction: column; gap: 3px;
}
.contacts-item__label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text3);
  transition: color .15s;
}
.contacts-item:hover .contacts-item__label {
  color: var(--accent);
}
.contacts-item__link {
  font-size: 13px; font-weight: 500;
  color: currentColor;
  text-decoration: none;
  transition: color .15s;
}
.contacts-item__link:hover { color: var(--accent); }
.contacts-messengers {
  display: flex; gap: 8px;
  align-items: center;
  padding-top: 2px;
}
.contacts-messenger {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface2);
  color: var(--text2);
  transition: all .15s;
  text-decoration: none;
  border: 1px solid var(--border2);
}
.contacts-messenger:hover {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
  transform: scale(1.05);
}
.contacts-messenger svg {
  width: 14px; height: 14px;
}
