/* =============================================================
   SITE HEADER
   ============================================================= */

:root {
  --accent:        #008faa;
  --header-height: 72px;
}

/* ── Скидання старих navbar-стилів ───────────────────────────── */
nav.site-header.navbar {
  background:  #ffffff !important;
  box-shadow:  0 2px 12px rgba(0,0,0,0.08) !important;
  padding:     0 !important;
  min-height:  var(--header-height);
}

/* ── Внутрішній flex-рядок ───────────────────────────────────── */
.site-header__inner {
  display:     flex;
  align-items: center;
  gap:         24px;
  padding:     0 24px;
  min-height:  var(--header-height);
  flex-wrap:   nowrap;
  width:       100%;
}

/* ── Логотип ─────────────────────────────────────────────────── */
.site-header__logo {
  flex-shrink: 0;
  padding:     12px 20px 12px 0;
  display:     block;
}
.site-header__logo img {
  display: block;
  width:   170px;
  height:  auto;
}

/* ── Телефони ────────────────────────────────────────────────── */
.site-header__phones {
  display:     flex;
  align-items: center;
  gap:         20px;
  flex-shrink: 0;
}
.site-header__phone {
  font-family:     "Onest", sans-serif;
  font-size:       15px;
  font-weight:     500;
  color:           #111111 !important;
  text-decoration: none;
  white-space:     nowrap;
  transition:      color 0.2s;
}
.site-header__phone:hover {
  color: var(--accent) !important;
}

/* ── Права частина (міні-меню + мови + бургер) ───────────────── */
.site-header__right {
  display:     flex;
  align-items: center;
  gap:         8px;
  margin-left: auto;
  flex-shrink: 0;
}

/* ── Міні-меню ───────────────────────────────────────────────── */
.site-header__mini-nav {
  display:        flex;
  flex-direction: row;
  align-items:    center;
  list-style:     none;
  margin:         0;
  padding:        0;
  gap:            4px;
}
.site-header__mini-nav li {
  list-style: none;
}
.site-header__mini-nav li a {
  font-family:     "Onest", sans-serif;
  font-size:       16px;
  font-weight:     500;
  color:           var(--accent) !important;
  text-decoration: none;
  padding:         6px 12px;
  white-space:     nowrap;
  display:         block;
  transition:      opacity 0.2s;
}
.site-header__mini-nav li a:hover {
  opacity: 0.7;
}
.site-header__mini-nav li.current-menu-item > a {
  font-weight: 700;
}

/* ── Перемикач мов ───────────────────────────────────────────── */
.site-header__langs {
  display:        flex;
  flex-direction: row;
  align-items:    center;
  list-style:     none;
  margin:         0;
  padding:        0;
  gap:            2px;
  flex-shrink:    0;
}
.site-header__langs li {
  list-style: none;
}
.site-header__langs li a {
  font-family:     "Onest", sans-serif;
  font-size:       14px;
  font-weight:     500;
  color:           var(--accent) !important;
  text-decoration: none;
  padding:         4px 8px;
  white-space:     nowrap;
  transition:      opacity 0.2s;
}
.site-header__langs li.current > a {
  font-weight: 700;
}
.site-header__langs li a:hover {
  opacity: 0.7;
}

/* ── Бургер — завжди видимий ─────────────────────────────────── */
.site-header__burger {
  display:          flex;
  flex-direction:   column;
  justify-content:  center;
  align-items:      center;
  gap:              5px;
  width:            50px;
  height:           40px;
  padding:          5px;
  background: linear-gradient(90deg, #55D0E7, #027F96);
  border:           none !important;
  border-radius:    12px !important;
  box-shadow:       none !important;
  flex-shrink:      0;
  cursor:           pointer;
  transition:       background 0.2s;
  margin-left: 20px;
}
.site-header__burger:focus,
.site-header__burger:active {
  outline:    none !important;
  box-shadow: none !important;
}
.site-header__burger-line {
  display:        block;
  width:          22px;
  height:         2px;
  background:     #ffffff;
  border-radius:  2px;
  transition:     all 0.3s ease;
  pointer-events: none;
}
/* Анімація бургера → хрестик */
.site-header__burger.is-active .site-header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__burger.is-active .site-header__burger-line:nth-child(2) {
  opacity: 0;
}
.site-header__burger.is-active .site-header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Адаптив: приховати телефони та міні-меню на < 576px ──────── */
@media (max-width: 575.98px) {
  .site-header__phones {
    display: none;
  }
  .site-header__mini-nav {
    display: none;
  }
  .site-header__inner {
    gap: 12px;
  }
}


/* =============================================================
   SIDEBAR — повне меню виїжджає справа
   ============================================================= */

.site-sidebar {
  position:   fixed;
  top:        0;
  right:      0;
  width:      340px;
  max-width:  100vw;
  height:     100%;
  background: #ffffff;
  z-index:    9999;
  box-shadow: -4px 0 32px rgba(0,0,0,0.15);
  transform:  translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.site-sidebar.is-open {
  transform: translateX(0);
}

.site-sidebar__inner {
  display:        flex;
  flex-direction: column;
  gap:            15px;
  padding:        28px 28px 40px;
  min-height:     100%;
  text-align: center;
}

/* ── Кнопка закрити ──────────────────────────────────────────── */
.site-sidebar__close {
  display:          flex;
  align-items:      center;
  justify-content:  center;
  width:            40px;
  height:           40px;
  background:       transparent;
  border:           none;
  cursor:           pointer;
  padding:          0;
  align-self:       flex-end;
  flex-shrink:      0;
}
.site-sidebar__close span {
  display:        block;
  width:          22px;
  height:         2px;
  background:     #111111;
  border-radius:  2px;
  position:       absolute;
}
.site-sidebar__close span:first-child {
  transform: rotate(45deg);
}
.site-sidebar__close span:last-child {
  transform: rotate(-45deg);
}

/* ── Логотип у сайдбарі ──────────────────────────────────────── */
.site-sidebar__logo {
  display:     block;
  flex-shrink: 0;
}
.site-sidebar__logo img {
  display: block;
  width:   130px;
  height:  auto;
}

/* ── Меню у сайдбарі ─────────────────────────────────────────── */
.site-sidebar__nav {
  list-style:     none;
  margin:         0;
  padding:        0;
  display:        flex;
  flex-direction: column;
  gap:            0;
  flex:           1;
}
.site-sidebar__nav li {
  list-style: none;
  border-bottom: 1px solid #f0f0f0;
}
.site-sidebar__nav li:first-child {
  border-top: 1px solid #f0f0f0;
}
.site-sidebar__nav li a {
  display:         block;
  font-family:     "Onest", sans-serif;
  font-size:       16px;
  font-weight:     500;
  color:           #111111 !important;
  text-decoration: none;
  padding:         14px 4px;
  transition:      color 0.2s;
}
.site-sidebar__nav li a:hover {
  color: var(--accent) !important;
}
.site-sidebar__nav li.current-menu-item > a {
  color:       var(--accent) !important;
  font-weight: 700;
}

/* вкладені пункти */
.site-sidebar__nav .sub-menu {
  list-style:  none;
  padding:     0 0 0 16px;
  margin:      0;
}
.site-sidebar__nav .sub-menu li {
  border-bottom: none;
  border-top:    none;
}
.site-sidebar__nav .sub-menu li a {
  font-size: 14px;
  padding:   8px 4px;
  color:     #555555 !important;
}
.site-sidebar__nav .sub-menu li a:hover {
  color: var(--accent) !important;
}

/* ── Телефони у сайдбарі ─────────────────────────────────────── */
.site-sidebar__phones {
  display:        flex;
  flex-direction: column;
  gap:            5px;
  margin-top: auto;
}
.site-sidebar__phone {
  font-family:     "Onest", sans-serif;
  font-size:       16px;
  font-weight:     600;
  color:           #111111 !important;
  text-decoration: none;
  transition:      color 0.2s;
}
.site-sidebar__phone:hover {
  color: var(--accent) !important;
}
.site-sidebar__phones_title {
  font-family:     "Onest", sans-serif;
  font-size:       16px;
  font-weight:     600;
  color:           var(--accent) !important;
  text-decoration: none;
  transition:      color 0.2s;
  text-decoration: underline;
  margin-bottom: 0 !important;
}

/* ── Мови у сайдбарі ─────────────────────────────────────────── */
.site-sidebar__langs {
  display:    flex;
  flex-direction: row;
  gap:        8px;
  list-style: none;
  margin:     0;
  padding:    0;
}
.site-sidebar__langs li {
  list-style: none;
}
.site-sidebar__langs li a {
  font-family:     "Onest", sans-serif;
  font-size:       14px;
  font-weight:     500;
  color:           var(--accent) !important;
  text-decoration: none;
  padding:         4px 10px;
  border:          1px solid var(--accent);
  border-radius:   6px;
  transition:      background 0.2s, color 0.2s;
}
.site-sidebar__langs li.current > a {
  background: var(--accent);
  color:      #ffffff !important;
}

/* ── Соцмережі у сайдбарі ────────────────────────────────────── */
.site-sidebar__socials {
  display:    flex;
  flex-direction: row;
  gap:        12px;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
  margin: auto;
}

.site-sidebar__social {
  display:         flex;
  align-items:     center;
  justify-content: center;
  width:           44px;
  height:          44px;
  border-radius:   12px;
  text-decoration: none;
  transition:      transform 0.2s, opacity 0.2s;
  flex-shrink:     0;
  color:           #ffffff;
}
.site-sidebar__social svg {
  width:  26px;
  height: 26px;
  display: block;
}
.site-sidebar__social--viber svg {
  width:  30px;
  height: 30px;
}
.site-sidebar__social:hover {
  transform: scale(1.08);
  opacity:   0.88;
}

.site-sidebar__social--telegram  { background: #29a8eb; }
.site-sidebar__social--viber     { background: #7b519d; }
.site-sidebar__social--whatsapp  { background: #25d366; }

/* ── Overlay ─────────────────────────────────────────────────── */
.site-sidebar__overlay {
  position:   fixed;
  inset:      0;
  background: rgba(0,0,0,0.45);
  z-index:    9998;
  opacity:    0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.site-sidebar__overlay.is-visible {
  opacity:    1;
  visibility: visible;
}


/* banners slider — стилі перенесено в styles.css */


/* =============================================================
   HERO SECTION — перша секція головної
   ============================================================= */

.hero-section {
  background:  linear-gradient(to bottom, #000000 0%, #444444 100%);
  padding:     100px 0 30px;
  min-height:  200px;
  display:     flex;
  align-items: center;
}

.hero-section__inner {
  display:         flex;
  align-items:     flex-end;
  justify-content: space-between;
  gap:             40px;
  flex-wrap:       wrap;
}

/* ── Заголовок і текст ───────────────────────────────────────── */
.hero-section__content {
  flex: 1 1 380px;
}

.hero-section__title {
  color:         #ffffff;
  font-size:     clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight:   400;
  line-height:   1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 37px;
  margin: 10px 0 30px 0;
}

.hero-section__text {
  color:         var(--accent);
  font-size:     20px;
  line-height:   1.3;
  margin-bottom: 0;
  font-weight:   300;
}

/* ── Кнопки ──────────────────────────────────────────────────── */
.hero-section__actions {
  display:     flex;
  align-items: center;
  gap:         16px;
  flex-shrink: 0;
  flex-wrap:   wrap;
}

.hero-btn {
  display:         inline-flex;
  align-items:     center;
  gap:             10px;
  padding:         11px 22px;
  border-radius:   50px;
  font-family:     "Onest", sans-serif;
  font-size:       16px;
  font-weight:     500;
  text-decoration: none;
  white-space:     nowrap;
  transition:      opacity 0.2s, transform 0.2s;
}
.hero-btn:hover {
  opacity:         0.85;
  transform:       translateY(-1px);
  text-decoration: none;
}

.hero-btn__arrow {
  width:       12px;
  height:      12px;
  flex-shrink: 0;
}

/* Кнопка 1: білий фон, бірюзові текст і обводка */
.hero-btn--outline {
  background-color: #ffffff;
  border:     solid 2px var(--accent);
  color:            var(--accent) !important;
}
.hero-btn--outline .hero-btn__arrow path {
  stroke: var(--accent);
}
.hero-btn-bl-border {
  border: var(--accent) 2px solid !important;
  background: #ffffffd5 !important;
}

/* Кнопка 2: бірюзовий фон, білий текст і обводка */
.hero-btn--filled {
  background: linear-gradient(90deg, #55D0E7, #027F96);
  border-color:     #ffffff;
  color:            #ffffff !important;
}
.hero-btn--filled .hero-btn__arrow path {
  stroke: #ffffff;
}

/* ── Адаптив ─────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .hero-section {
    padding: 100px 0 30px 0 !important;
  }
  .hero-section__inner {
    flex-direction: column;
    align-items:    flex-start;
    gap:            0px;
  }
  .hero-section__actions .hero-btn {
    padding: 12px;
    font-size: 15px;
  }
  .hero-section__actions svg {
    width: 20px;
    height: 20px;
  }
  .hero-btn {
    flex:            1;
    justify-content: center;
  }
}


/* =============================================================
   NEWS ARCHIVE PAGE  (home.php — Сторінка записів)
   ============================================================= */


/* ── Сітка постів ─────────────────────────────────────────────── */
.news-archive__grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   28px;
}

/* ── Картка новини (розширена версія) ───────────────────────────── */
.news-card--large {
  border-radius: 8px;
  overflow:      hidden;
  background:    #ffffff;
  box-shadow:    0 2px 16px rgba(0, 0, 0, 0.07);
  transition:    transform 0.28s ease, box-shadow 0.28s ease;
  display:       flex;
  flex-direction: column;
}

.news-card--large:hover {
  transform:  translateY(-5px);
  box-shadow: 0 10px 32px rgba(2, 127, 150, 0.15);
}

/* Зображення */
.news-card--large .news-card__img {
  width:     100%;
  height:    220px;
  overflow:  hidden;
  flex-shrink: 0;
  background: #f0f0f2;
}

.news-card--large .news-card__img img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
  transition: transform 0.5s ease;
}

.news-card--large:hover .news-card__img img {
  transform: scale(1.04);
}

.news-card--large .news-card__img--empty {
  background: linear-gradient(135deg, #f0f0f2 0%, #e1e1e5 100%);
}

/* Тіло картки */
.news-card--large .news-card__body {
  display:        flex;
  flex-direction: column;
  flex:           1;
  padding:        24px 24px 28px;
  gap:            12px;
}

/* Мета: дата + категорія */
.news-card__meta {
  align-items: start;
  gap:         12px;
  flex-wrap:   wrap;
}

.news-card__date {
  font-size:   13px;
  font-weight: 500;
  color:       #848484;
  font-family: "Onest", sans-serif;
}

.news-card__cat {
  font-size:    15px;
  font-weight:  800;
  color:        var(--accent);
  padding:      3px 10px 0px 0px;
  border-radius: 50px;
  font-family:  "Onest", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}


/* Заголовок */
.news-card--large .news-card__title {
  font-family:   "Onest-Medium", sans-serif;
  font-size:     20px;
  font-weight:   600;
  line-height:   1.25;
  color:         #111111;
  margin:        0;
  transition:    color 0.2s;
}

.news-card--large:hover .news-card__title {
  color: var(--accent);
}

/* Анотація */
.news-card--large .news-card__excerpt {
  font-size:   15px;
  color:       #6e6e73;
  line-height: 1.55;
  margin:      0;
  flex:        1;
}

/* Кнопка */
.news-card--large .news-card__btn {
  align-self:   flex-start;
  font-size:    14px;
  padding:      8px 18px;
  margin-top:   4px;
  border:       2px solid var(--accent);
  border-radius: 50px;
  gap:          8px;
}

.news-archive-hero.hero-section {
  background: #ffffff;
}

.news-archive-hero .hero-section__title {
  color: #444444;

}

/* ── Архів тегу ───────────────────────────────────────────────── */
.news-tag-archive__header {
  max-width:     760px;
  margin-bottom: 32px;
}

.news-tag-archive__eyebrow {
  margin:         0 0 8px;
  color:          var(--accent);
  font-family:    "Onest", sans-serif;
  font-size:      14px;
  font-weight:    800;
  line-height:    1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.news-tag-archive__title {
  margin:      0;
  color:       #111111;
  font-family: "Onest-Medium", sans-serif;
  font-size:   38px;
  font-weight: 600;
  line-height: 1.15;
}

.news-tag-archive__description {
  margin-top:  14px;
  color:       #6e6e73;
  font-size:   16px;
  line-height: 1.6;
}

.news-tag-archive__description p:last-child {
  margin-bottom: 0;
}

/* ── Пагінація ─────────────────────────────────────────────────── */
.news-archive__pagination {
  display:         flex;
  justify-content: center;
  margin-top:      56px;
}

.news-archive__pagination .page-numbers {
  list-style: none;
  display:    flex;
  align-items: center;
  gap:        6px;
  margin:     0;
  padding:    0;
}

.news-archive__pagination .page-numbers li {
  list-style: none;
}

.news-archive__pagination .page-numbers li a,
.news-archive__pagination .page-numbers li span {
  display:         flex;
  align-items:     center;
  justify-content: center;
  width:           40px;
  height:          40px;
  border-radius:   50%;
  font-family:     "Onest", sans-serif;
  font-size:       15px;
  font-weight:     500;
  color:           #111111;
  text-decoration: none;
  background:      #f0f0f2;
  transition:      background 0.2s, color 0.2s;
  border:          2px solid transparent;
}

.news-archive__pagination .page-numbers li a:hover {
  background: var(--accent);
  color:      #ffffff;
}

.news-archive__pagination .page-numbers li span.current {
  background:   linear-gradient(90deg, #55D0E7, #027F96);
  color:        #ffffff;
  border-color: transparent;
}

/* Стрілки */
.news-archive__pagination .page-numbers li a.prev,
.news-archive__pagination .page-numbers li a.next {
  font-size: 20px;
  font-weight: 400;
}

/* ── Порожній стан ─────────────────────────────────────────────── */
.news-archive__empty {
  text-align:  center;
  color:       #848484;
  font-size:   18px;
  padding:     60px 0;
}

/* ── Адаптив ───────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .news-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575.98px) {
  .news-archive__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .news-card--large .news-card__img {
    height: 180px;
  }

  .news-card--large .news-card__body {
    padding: 18px 18px 22px;
  }

  .news-card--large .news-card__title {
    font-size: 18px;
  }

  .news-card--large .news-card__excerpt {
    font-size:   12px;
  }

  .home-news-section__grid {
    margin-bottom: 30px;
  }

  .news-tag-archive__header {
    margin-right: 10px;
    margin-bottom: 24px;
    margin-left:  10px;
  }

  .news-tag-archive__title {
    font-size: 28px;
  }

  .news-tag-archive__description {
    font-size: 14px;
  }
}


/* =============================================================
   SINGLE POST PAGE  (single.php — Сторінка новини)
   ============================================================= */

/* ── Hero ─────────────────────────────────────────────────────── */
.news-single-hero.hero-section {
  align-items:    flex-end;
}

.news-single-hero__inner {
  display:        flex;
  flex-direction: column;
  gap:            20px;
}

/* Хлібні крихти */
.news-single__breadcrumbs {
  display:     flex;
  align-items: center;
  gap:         6px;
  flex-wrap:   wrap;
  font-family: "Onest", sans-serif;
  font-size:   14px;
  font-weight: 500;
}

.news-single__breadcrumbs a {
  color:           rgba(255,255,255,0.6);
  text-decoration: none;
  transition:      color 0.2s;
}

.news-single__breadcrumbs a:hover {
  color: #ffffff;
}

.news-single__breadcrumbs span:last-child {
  color: rgba(255,255,255,0.4);
  overflow:     hidden;
  text-overflow: ellipsis;
  white-space:  nowrap;
  max-width:    260px;
}

.news-single__breadcrumbs-sep {
  color: rgba(255,255,255,0.3);
}

/* Мета */
.news-single__meta {
  display:     flex;
  align-items: center;
  gap:         10px;
  flex-wrap:   wrap;
}

.news-single__meta .news-card__subcat {
  color: #ffffffa8;
  background: #ffffff38;

}

/* Заголовок */
.news-single__title {
  color:       #ffffff;
  font-family: "Onest-Medium", sans-serif;
  font-size:   36px;
  font-weight: 600;
  line-height: 1.15;
  margin:      0;
  letter-spacing: -0.02em;
}

/* ── Основний лейаут ──────────────────────────────────────────── */
.news-single-main {
  padding: 56px 0 80px;
}

.news-single__layout {
  margin:    0 auto;
}

/* ── Обкладинка ───────────────────────────────────────────────── */
.news-single__cover {
  width:         100%;
  overflow:      hidden;
  margin-bottom: 40px;
}

.news-single__cover img {
  display:    block;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
}

/* ── Контент статті ───────────────────────────────────────────── */
.news-single__content {
  font-family: "Onest", sans-serif;
  font-size:   17px;
  line-height: 1.75;
  color:       #1d1d1f;
}

.news-single__content h2 {
  font-family:   "Onest-Medium", sans-serif;
  font-size:     26px;
  font-weight:   600;
  line-height:   1.2;
  color:         #111111;
  margin:        40px 0 16px;
  letter-spacing: -0.02em;
}

.news-single__content h3 {
  font-family: "Onest-Medium", sans-serif;
  font-size:   22px;
  font-weight: 600;
  line-height: 1.25;
  color:       #111111;
  margin:      32px 0 12px;
}

.news-single__content p {
  margin: 0 0 20px;
}

.news-single__content a {
  color:           var(--accent);
  text-decoration: underline;
  transition:      opacity 0.2s;
}

.news-single__content a:hover {
  opacity: 0.75;
}

.news-single__content img {
  display:       block;
  max-width:     100%;
  height:        auto;
  border-radius: 12px;
  margin:        28px 0;
  box-shadow:    0 2px 20px rgba(0,0,0,0.08);
}

.news-single__content ul,
.news-single__content ol {
  padding-left: 24px;
  margin:       0 0 20px;
}

.news-single__content li {
  margin-bottom: 6px;
}

.news-single__content blockquote {
  border-left:  4px solid var(--accent);
  padding:      16px 20px;
  margin:       28px 0;
  background:   rgba(41, 204, 235, 0.06);
  border-radius: 0 12px 12px 0;
  color:        #444;
  font-style:   italic;
}

.news-single__content blockquote p {
  margin: 0;
}

/* ── Рекомендовані товари ────────────────────────────────────── */
.recommended-products {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(29, 29, 31, 0.12);
}

.product-category-products {
  margin-top: 0;
  padding: 50px 0;
  border-top: 0;
  background: #ffffff;
}

.recommended-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.recommended-products__title {
  margin: 0;
  color: #1d1d1f;
  font-family: "Onest-Medium", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.recommended-products__controls {
  display: none;
  position: absolute;
  z-index: 4;
  top: 50%;
  right: -20px;
  left: -20px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transform: translateY(-50%);
  pointer-events: none;
}

.recommended-products.is-scrollable .recommended-products__controls {
  display: flex;
}

.recommended-products__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(29, 29, 31, 0.14);
  border-radius: 50%;
  background: #ffffff;
  color: #1d1d1f;
  line-height: 1;
  pointer-events: auto;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.recommended-products__arrow:hover,
.recommended-products__arrow:focus-visible {
  border-color: rgba(82, 207, 229, 0.65);
  color: #008aa4;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(82, 207, 229, 0.18);
}

.recommended-products__arrow:focus-visible {
  outline: 2px solid rgba(82, 207, 229, 0.35);
  outline-offset: 2px;
}

.recommended-products__slider {
  position: relative;
}

.recommended-products__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.recommended-products__grid.is-scrollable {
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 80px) / 5);
  grid-template-columns: none;
  padding-top: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.recommended-products__grid.is-scrollable::-webkit-scrollbar {
  display: none;
}

.recommended-products__grid.is-scrollable .recommended-product-card {
  min-width: 0;
  scroll-snap-align: start;
}

.recommended-products__footer {
  display: flex;
  margin-top: 28px;
}
.recommended-products__footer .hero-btn {
  flex: 0 !important;
}

.recommended-products__catalog-btn {
  width: fit-content;
}

.categories.recommended-products__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.categories.recommended-products__grid > div {
  display: flex;
  min-width: 0;
}

.recommended-product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 16px;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.recommended-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(82, 207, 229, 0.55);
  box-shadow: 0 12px 30px rgba(82, 207, 229, 0.18);
}

.recommended-product-card .item {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
}

.recommended-product-card__image,
.recommended-product-card .item > img {
  display: flex;
  position: relative;
  width: 100%;
  height: 190px;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 10px;
}

.recommended-product-card__image img,
.recommended-product-card .item > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
}

.recommended-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  min-height: 82px;
  padding: 18px;
}
.recommended-product-card .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  height: 98px;
  align-items: start;
  padding: 14px 16px 18px;
  overflow: hidden;
}

.recommended-product-card__title,
.recommended-product-card .title h5 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #1d1d1f;
  font-family: "Onest-Medium", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.recommended-product-card__title {
  font-weight: 500;
}

.recommended-product-card__link {
  margin-top: auto;
  align-self: flex-start;
  background: #f5f5f7;
}

/* ── Бейджі товарів ─────────────────────────────────────────── */
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.product-badges--card {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  left: 12px;
  gap: 6px;
  margin: 0;
  pointer-events: none;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 26px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--product-badge-bg, #008aa4);
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.12);
  color: var(--product-badge-color, #ffffff);
  font-family: "Onest-Medium", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.product-badges--single {
  margin-bottom: 10px;
}

.product-badges--single .product-badge {
  min-height: 30px;
  padding: 6px 12px;
  font-size: 13px;
}

/* ── Акційні позначки товарів ───────────────────────────────── */
.product-promo-labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  max-width: 100%;
  margin: 0;
  color: #008aa4;
  font-family: "Onest-Medium", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.product-promo-label {
  display: inline;
  color: var(--product-promo-label-color, #008aa4);
  overflow-wrap: anywhere;
}

.product-promo-label:not(:last-child)::after {
  content: "|";
  display: inline-block;
  margin: 0 3px;
  color: rgba(17, 17, 17, 0.32);
}
.product .product-promo-label:not(:last-child)::after {
  margin: 0 5px;
}

.product-promo-labels--single {
  margin: -2px 0 10px;
  font-size: 15px;
}

.recommended-product-card .title .product-promo-labels {
  justify-content: center;
  text-align: center;
}

.recommended-product-card .title .product-promo-labels {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

/* ── Можна протестувати в Шоу-Румі ───────────────────────────── */
.product-showroom-test {
  margin-top: 20px;
}

.product-medical-areas + .product-showroom-test,
.product-showroom-test + .product-offers,
.product-showroom-test + .product-doctor-reviews {
  margin-top: 20px;
}

.product-showroom-test__link {
  display: block;
  padding: 18px;
  border: 1px solid rgba(0, 138, 164, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-showroom-test__link:hover,
.product-showroom-test__link:focus {
  border-color: rgba(0, 138, 164, 0.42);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
  transform: translateY(-1px);
}

.product-showroom-test h2 {
  margin: 0;
  padding: 0 0 18px;
  color: #111111;
  font-size: 19px;
  line-height: 120%;
}

.product-showroom-test__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  border-radius: 8px;
  object-fit: contain;
  background: #ffffff;
}

.product-showroom-test__description {
  margin-top: 14px;
}

.product-showroom-test__description p {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 15px;
  line-height: 155%;
}

.product-showroom-test__description p + p {
  margin-top: 8px;
}

.product-showroom-test__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 16px;
  padding: 11px 18px;
  border-radius: 50px;
  background: linear-gradient(90deg, #55D0E7, #027F96);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
}

/* ── Ми пропонуємо ───────────────────────────────────────────── */
.product-offers {
  margin-top: 20px;
  padding: 18px;
  border-radius: 8px;
  background: #ffffff;
}

.product-medical-areas + .product-offers {
  margin-top: 20px;
}

.product-offers + .product-doctor-reviews {
  margin-top: 20px;
}

.product-offers h2 {
  margin: 0;
  padding: 0 0 18px;
  color: #111111;
  font-size: 28px;
  line-height: 120%;
}

.product-offers__list {
  display: flex;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.product-offers__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 8px;
  background: var(--product-offer-bg, #ffffff);
  color: var(--product-offer-color, #008aa4);
  font-family: "Onest-Medium", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.product-offers__icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
}

.product-offers__title {
  min-width: 0;
  overflow-wrap: anywhere;
}

/* ── Теги ─────────────────────────────────────────────────────── */
.news-single__tags {
  display:    flex;
  flex-wrap:  wrap;
  gap:        8px;
}

.news-single__tag {
  font-family:     "Onest", sans-serif;
  font-size:       13px;
  font-weight:     500;
  color:           var(--accent);
  background:      rgba(41, 204, 235, 0.08);
  border:          1px solid rgba(41, 204, 235, 0.25);
  border-radius:   50px;
  padding:         5px 14px;
  text-decoration: none;
  transition:      background 0.2s, color 0.2s;
}

.news-single__tag:hover {
  background: var(--accent);
  color:      #ffffff;
}

/* ── Навігація між постами ────────────────────────────────────── */
.news-single__nav {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   16px;
  margin-top:            48px;
  padding-top:           28px;
  border-top:            1px solid #e8e8ed;
}

.news-single__nav-item {
  display:         flex;
  flex-direction:  column;
  gap:             6px;
  padding:         18px 20px;
  border-radius:   12px;
  background:      #f5f5f7;
  text-decoration: none;
  transition:      background 0.22s ease, transform 0.22s ease;
}

.news-single__nav-item:hover {
  background: rgba(41, 204, 235, 0.08);
  transform:  translateY(-2px);
}

.news-single__nav-item--next {
  text-align: right;
}

.news-single__nav-label {
  font-family: "Onest", sans-serif;
  font-size:   13px;
  font-weight: 500;
  color:       var(--accent);
}

.news-single__nav-title {
  font-family:   "Onest-Medium", sans-serif;
  font-size:     15px;
  font-weight:   600;
  color:         #111111;
  line-height:   1.3;
  display:       -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp:    2;
  -webkit-box-orient: vertical;
  overflow:      hidden;
}

/* ── Секція "Інші новини" ─────────────────────────────────────── */
.news-single-related {
  background: #f5f5f7;
}

/* =============================================================
   PROMOTIONS
   ============================================================= */

.promotions-archive__header {
  margin-bottom: 32px;
}

.promotion-card {
  position: relative;
}

.promotion-card__meta {
  align-items: flex-start;
}

.promotion-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 50px;
  font-family: "Onest", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: #00da00ad;
}

.promotion-status--completed {
  background: #6e6e73b0;
}

.promotion-status--hidden {
  background: #111111;
}

.promotion-card__date,
.promotion-single__period {
  color: rgba(29, 29, 31, 0.62);
}

.promotion-card__countdown {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 4px;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(2, 127, 150, 0.22);
  border-radius: 50px;
  background: #f5f5f7;
  color: #6c757d;
  font-family: "Onest-Medium", sans-serif;
  font-size: 14px;
  line-height: 1;
}

.promotion-single-hero.hero-section {
  padding-bottom: 30px;
}

.promotion-single__meta .news-card__date {
  color: rgba(255, 255, 255, 0.78);
}

.promotion-countdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 520px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.promotion-countdown__label {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Onest", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.promotion-countdown__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.promotion-countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.promotion-countdown__item strong {
  font-family: "Onest-Medium", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.promotion-countdown__item small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Onest", sans-serif;
  font-size: 12px;
  line-height: 1;
}

.promotion-countdown.is-expired,
.promotion-card__countdown.is-expired {
  opacity: 0.65;
}

.promotion-single__cta {
  align-self: flex-start;
}

.promotion-single__cover img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* =============================================================
   EDUCATION
   ============================================================= */

.education-card__details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 12px 0 10px;
}

.education-card__format,
.education-card__category,
.education-single__format {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 50px;
  background: rgba(2, 127, 150, 0.08);
  color: #07bfe1;
  font-family: "Onest-Medium", sans-serif;
  font-size: 13px;
  line-height: 1;
}

.education-status--completed {
  background: #6e6e73b0;
}

.education-status--hidden {
  background: #111111;
}

.education-single__hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  gap: 32px;
  align-items: end;
}

.education-single__hero-content {
  min-width: 0;
}

.education-single__place {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.education-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: start;
}

.education-single__article {
  min-width: 0;
}

.education-single__section h2,
.education-single__info h2,
.education-registration__inner h2 {
  margin: 0 0 18px;
  color: #1d1d1f;
  font-family: "Onest-Medium", sans-serif;
  font-size: 28px;
  line-height: 1.2;
}

.education-single__text {
  color: rgba(29, 29, 31, 0.74);
  font-family: "Onest", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.education-single__text p:last-child {
  margin-bottom: 0;
}

.education-speakers {
  display: block;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(29, 29, 31, 0.06);
  padding: 18px;
}

.education-speaker {
  display: block;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  margin-top: 25px;
}

.education-speaker__photo {
  width: 100%;
  max-width: 320px;
  height: 250px;
  border-radius: 8px;
  object-fit: cover;
  background: #f5f5f7;
}

.education-speaker h3 {
  margin: 0 0 6px;
  color: #1d1d1f;
  font-family: "Onest-Medium", sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.education-speaker p {
  margin: 0;
  color: rgba(29, 29, 31, 0.68);
  font-family: "Onest", sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.education-speaker__role {
  margin-bottom: 8px !important;
  color: #027f96 !important;
  font-family: "Onest-Medium", sans-serif !important;
}

.education-single__aside {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.education-single__info {
  padding: 22px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(29, 29, 31, 0.06);
}

.education-single__info dl {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}

.education-single__info dt {
  margin-bottom: 5px;
  color: rgba(29, 29, 31, 0.52);
  font-family: "Onest", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.education-single__info dd {
  margin: 0;
  color: #1d1d1f;
  font-family: "Onest-Medium", sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

.education-registration {
  background: #f5f5f7;
}

.education-registration__inner {
  max-width: 860px;
  margin: 0 auto;
}

.education-registration__form {
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
}

/* Catalog archive */
.catalog-archive-page {
  overflow: hidden;
  background: #f7f8f8;
  color: #111111;
}

.catalog-archive-hero {
  position: relative;
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 143, 170, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4f7f7 54%, #eaf3f5 100%);
}

.catalog-archive-hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -34% -12%;
  height: 360px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #f7f8f8 72%);
  pointer-events: none;
}

.catalog-archive-hero .container {
  position: relative;
  z-index: 1;
}

.catalog-archive-hero__breadcrumbs {
  margin-bottom: 22px;
}

.catalog-archive-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  min-height: 0;
}

.catalog-archive-hero__content {
  max-width: 980px;
}

.catalog-archive-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 143, 170, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #027f96;
  font-family: "Onest-Medium", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.catalog-archive-hero__content h1 {
  max-width: 760px;
  margin: 0;
  color: #111111;
  font-family: "Onest-Medium", sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.catalog-archive-hero__content p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 17px;
  line-height: 1.55;
}

.catalog-archive-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.catalog-archive-hero__btn {
  gap: 8px;
  min-height: 48px;
  border-radius: 999px;
}

.catalog-archive-hero__btn i {
  font-size: 22px;
  line-height: 1;
}

.catalog-archive-hero__btn--ghost {
  background: rgba(255, 255, 255, 0.7) !important;
}

.catalog-archive-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 820px;
  margin-top: 28px;
}

.catalog-archive-hero__stats div {
  min-height: 86px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(16px);
}

.catalog-archive-hero__stats strong {
  display: block;
  color: #111111;
  font-family: "Onest-Medium", sans-serif;
  font-size: 24px;
  line-height: 1.05;
}

.catalog-archive-hero__stats span {
  display: block;
  margin-top: 7px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 14px;
  line-height: 1.35;
}

.catalog-archive-hero__placeholder,
.catalog-family-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 143, 170, 0.12), rgba(17, 17, 17, 0.04));
  color: var(--accent);
}

.catalog-archive-hero__placeholder i {
  font-size: 58px;
}

.catalog-directory {
  position: relative;
  padding: 46px 0 70px;
  background: #f7f8f8;
}

.catalog-directory__header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.58fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.catalog-directory__header span {
  display: block;
  margin-bottom: 10px;
  color: #027f96;
  font-family: "Onest-Medium", sans-serif;
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
}

.catalog-directory__header h2 {
  margin: 0;
  color: #111111;
  font-family: "Onest-Medium", sans-serif;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

.catalog-directory__header p {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 16px;
  line-height: 1.62;
}

.catalog-directory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.catalog-family-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.07);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.catalog-family-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 143, 170, 0.22);
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.11);
}

.catalog-family-card__main {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  color: inherit;
  text-decoration: none;
}

.catalog-family-card__media {
  position: relative;
  min-height: 150px;
  height: 150px;
  overflow: hidden;
  background: #eef4f5;
}

.catalog-family-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  padding: 14px;
  background: linear-gradient(135deg, #f8fbfb, #edf5f6);
  object-fit: contain;
  transition: transform 0.45s ease;
}

.catalog-family-card:hover .catalog-family-card__media img {
  transform: scale(1.04);
}

.catalog-family-card__placeholder {
  min-height: inherit;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  text-align: center;
}

.catalog-family-card__placeholder i {
  font-size: 34px;
}

.catalog-family-card__placeholder span {
  color: rgba(17, 17, 17, 0.62);
  font-size: 14px;
}

.catalog-family-card__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 16px 16px 14px;
}

.catalog-family-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: auto;
}

.catalog-family-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 8px;
  border: 1px solid rgba(0, 143, 170, 0.18);
  border-radius: 999px;
  background: rgba(0, 143, 170, 0.07);
  color: #027f96;
  font-family: "Onest-Medium", sans-serif;
  font-size: 12px;
  line-height: 1.15;
}

.catalog-family-card__body h2 {
  margin: 22px 0 0;
  color: #111111;
  font-family: "Onest-Medium", sans-serif;
  font-size: 21px;
  line-height: 1.14;
  letter-spacing: 0;
}

.catalog-family-card__description {
  display: -webkit-box;
  margin: 6px 0 0;
  overflow: hidden;
  color: #85858c;
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.catalog-family-card__subtitle {
  display: -webkit-box;
  margin: 10px 0 0;
  overflow: hidden;
  color: rgba(17, 17, 17, 0.62);
  font-size: 14px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-family-card__children {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 0 12px 12px;
}

.catalog-subcategory-tile {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 54px;
  padding: 6px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 8px;
  background: #f8faf9;
  color: #111111;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.catalog-subcategory-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 143, 170, 0.22);
  background: #ffffff;
  color: #111111;
}

.catalog-subcategory-tile__image {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #edf4f5;
  color: var(--accent);
}

.catalog-subcategory-tile__image img {
  width: 100%;
  height: 100%;
  display: block;
  padding: 5px;
  object-fit: contain;
}

.catalog-subcategory-tile__image i {
  font-size: 18px;
}

.catalog-subcategory-tile__name {
  min-width: 0;
  color: inherit;
  font-family: "Onest-Medium", sans-serif;
  font-size: 13px;
  line-height: 1.25;
}

.catalog-family-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: auto 12px 12px;
  padding: 11px 12px;
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
  font-family: "Onest-Medium", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.catalog-family-card__link:hover {
  background: var(--accent);
  color: #ffffff;
}

.catalog-directory__empty {
  padding: 52px 24px;
  border: 1px dashed rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
}

.catalog-directory__empty i {
  color: var(--accent);
  font-size: 42px;
}

.catalog-directory__empty h2 {
  margin: 16px 0 8px;
  color: #111111;
  font-family: "Onest-Medium", sans-serif;
  font-size: 28px;
}

.catalog-directory__empty p {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
}

.catalog-family-card__main:focus-visible,
.catalog-subcategory-tile:focus-visible,
.catalog-family-card__link:focus-visible,
.catalog-archive-hero__btn:focus-visible {
  outline: 2px solid rgba(0, 143, 170, 0.45);
  outline-offset: 3px;
}

/* ── Parent Catalog Category ─────────────────────────────────── */
.group-category-page {
  padding-top: 0;
}

.group-category-layout {
  gap: 32px;
}

.group-category-hero {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 78px;
}

.group-category-hero__media {
  display: flex;
  width: 210px;
  min-height: 150px;
  align-items: center;
  justify-content: center;
}

.group-category-hero__media img {
  display: block;
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  object-position: center;
}

.group-category-hero__media i {
  color: rgba(9, 194, 231, 0.7);
  font-size: 72px;
}

.group-category-hero__content {
  max-width: 760px;
}

.group-category-hero__title {
  margin: 0;
  color: #111111;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.12;
}

.group-category-hero__subtitle {
  margin: 14px 0 0;
  color: #85858c;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

.group-category-hero__description {
  margin-top: 22px;
  color: #111111;
  font-family: "Onest-Medium", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  padding-right: 90px;
}

.group-category-hero__description > :last-child {
  margin-bottom: 0;
}

.group-category-subcategories__title {
  margin: 0 0 18px;
  color: #111111;
  font-family: "Onest-Medium", sans-serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
}

.group-category-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.group-category-card {
  display: flex;
  min-height: 224px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 26px 18px 16px;
  overflow: hidden;
  color: #3f474b;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #fafafa;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.group-category-card:hover {
  transform: translateY(-3px);
  color: #111111;
  border-color: rgba(82, 207, 229, 0.42);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.group-category-card__media {
  display: flex;
  width: 100%;
  height: 130px;
  align-items: center;
  justify-content: center;
}

.group-category-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.group-category-card__media i {
  color: rgba(9, 194, 231, 0.7);
  font-size: 58px;
}

.group-category-card__title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  color: inherit;
  font-family: "Onest-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.group-category-card:focus-visible {
  outline: 2px solid rgba(9, 194, 231, 0.45);
  outline-offset: 3px;
}

.group-category-subcategories__empty {
  margin: 0;
  color: #85858c;
  font-size: 16px;
}

/* ── Catalog Sidebar ─────────────────────────────────────────── */
.catalog-category-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.catalog-category-layout__sidebar {
  position: relative;
}

.catalog-sidebar {
  /* position: sticky; */
  position: static;
  top: 112px;
  padding: 18px;
  border: 1px solid #dfe8eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.06);
}

.catalog-sidebar.s-brand {
  position: static;
}

.catalog-sidebar__title {
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf2f4;
  color: #111111;
  font-family: "Onest-Medium", sans-serif;
  font-size: 22px;
  line-height: 1.3;
}

.catalog-sidebar__section-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: left;
  cursor: default;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.catalog-sidebar__section-toggle i {
  display: none;
  flex: 0 0 auto;
  color: #848484;
  font-size: 18px;
  transition: transform 0.2s ease;
}

.catalog-sidebar__section-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.catalog-sidebar__list,
.catalog-sidebar__children {
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.catalog-sidebar__item {
  border-bottom: 1px solid #edf2f4;
}

.catalog-sidebar__item:last-child {
  border-bottom: none;
}

.catalog-sidebar__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 6px;
  align-items: center;
}

.catalog-sidebar__item.no-children .catalog-sidebar__row {
  grid-template-columns: 1fr;
}

.catalog-sidebar__link {
  display: block;
  color: #3f474b;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.catalog-sidebar__link--parent {
  padding: 10px 10px;
  margin: 4px 0;
  font-family: "Onest-Medium", sans-serif;
  font-size: 15px;
  border-radius: 6px;
}

.catalog-sidebar__link--child {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
}

.catalog-sidebar__link:hover,
.catalog-sidebar__link--child:hover {
  color: #111111;
  background: rgba(9, 194, 231, 0.08);
}

.catalog-sidebar__link.is-active {
  font-family: "Onest-Medium", sans-serif;
  background: rgba(9, 194, 231, 0.12);
}

.catalog-sidebar__link--child.is-active {
  color: var(--accent);
  font-weight: 600;
}
.catalog-sidebar__link span {
  display: inline-block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.3;
}

.catalog-sidebar__link.is-active,
.catalog-sidebar__link.is-active span {
  color: var(--accent);
}

.catalog-sidebar__toggle {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #7b878d;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.catalog-sidebar__toggle:hover {
  background: #f2f7f8;
  color: #111111;
}

.catalog-sidebar__section-toggle:focus-visible,
.catalog-sidebar__toggle:focus-visible,
.catalog-sidebar__link:focus-visible,
.catalog-brand-filter__link:focus-visible {
  outline: 2px solid rgba(9, 194, 231, 0.45);
  outline-offset: 2px;
}

.catalog-sidebar__toggle i {
  transition: transform 0.2s ease;
}

.catalog-sidebar__toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.catalog-sidebar__children {
  margin: 0 0 12px 10px;
  padding: 2px 0 2px 10px;
  border-left: 2px solid #e5f4f7;
}

.catalog-sidebar__children[hidden] {
  display: none;
}

.catalog-attribute-filters {
  border-top: 1px solid #edf2f4;
}

.catalog-brand-filter__title {
  margin: 0 0 10px;
  color: #111111;
  font-family: "Onest-Medium", sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

.catalog-sidebar__filter-toggle {
  cursor: pointer;
  font-size: 18px;
  padding: 9px 10px;
  background: #f7fafb;
}

.catalog-sidebar__filter-toggle:hover {
  color: var(--accent);
  background: #eff8fa;
}

.catalog-sidebar__filter-toggle i {
  display: inline-flex;
}

.catalog-brand-filter__list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-brand-filter__link {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: #3f474b;
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.catalog-brand-filter__link.catalog-brand-filter__title {
  font-size: 18px;
  margin: 0;
}

.catalog-brand-filter__link:hover {
  color: #111111;
  background: rgba(9, 194, 231, 0.08);
}

.catalog-brand-filter__link.is-active {
  color: var(--accent);
  background: rgba(9, 194, 231, 0.12);
  font-family: "Onest-Medium", sans-serif;
  font-weight: 600;
}

.catalog-attribute-filter + .catalog-attribute-filter {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #edf2f4;
}

.education-card__details span {
  border: 1px solid rgba(2, 127, 150, 0.22);
  background: rgba(41, 204, 235, 0.08);
}

.education-registration-section__info {
  min-width: 700px;
}

.education-registration-section__card .hero-btn {
  padding: 20px;
  font-size: 22px;
  font-weight: 600;
  width: 60%;
}

.education-registration-section__card {
  text-align: end;
  margin-top: auto;
}

.wp-video {
  margin-right: auto !important;
  margin-left: auto !important;
}

.about-card .wp-video {
  margin-right: auto !important;
  margin-left: auto !important;
}

.product-medical-area-archive .categories.recommended-products__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-medical-area-archive .recommended-product-card .item {
  padding: 0;
  position: static;
}

.product-medical-area-archive .recommended-product-card .item > img {
  width: 100%;
  max-width: none;
  margin: 0 0 10px;
}

.product-medical-area-archive .recommended-product-card .title {
  position: static;
  bottom: auto;
  width: 100%;
}

.product-medical-area-archive .recommended-product-card .title h5 {
  line-height: 1.35;
}

.single-product .recommended-products {
  background: #ffffff;
  padding-bottom: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(29, 29, 31, 0.12);
}
.recommended-products .product-promo-labels {
  font-size: 12px;
}
.single-product .recommended-products .recommended-products__grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.news-single__layout .recommended-products .recommended-products__grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.single-product .recommended-products .recommended-products__grid.is-scrollable,
.news-single__layout .recommended-products .recommended-products__grid.is-scrollable {
  grid-template-columns: none;
}
.about-card img {
  max-height: 400px;
  object-fit: cover;
}


/* ── Адаптив ───────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .catalog-archive-hero {
    padding-bottom: 0px;
  }

  .catalog-archive-hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    margin: 0 20px;
  }

  .catalog-archive-hero__content {
    max-width: none;
  }

  .catalog-archive-hero__content h1 {
    font-size: 48px;
  }

  .catalog-directory {
    padding-top: 38px;
  }

  .catalog-directory__header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .catalog-directory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-family-card__main {
    grid-template-columns: 1fr;
  }

  .catalog-family-card__media {
    min-height: 150px;
    height: 150px;
  }

  .catalog-category-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .catalog-sidebar {
    position: static;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
  }

  .catalog-sidebar__title {
    margin-bottom: 0;
    font-size: 20px;
    border: none;
    padding-bottom: 0;
  }

  .group-category-hero {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 24px;
    margin-bottom: 46px;
    padding-top: 0;
  }

  .group-category-hero__media {
    width: 160px;
    min-height: 126px;
  }

  .group-category-hero__title {
    font-size: 38px;
  }

  .group-category-hero__description {
    margin-top: 18px;
    font-size: 17px;
  }

  .group-category-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .education-registration-section__info {
    min-width: 0px;
  }

  .education-registration-section__card {
    text-align: center;
  }

  .education-registration-section__card .hero-btn {
    padding: 16px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
  }

  .education-registration-section__title {
    font-size: 28px;
  }

  .catalog-sidebar__section-toggle {
    cursor: pointer;
  }

  .catalog-sidebar__section-toggle i {
    display: inline-flex;
  }

  .catalog-sidebar__mobile-content {
    margin-top: 14px;
  }

  .catalog-brand-filter__list.catalog-sidebar__mobile-content {
    margin-top: 10px;
  }

  .categories.recommended-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
  }

  .recommended-product-card__body {
    min-height: 72px;
    padding: 14px 12px;
  }

  .recommended-product-card .title {
    height: 86px;
    padding: 10px 0px 5px 3px !important;
  }

  .recommended-product-card__image,
  .recommended-product-card .item > img {
    height: 170px;
  }

  .catalog-sidebar__mobile-content.is-mobile-collapsed {
    display: none;
  }

  .recommended-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recommended-products__grid.is-scrollable {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .education-single__hero-row,
  .education-single__layout {
    grid-template-columns: 1fr;
  }
  
  .education-single__hero-row {
    gap: 10px;
  }

  .education-single__aside {
    position: static;
  }

  .education-speakers {
    grid-template-columns: 1fr;
  }
  .catalog-family-card__description {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
}

@media (max-width: 767.98px) {
  .catalog-archive-hero {
    padding-bottom: 0px;
  }

  .catalog-archive-hero__breadcrumbs {
    margin-bottom: 22px;
  }

  .catalog-archive-hero__content h1 {
    font-size: 35px;
    line-height: 1;
  }

  .catalog-archive-hero__content p {
    margin-top: 18px;
    font-size: 15px;
    margin-right: 20px;
  }

  .catalog-archive-hero__actions {
    margin-top: 22px;
    display: grid;
    gap: 10px;
  }

  .catalog-archive-hero__btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    line-height: 16px;
  }

  .catalog-archive-hero__stats {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .catalog-archive-hero__stats div {
    min-height: 78px;
  }

  .catalog-directory {
    padding: 34px 0 54px;
  }

  .catalog-directory__header h2 {
    font-size: 30px;
  }

  .catalog-directory__grid {
    grid-template-columns: 1fr;
  }

  .catalog-family-card__main {
    grid-template-columns: 1fr;
  }

  .catalog-family-card__media {
    min-height: 145px;
    height: 145px;
  }

  .catalog-family-card__body {
    padding: 16px;
  }

  .catalog-family-card__body h2 {
    margin-top: 10px;
    font-size: 22px;
  }

  .catalog-family-card__children {
    grid-template-columns: 1fr;
    padding: 0 12px 12px;
  }

  .catalog-family-card__link {
    margin: auto 12px 12px;
  }

  .news-single-main {
    padding: 36px 0 10px;
  }

  .news-single__cover {
    margin-bottom: 28px;
    border-radius: 8px;
  }

  .news-single__content {
    font-size: 16px;
  }

  .news-single__content h2 { font-size: 22px; }
  .news-single__content h3 { font-size: 19px; }

  .news-single__nav {
    grid-template-columns: 1fr;
  }

  .product-medical-area-archive .categories.recommended-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-single__nav-item--next {
    text-align: left;
  }

  .promotion-countdown {
    max-width: 100%;
  }

  .education-single__section h2,
  .education-single__info h2,
  .education-registration__inner h2 {
    font-size: 24px;
  }

  .catalog-sidebar {
    padding: 10px 20px;
  }

  .catalog-sidebar__title {
    font-size: 19px;
  }

  .catalog-sidebar__link--parent,
  .catalog-brand-filter__link {
    padding-right: 8px;
    padding-left: 8px;
  }

  .catalog-sidebar__children {
    margin-left: 6px;
    padding-left: 8px;
  }

  .group-category-hero {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 34px;
    text-align: center;
  }

  .group-category-hero__media {
    width: 100%;
    min-height: 118px;
    justify-content: center;
  }

  .group-category-hero__media img {
    max-width: 180px;
    max-height: 150px;
  }

  .group-category-hero__title {
    font-size: 34px;
    line-height: 1.15;
  }

  .group-category-hero__subtitle {
    font-size: 15px;
  }

  .group-category-hero__description {
    font-size: 14px;
    line-height: 1.5;
    padding-right: 0px;
  }

  .group-category-subcategories__title {
    font-size: 14px;
  }

  .group-category-card-grid {
    gap: 12px;
  }

  .group-category-card {
    min-height: 205px;
    padding: 26px 14px 14px;
    border-radius: 12px;
  }

  .group-category-card__media {
    height: 118px;
  }

  .group-category-card__title {
    min-height: 40px;
    font-size: 15px;
  }

  .news-card--large .news-card__btn {
    font-size: 13px;
    padding: 8px 13px;
    margin-top: 0 !important;
  }
  .recommended-products.is-scrollable .recommended-products__controls {
    display: none;
  }
  .single-product .recommended-products .recommended-products__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .single-product .recommended-products {
    margin-top: 0px;
  }
  .news-single__layout .recommended-products .recommended-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .single-product .recommended-products .recommended-products__grid.is-scrollable,
  .news-single__layout .recommended-products .recommended-products__grid.is-scrollable {
    grid-template-columns: none;
  }
  .promotion-single__cover img {
    width: auto;
    height: 100%;
    object-fit: contain;
  }
  .news-single__cover img {
    width: auto;
    height: 100%;
    object-fit: contain;
  }
  .product-system-section-anchor {
    padding-top: 30px !important;
  }
}

@media (max-width: 575.98px) {
  .recommended-products {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    margin-top: 0px !important;
  }

  .recommended-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recommended-products__title {
    font-size: 24px;
  }

  .product-badges {
    gap: 6px;
  }

  .product-badges--card {
    top: 8px;
    right: 8px;
    left: 8px;
    gap: 4px;
  }

  .product-badge {
    min-height: 22px;
    padding: 4px 8px;
    font-size: 11px;
  }

  .product-badges--single .product-badge {
    min-height: 26px;
    padding: 5px 10px;
    font-size: 12px;
  }

  .product-promo-labels {
    font-size: 10px;
  }

  .product-promo-labels--single {
    font-size: 13px;
  }

  .product-promo-label:not(:last-child)::after {
    margin: 0;
  }
  .product .product-promo-label:not(:last-child)::after {
    margin: 0 5px;
  }

  .product-promo-label {
    text-align: start;
  }

  .product-showroom-test__link {
    padding: 16px;
  }

  .product-showroom-test h2 {
    padding-bottom: 14px;
    font-size: 21px;
  }

  .product-showroom-test__image {
    max-height: 220px;
  }

  .product-showroom-test__description p {
    font-size: 14px;
  }

  .product-showroom-test__button {
    min-height: 42px;
    margin-top: 14px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .product-offers {
    padding: 16px;
  }

  .product-offers h2 {
    padding-bottom: 14px;
    font-size: 25px;
  }

  .product-offers__item {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 14px;
  }

  .product-offers__icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .news-single__title {
    font-size: 19px;
  }

  .news-single__breadcrumbs span:last-child {
    display: none;
  }

  .promotion-countdown {
    padding: 14px;
    border-radius: 12px;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .promotion-countdown__items {
    gap: 6px;
  }

  .news-single__title {
    font-size: 20px;
  }

  .promotion-countdown__item {
    min-height: 62px;
  }

  .promotion-countdown__item strong {
    font-size: 22px;
  }

  .promotion-countdown__item small {
    font-size: 11px;
  }

  .education-card__details {
    gap: 7px;
  }

  .education-single__place {
    font-size: 16px;
  }

  .education-speaker {
    grid-template-columns: 1fr;
  }

  .education-registration__form {
    padding: 18px;
  }

  .promotion-status {
    font-size: 11px;
    padding: 5px 10px;
  }

  .news-single-hero__inner {
    gap: 12px;
  }

  .hero-btn.hero-btn--filled.promotion-single__cta {
    margin-top: 10px;
  }

  .promotion-card__countdown {
    min-height: 28px;
    padding: 5px 10px;
  }

  .education-card__details{
    margin: 0;
  }

  iframe {
    width: 380px;
    height: 200px;
  }

  .maps iframe {
    width: 100%;
  }

  .news-single-related {
    padding-bottom: 30px;
  }

  .maps {
    padding: 10px;
  }

}
