@font-face {
  font-display: auto;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/rubik-v28-cyrillic_latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* rubik-italic - cyrillic_latin */
@font-face {
  font-display: auto;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Rubik";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/rubik-v28-cyrillic_latin-italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* rubik-700 - cyrillic_latin */
@font-face {
  font-display: auto;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/rubik-v28-cyrillic_latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* rubik-700italic - cyrillic_latin */
@font-face {
  font-display: auto;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Rubik";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/rubik-v28-cyrillic_latin-700italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ══════════════════════════════════════════════════════
   SK1.BY NEW DESIGN CSS
   Извлечено из .new-design/home.html
   ══════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════
   ПАЛИТРА — все цвета проекта в одном месте
══════════════════════════════════════════════════════ */
/* :root {
  --c-green: #737958;
  --c-green2: #aca37e;
  --c-beige: #ddc6b2;
  --c-cream: #efe7dd;
  --c-pink: #e9cbcb;
  --c-pink2: #ff69b4;
  --c-footer: #4d5634;
  --c-text: #2e2e2e;
  --c-muted: #7a7a6e;
} */

html {
  font-weight: 400;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

/* ── Базовые переопределения ─────────────────────── */
body {
  font-family: "Rubik", sans-serif;
  background-color: var(--c-beige);
  margin: 0;
}

.main {
  background: var(--c-cream);
  color: var(--c-text);
  padding: 0 40px 0 40px;
}

svg.icon,
.icon svg {
  width: 1rem;
  height: 1rem;
}

svg.icon path,
.icon svg path {
  fill: currentColor;
}

.icon::before {
  color: inherit;
}

.social-icons a {
  line-height: 1;
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #616b4e;
  color: #eee;
  transition: background-color 0.3s ease;
}
.social-icons a svg {
  color: #eee;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  background-color: #eee;
}
.social-icons a:hover svg {
  color: inherit;
}
.social-icons a svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Брендовые цвета соцсетей */
.icon-instagram {
  color: #e4405f;
}

.icon-telegram {
  color: #0088cc;
}

.icon-vk {
  color: #0077ff;
}

.icon-viber {
  color: #7360f2;
}

.icon-whatsapp {
  color: #25d366;
}

.icon-facebook {
  color: #1877f2;
}

.icon-youtube {
  color: #ff0000;
}

.icon-tiktok {
  color: #000000;
}

.icon-odnoklassniki {
  color: #f97e00;
}

.social-icons {
}

.uk-button {
  font-size: inherit;
  text-transform: none;
}

.fancybox__dialog .uk-radio,
.fancybox__dialog .uk-checkbox {
  display: inline-block;
}

.uk-border-rounded-medium,
.desktop-filter {
  border-radius: 20px;
}

.logo img {
  max-width: 50px;
}

/* Логотип */
.site-logo {
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  line-height: 1;
}
.site-logo:hover {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

/* Навигация по центру */
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}
.site-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.site-nav a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.site-nav a.nav-accent {
  color: var(--c-pink);
}
.site-nav a.nav-accent:hover {
  color: #fff;
}

/* Правая часть: поиск + иконки */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Поиск */
.header-search {
  position: relative;
}
.header-search__icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-muted);
  pointer-events: none;
  display: flex;
}
.header-search__input {
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 7px 14px 7px 34px;
  font-size: 14px;
  color: var(--c-text);
  outline: none;
  transition: width 0.25s;
  width: 100%;
}
.header-search__input::placeholder {
  color: var(--c-muted);
}
.header-search__input:focus {
  outline: none;
}

.top-search-row {
  display: flex;
  gap: 15px;
}

.top-search-results-img img {
  max-width: 50px;
  max-height: 50px;
}

/* Счётчик корзины */
.cart-count,
.msfavorites-total {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--c-pink);
  color: var(--c-text);
  font-size: 9px;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.msfavorites.voted {
  color: var(--c-pink2) !important;
}

.product-item-add-to-favorite {
  padding: 5px;
}

.product-item-add-to-favorite .msfavorites .uk-icon,
.product-images .add-to-favorite .uk-icon {
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  border: 1px solid rgb(0 0 0 / 10%);
  line-height: 1;
}

/* UIkit компоненты - переопределения */
.uk-button-primary {
  background: var(--c-green) !important;
  color: #fff !important;
}
.uk-button-primary:hover {
  opacity: 0.85;
}

/* uk-button-secondary: пудровый (кнопка корзины) */
.uk-button-secondary {
  background: var(--c-pink) !important;
  color: var(--c-text) !important;
  border-radius: 8px;
  padding: 0 !important;
  width: 34px;
  height: 34px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 0;
}
.uk-button-secondary:hover {
  opacity: 0.85;
}

/* uk-label: переопределяем стандартный синий */
.uk-label {
  font-size: 11px;
  border-radius: 20px;
  line-height: 1;
  padding: 4px 9px;
}
.label-sale {
  background: var(--c-green);
  color: #fff;
}
.label-hit {
  background: var(--c-pink);
  color: var(--c-text);
}
.label-new {
  background: var(--c-green2);
  color: #fff;
}

/* uk-card: только img-зона белая, body прозрачный */
.product-card.uk-card {
  background: transparent;
  overflow: hidden;
  transition: transform 0.2s;
}
.product-card.uk-card:hover {
  transform: translateY(-4px);
}

.product-card .uk-card-media-top {
  background: #fff;
}
.product-card .uk-card-media-top img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.product-card .uk-card-body {
  padding: 10px 2px 2px;
  background: transparent;
}
.product-type {
  font-size: 11px;
  color: var(--c-muted);
  margin: 0 0 2px;
}
.product-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.35;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-status {
  font-size: 11px;
  font-weight: 700;
  color: #6a9a60;
  margin: 0 0 6px;
}
.price-new {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
}
.price-old {
  font-size: 12px;
  color: var(--c-muted);
  text-decoration: line-through;
  margin-left: 5px;
}

/* ══════════════════════════════════════════════════════
   ТОП-БАР — скруглённая плашка внутри контейнера
══════════════════════════════════════════════════════ */
.topbar {
  /* Фон на всю ширину нет — только отступ сверху */
  padding: 10px 0 0;
}
.topbar__inner {
  background: var(--c-footer);
  border-radius: 14px;
  padding: 5px 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.topbar a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.topbar a:hover {
  color: #fff;
}
.topbar-sep {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 6px;
}

/* ══════════════════════════════════════════════════════
   ХЕДЕР — чистый flex, без uk-navbar
   Структура: лого | nav (центр) | поиск + иконки
══════════════════════════════════════════════════════ */
.main-header {
  /* Нет фона на теге — фон на .main-header__inner */
}
.main-header__inner {
  background: var(--c-footer);
  border-radius: 14px;
  padding: 10px 20px;
}

/* ══════════════════════════════════════════════════════
   ИКОНКИ ХЕДЕРА
══════════════════════════════════════════════════════ */

.msfavorites-total-all.load,
.msfavorites-total-all.visible {
  display: inline-flex !important;
}

.hdr-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  position: relative;
  transition:
    background 0.2s,
    color 0.2s;
}
.hdr-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
}
.hdr-icon--cart {
  color: var(--c-pink);
}
.hdr-icon--cart:hover {
  color: #fff;
  background: rgba(233, 203, 203, 0.2);
}

.top-favorites a,
.top-cart a {
  position: relative;
}

.top-favorites .top-favorites-count,
.top-cart .top-cart-count {
  line-height: 1;
  position: absolute;
  top: -5px;
  right: -12px;
  left: auto;
  display: flex;
  color: #fff;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  font-size: 12px;
  align-items: center;
  justify-content: center;
}

/* uk-badge: перекрашиваем счётчик корзины */
.cart-count.uk-badge {
  background: var(--c-pink);
  color: var(--c-text);
  font-size: 9px;
  font-weight: 700;
  min-width: 15px;
  height: 15px;
  border-radius: 50%;
}

/* ══════════════════════════════════════════════════════
   ГЛАВНЫЙ БАННЕР (Swiper)
══════════════════════════════════════════════════════ */
.banner-wrap {
  border-radius: 20px;
  overflow: hidden;
}
.banner-slide {
  min-height: 230px;
  padding: 28px 48px;
}
.banner-slide--1 {
  background: #f5e8e0;
}
.banner-slide--2 {
  background: #e0ebd8;
}
.banner-slide--3 {
  background: #e8dff0;
}
.banner-img {
  width: 190px;
  height: 190px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  flex-shrink: 0;
}
.banner-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--c-green);
  line-height: 1.1;
}
.banner-desc {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.5;
}

/* Swiper: точки и стрелки баннера */
.swiper-pagination-bullet {
  background: var(--c-green2);
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  background: var(--c-green);
  opacity: 1;
}
.swiper-button-next,
.swiper-button-prev {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.swiper-button-next::after,
.swiper-button-prev::after,
.swiper-button-next svg,
.swiper-button-prev svg {
  font-size: 12px;
  font-weight: 700;
  padding: 7px;
}

/* ══════════════════════════════════════════════════════
   БЫСТРЫЕ КАТЕГОРИИ (акции / новинки / бренды)
══════════════════════════════════════════════════════ */
.cat-card {
  height: 155px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  transition: transform 0.2s;
}
.cat-card:hover {
  transform: translateY(-4px);
  text-decoration: none;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ══════════════════════════════════════════════════════
   ЗАГОЛОВКИ СЕКЦИЙ
══════════════════════════════════════════════════════ */
.section-title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-text);
  letter-spacing: -0.3px;
  margin: 0;
}
.section-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-green2);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.section-link:hover {
  color: var(--c-green);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════
   КАРУСЕЛИ ТОВАРОВ — обёртка со стрелками снаружи
══════════════════════════════════════════════════════ */
.swiper-outer {
  position: relative;
  padding: 0 44px;
}
.products-swiper {
  padding-bottom: 40px !important;
}
.products-swiper .swiper-slide {
  height: auto;
}
.products-swiper .swiper-pagination {
  bottom: 0 !important;
}

.sw-btn {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 20px));
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-green);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
  z-index: 10;
}
.sw-btn:hover {
  background: var(--c-footer);
}
.sw-btn--prev {
  left: 0;
}
.sw-btn--next {
  right: 0;
}
.sw-btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   КАТАЛОГ — три равных карточки
══════════════════════════════════════════════════════ */
.catalog-card {
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  transition: transform 0.2s;
}
.catalog-card:hover {
  transform: scale(1.01);
  text-decoration: none;
}
.catalog-face {
  background: linear-gradient(160deg, var(--c-pink), #c09090);
}
.catalog-hair {
  background: #1c1c1c;
}
.catalog-gifts {
  background: linear-gradient(160deg, #cce0ee, #a8c8e0);
}
.catalog-label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  padding: 15px 15px 25px 15px;
  width: 100%;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

/* ══════════════════════════════════════════════════════
   ОТЗЫВЫ — секция без выделенного фона, карточки зелёные
══════════════════════════════════════════════════════ */
.reviews-section {
  /* фон не задаём — наследует --c-cream страницы */
}
.reviews-section .section-title {
  color: var(--c-text);
}
.reviews-section .section-link {
  color: var(--c-green2);
}
.reviews-section .section-link:hover {
  color: var(--c-green);
}

/* uk-card-default переопределяем только для карточек отзывов */
.review-card.uk-card.uk-card-default {
  background: #a2af8c !important;
  box-shadow: none;
}

/* Имя и дата в карточке отзыва — белые поверх зелёного фона */
.review-card .uk-text-bold {
  color: #fff !important;
}

/* uk-card для карточки отзыва */
.review-card.uk-card {
  border-radius: 16px;
}
.review-card .uk-card-body {
  padding: 18px 16px 14px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.av-green {
  background: var(--c-green);
}
.av-beige {
  background: var(--c-green2);
}
.av-pink {
  background: #c09090;
}

.review-stars span {
  font-size: 14px;
  color: #fff;
}
.review-stars span.empty {
  color: rgba(255, 255, 255, 0.35);
}
.review-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-product {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.review-product:hover {
  opacity: 0.75;
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════
   ФУТЕР
══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--c-footer);
  color: rgba(255, 255, 255, 0.75);
  padding: 40px;
  margin: 0 -40px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.footer-heading {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.4);
}
/* uk-nav в тёмном футере */
.footer-nav.uk-nav > li > a {
  color: rgba(255, 255, 255, 0.75);
  padding: 3px 0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav.uk-nav > li > a:hover {
  color: #fff;
}

/* uk-input в футере */
.footer-subscribe .uk-input {
  background: rgba(255, 255, 255, 0.1);
  border-color: transparent;
  color: #fff;
  border-radius: 10px 0 0 10px;
  font-size: 13px;
}
.footer-subscribe .uk-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer-subscribe .uk-input:focus {
  border-color: rgba(255, 255, 255, 0.3);
}
.footer-subscribe .uk-button {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 0 10px 10px 0;
  padding: 0 14px;
  transition:
    background 0.2s,
    color 0.2s;
  font-size: 14px;
}
.footer-subscribe .uk-button:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.6);
  padding-top: 16px;
  margin-top: 28px;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.ui-widget.ui-widget-content {
  list-style-type: none !important;
  border: none !important;
  z-index: 100;
}

.ui-widget.ui-widget-content li {
  list-style-type: none !important;
  border: none !important;
}

.ui-widget.ui-widget-content li:hover {
  border: none !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 0 solid transparent !important;
  background: #fafafa !important;
  color: #333 !important;
  margin: 0 !important;
}

#ui-id-1 {
  background: #fff !important;
  z-index: 990;
}

.ui-widget.ui-menu {
  font-size: 14px;
  z-index: 1000;
  position: fixed;
  max-height: 60vh;
  overflow: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.ui-menu .ui-menu-item:hover,
.ui-menu .ui-menu-item-wrapper:hover {
  background-color: #f5f5f5 !important;
  color: #333 !important;
}

.uk-pagination {
  gap: 7px;
}

.uk-pagination a {
  width: 30px;
  height: 30px;
  border: 1px solid;
  text-align: center;
  padding: 0;
  justify-content: center;
  background-color: #fff;
  transition: 0.1s ease-in-out;
}

.uk-pagination a:hover,
.uk-pagination .uk-active a {
  background-color: var(--c-green);
  color: #fff;
  border: 1px solid var(--c-green);
}

.uk-pagination .pagination-prev,
.uk-pagination .pagination-next {
  border: 1px solid transparent;
}

.uk-pagination .pagination-prev:hover,
.uk-pagination .pagination-next:hover {
  background-color: inherit;
  color: inherit;
  border: 1px solid transparent;
}

.uk-pagination .uk-active span {
  background-color: #14471e;
  color: #fff;
  width: 30px;
  height: 30px;
  padding: 0;
  justify-content: center;
  border: 1px solid #14471e;
  display: flex;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
  border: 0;
}

.desktop-filter {
  background-color: #fff;
}

.horizontal-filter {
  border-radius: 5px;
  padding: 5px 15px;
  margin-bottom: 15px;
}

.horizontal-filter fieldset {
  margin-bottom: 0;
}
.horizontal-filter #mse2_filters label {
  margin-bottom: 0;
}

#mse2_filters .filter_title {
  margin-bottom: 10px;
}

#mse2_filters label {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
}

#mse2_filters label span {
  line-height: 1.1;
}

#mse2_filters .uk-checkbox {
  display: inline-block;
  height: 15px;
  min-height: 15px;
  width: 15px;
  min-width: 15px;
  overflow: hidden;
  margin-top: 0px;
  margin-right: 5px;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #ddd;
  transition: 0.2s ease-in-out;
  transition-property: background-color, border;
}

#mse2_filters sup {
  color: var(--c-green);
}

#mse2_mfilter #mse2_selected_wrapper {
  min-height: 0;
  margin: 0;
}

#mse2_filters .ui-widget-header {
  border: 1px solid transparent;
  background: var(--c-green);
  color: #333;
  font-weight: bold;
}

#mse2_filters .ui-widget.ui-widget-content {
  border: 1px solid transparent;
}

#mse2_filters .ui-state-default,
#mse2_filters .ui-widget-content .ui-state-default,
#mse2_filters .ui-widget-header .ui-state-default,
#mse2_filters .ui-button,
html #mse2_filters .ui-button.ui-state-disabled:hover,
html #mse2_filters .ui-button.ui-state-disabled:active {
  border: 1px solid var(--c-green);
  background: var(--c-green);
  font-weight: normal;
  color: #454545;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  cursor: pointer;
  top: 0;
  transform: translateY(-50%);
}

.msearch2 .ui-slider-horizontal {
  height: 1px;
}

.msearch2 #mse2_filters .mse2_number_slider {
  margin: 15px 0 20px 0;
}

.horizontal-filter,
.msearch2 #mse2_selected,
.order-block,
.cart-product-row,
.cart-total,
.contact-block {
  background-color: #e3d8cb;
}

.msearch2 #mse2_selected {
  padding: 5px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.msearch2 #mse2_selected strong {
  margin-right: 10px;
}

.msearch2 #mse2_selected .mse2_selected_link sup {
  margin-left: 5px;
  font-size: 12px;
  color: indianred;
}

#mse2_mfilter .uk-input {
  background: var(--c-cream);
  border: 1px solid var(--c-cream);
  margin-left: 5px;
  border-radius: 5px;
}

.msearch2 #mse2_filters .mse2_number_inputs label {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

#mse2_filters .ui-slider-horizontal .ui-slider-handle {
  margin-left: 0;
}

#mse2_filters .ui-slider-horizontal .ui-slider-handle:last-child {
  transform: translate(-14px, -50%);
}

img.lazy {
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
}

img.loaded {
  opacity: 1;
}

.mse2_number_inputs .uk-input {
  width: 50px;
}

.uk-checkbox:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.169' height='13' viewBox='0 0 17.169 13'%3E%3Cpath id='check' d='M18.632,88.573,7.77,99.435l-3.84-3.84a.466.466,0,0,0-.658,0l-.439.439a.466.466,0,0,0,0,.658L7.441,101.3a.466.466,0,0,0,.658,0l11.63-11.63a.466.466,0,0,0,0-.658l-.439-.439A.465.465,0,0,0,18.632,88.573Z' transform='translate(-2.697 -88.437)' fill='%2314471e'/%3E%3C/svg%3E%0A");
}

.uk-checkbox:checked,
.uk-checkbox:checked:focus,
.uk-checkbox:indeterminate:focus {
  background-color: #fff;
}

#mse2_mfilter .select-categories-filter .filter-rows-block {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#mse2_mfilter .select-categories-filter label {
  background: #f5f5f5;
  color: #222;
  cursor: pointer;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 5px;
  background: var(--c-beige);
}

#mse2_mfilter .select-categories-filter label:hover,
#mse2_mfilter .select-categories-filter label.active {
  background: var(--c-green);
  color: #fff;
  cursor: pointer;
  line-height: 1;
  padding: 5px 10px;
}

#mse2_mfilter .select-categories-filter label input {
  display: none;
}

#mse2_mfilter .select-categories-filter sup {
  color: green;
}

/* ══════════════════════════════════════════════════════
   СТИЛИ КАРТОЧЕК ТОВАРОВ (из style.css)
   ══════════════════════════════════════════════════════ */

/* Карточки товаров */
.product-item {
  position: relative;
}

.resource-edit {
  position: absolute;
  right: 5px;
  top: 0;
  z-index: 1;
}

.product-item .resource-edit {
  right: 5px;
  top: 5px;
}

.product-spec-info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  gap: 5px;
}

.product-item-sale-value,
.product-item-new,
.product-item-popular {
  padding: 5px;
  line-height: 1;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}

.product-item-new {
  background-color: #e0a30e;
}

.product-item-popular {
  background-color: #ec7604;
}

.product-item-img {
  text-align: center;
  margin-bottom: 15px;
}

.product-item-img img {
  /* max-height: 150px; */
}

.product-item-title {
  font-weight: 400;
  line-height: 1.2;
}

.product-item-price-block {
  margin-bottom: 15px;
}

.product-item-price {
  font-weight: 700;
  margin-right: 2px;
}

.old-price {
  font-size: 0.85rem;
}

/* Кнопки товара */
.product-cart-btn,
.buy-one-click-btn {
  padding: 0 20px;
  transition: opacity 0.2s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-size: 16px;
}

.product-cart-btn .uk-icon {
  margin-right: 8px;
}

.product-cart-btn .uk-icon svg {
  max-width: 16px;
  max-height: 16px;
}

/* Кнопка "В корзину" - основной зеленый */
.product-cart-btn.accent-bg,
.uk-button.accent-bg {
  background: var(--c-green) !important;
  color: #fff !important;
}

.buy-one-click-btn {
  background: var(--c-green2) !important;
  color: var(--c-black) !important;
}

.product-cart-btn.accent-bg:hover,
.uk-button.accent-bg:hover {
  opacity: 0.9;
}

.buy-one-click-btn:hover {
  opacity: 0.8;
}

.product-cart-btn.accent-bg:active,
.uk-button.accent-bg:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(115, 121, 88, 0.3);
}

/* Кнопка "Купить в один клик" - розовая */
.product-cart-btn.uk-button-default {
  background: var(--c-pink) !important;
  color: var(--c-text) !important;
  border: 2px solid transparent;
  box-shadow: 0 2px 4px rgba(233, 203, 203, 0.3);
}

.product-cart-btn.uk-button-default:hover {
  opacity: 0.8;
}

.product-cart-btn.uk-button-default:active {
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   КОНТАКТЫ — стили из style.css
   ══════════════════════════════════════════════════════ */

/* Телефоны в хедере */
.top-phone a {
  color: inherit;
}
.top-phone > a:first-child {
  font-weight: 700;
  margin-right: 5px;
}
.top-phone a:hover {
  color: #68904d;
}
.top-phone .uk-icon {
  margin-right: 7px;
}
.dropdown-phone {
  font-weight: 700;
}

/* Контакты в футере */
footer.uk-light .footer-contacts a {
  color: inherit;
}

.footer-contacts .phone {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
.footer-contacts .phone .uk-icon {
  margin-right: 10px;
  margin: 0;
}

/* Общие стили для всех кнопок товара */
.product-cart-btn.uk-button-danger:disabled,
.product-cart-btn.uk-button-default:disabled,
.product-cart-btn.uk-button-primary:disabled,
.product-cart-btn.uk-button-secondary:disabled,
.product-cart-btn:disabled {
  background: #f5f5f5 !important;
  color: #999 !important;
  border-color: #e5e5e5 !important;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Иконка в кнопке */
.product-cart-btn span[data-uk-icon] {
  margin-right: 8px;
}

/* Коллекции товаров */
.collection-products {
}

.collection-products .product-item-img {
  text-align: center;
  margin-bottom: 0;
}

.collection-products .product-item-price-block {
  margin-bottom: 0;
}

/* Изображения товаров */
.product-images {
  position: relative;
}

.product-images .swiper-button-next,
.product-images .swiper-button-prev {
  color: #639253;
}

.product-images .swiper-button-disabled {
  pointer-events: auto;
}

.gallery-main {
  background: #fff;
  border-radius: 20px;
}

.gallery-thumbs img {
  cursor: pointer;
}

.product-images .add-to-favorite {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 10;
}

.product-images .add-to-favorite .uk-icon {
  background: #fff;
  padding: 5px;
  margin: 0;
  line-height: 1;
}

.product-images .gallery-main {
  text-align: center;
}

.product-images .gallery-main img {
  max-height: 600px;
  object-fit: contain;
}

/* Логотип товара */

.product-logo img {
  max-width: 90px;
}

/* Цены товара */
.product-price,
.product-currency {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.product-price-block {
  display: flex;
  align-items: center;
}

.product-old-price {
  font-size: 20px;
  margin-left: 10px;
  color: #666;
  line-height: 1;
}

.product-sale-value {
  margin-left: 15px;
  padding: 3px 5px;
  line-height: 1;
  background-color: #739d64;
  color: #fff;
}

/* Счетчик товара */
.product-count-block {
  border: 1px solid #ddd;
  display: inline-flex;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.product-count {
  width: 45px;
  height: 38px;
  padding: 0;
  text-align: center;
  border: none;
  color: var(--c-text);
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}

.product-count::-webkit-outer-spin-button,
.product-count::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-minus,
.btn-plus {
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  background: var(--c-green);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  line-height: 1;
}

.btn-minus:hover,
.btn-plus:hover {
  background: var(--c-footer);
  color: #fff;
}

.btn-minus:active,
.btn-plus:active {
  transform: translateY(0);
}

.btn-minus:disabled,
.btn-plus:disabled {
  background: #cdd1c2;
  color: #999;
  cursor: not-allowed;
  transform: none;
}

.btn-minus {
  border-radius: 5px 0 0 5px;
}

.btn-plus {
  border-radius: 0 5px 5px 0;
}

/* Описание товара */

.product-description-block .uk-tab > * > a {
  border-color: transparent;
  /* border-left: 4px solid #c8d2d1; */
  text-align: left;
  padding-left: 15px;
  transition: 0.1s ease-in-out;
  border-radius: 5px 5px 0 0;
}

.uk-tab:before {
  border-bottom: 1px solid var(--c-green);
}

.product-description-block .uk-tab-left::before {
  border-left: 0;
}

.product-description-block .uk-tab > * > a:hover {
  background-color: var(--c-green);
  /* border-left: 4px solid #68904d; */
}

.product-description-block .uk-tab > .uk-active > a {
  border-color: transparent;
  /* border-left: 4px solid #68904d; */
  background-color: var(--c-green);
}

.product-description-block .uk-switcher {
  border: 1px solid #e5e5e5;
  padding: 20px;
}

.product-description-block .uk-tab li {
  /* margin-bottom: -1px; */
}

.product-description-block ul.uk-accordion > li {
  border: 1px solid var(--c-cream);
}

.product-description-block .uk-accordion-title {
  /* font-size: 1rem; */
  padding: 10px 20px;
  background: var(--c-green);
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
}

.uk-accordion-default .uk-light .uk-accordion-icon {
  color: inherit;
}

.product-description-block .uk-accordion-content {
  padding: 10px 20px;
  margin-top: 10px;
}

/* Похожие товары */
.related-products {
  position: relative;
}

.related-products .slide-navigation,
.buy-with-this-product .slide-navigation {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  top: auto;
  display: flex;
  gap: 10px;
}

.related-products .swiper,
.buy-with-this-product .swiper {
  padding-bottom: 15px;
}

/* Корзина */
.cart-product-list {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.cart-product-row {
  padding: 10px 15px;
  margin-bottom: 15px;
}

.cart-product-row .product-count-block {
  border: 1px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: transparent;
  display: inline-flex;
}

.cart-product-row .product-count {
  width: 40px;
  height: 36px;
  font-size: 14px;
  border: none;
  background: transparent;
  color: var(--c-text);
  text-align: center;
  outline: none;
}

.cart-product-row .btn-minus,
.cart-product-row .btn-plus {
  width: 36px;
  height: 36px;
  background: var(--c-green);
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-product-row .btn-minus:hover,
.cart-product-row .btn-plus:hover {
  background: var(--c-footer);
}

.cart-product-row .btn-minus:disabled,
.cart-product-row .btn-plus:disabled {
  background: #e5e5e5;
  color: #999;
  cursor: not-allowed;
}

.cart-product-row .btn-minus {
  border-radius: 6px 0 0 6px;
}

.cart-product-row .btn-plus {
  border-radius: 0 6px 6px 0;
}

.cart-product-item {
  border: 1px solid #e3e8e7;
}

.cart-product-price-string {
  width: 120px;
  text-align: center;
}

.cart-product-img img {
  max-width: 55px;
}

.cart-product-item {
  display: table-row;
}

.table-c {
  display: table-cell;
  vertical-align: middle;
  padding: 10px;
  border-right: 1px solid #e3e8e7;
}

.cart-product-list .btn-minus,
.cart-product-list .btn-plus {
  width: 35px;
  height: 35px;
  background: var(--c-green);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-product-list .btn-minus:hover,
.cart-product-list .btn-plus:hover {
  background: var(--c-footer);
}

.cart-product-list .btn-minus:disabled,
.cart-product-list .btn-plus:disabled {
  background: #e5e5e5;
  color: #999;
  cursor: not-allowed;
}

.cart-product-list .product-count {
  width: 35px;
  height: 35px;
  font-size: 14px;
  border: none;
  background: #f8f8f8;
  color: var(--c-text);
  text-align: center;
  outline: none;
}

.cart-product-title .uk-h5 {
  line-height: 1.2;
  margin-bottom: 5px;
  font-weight: 400;
}

.cart-product-img,
.cart-product-price,
.cart-product-item-total-price,
.cart-product-remove {
  text-align: center;
}

.cart-product-remove form {
  width: 25px;
}

/* Доступность товара */
.product-available {
  margin-bottom: 3px;
}

/* Кнопки товара */
.product-cart-btn:disabled {
  background-color: transparent;
  color: #999;
  border-color: #e5e5e5;
}

.f-html {
  background: var(--c-cream);
}

.uk-input,
.uk-select,
.uk-textarea {
  border: 1px solid transparent;
}

.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
  border-color: #dfd4c7;
}

/* Статьи */

.article-img {
  margin-right: 15px;
  margin-bottom: 15px;
  float: left;
}

.article-item {
  border: 1px solid #e3e8e7;
  background-color: #fff;
}

.article-item img {
  width: 100%;
}

.article-item-caption {
  padding: 15px;
}

.article-item-title {
  line-height: 1.2;
}

/* ══════════════════════════════════════════════════════
   СТИЛИ КОРЗИНЫ (из старых шаблонов)
   ══════════════════════════════════════════════════════ */

/* Дополнительные стили для иконок корзины в хедере */
.top-favorites .top-favorites-count,
.top-cart .top-cart-count {
  line-height: 1;
  position: absolute;
  top: -5px;
  right: -12px;
  left: auto;
  display: flex;
  color: #fff;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  font-size: 12px;
  align-items: center;
  justify-content: center;
}

.top-favorites .uk-icon svg,
.top-cart .uk-icon svg,
.top-phone .uk-icon svg {
  max-width: 22px;
  max-height: 22px;
}

/* Стили для таблицы корзины */
.cart-product-row .cart-product-title {
  width: calc(100% - 85px);
}

.cart-product-row .cart-product-count {
  text-align: center;
}

.cart-product-row .product-count {
}

.cart-product-row .btn-minus,
.cart-product-row .btn-plus {
  line-height: 30px;
}

/* Стили для ячеек таблицы корзины */
.table-c {
  display: table-cell;
  padding: 8px 10px;
  vertical-align: middle;
  border-bottom: 1px solid #e3e8e7;
  border-top: 1px solid #e3e8e7;
}

.table-c:first-child {
  border-left: 1px solid #e3e8e7;
}

.table-c:last-child {
  border-right: 1px solid #e3e8e7;
}

/* Стили для списка товаров в корзине */
.cart-product-list .btn-minus,
.cart-product-list .btn-plus {
  line-height: 35px;
}

.cart-product-list .product-count {
  width: 30px;
  height: 35px;
}

/* Общие стили для корзины */

/* Стили для итоговой суммы корзины */
.cart-total {
  padding: 15px;
}

.cart-total-prices {
  display: flex;
  gap: 5px;
}

.cart-total-price {
  font-weight: 700;
}

.cart-total-price > div:last-child {
  text-align: left;
}

.cart-total-old-price {
  margin-left: 0;
}

/* Стили для формы заказа */
.order-block {
  padding: 20px;
  border-radius: 5px;
}

.form-order .uk-input,
.form-order .uk-textarea,
#promocode-input,
.cart-product-row .product-count,
.contact-block .uk-input,
.contact-block .uk-textarea {
  border: 1px solid transparent;
  background: color-mix(in srgb, var(--c-cream) 60%, white 40%);
}

.form-order .uk-input:focus,
.form-order .uk-textarea:focus,
#promocode-input:focus {
  background-color: color-mix(in srgb, var(--c-cream) 20%, white 80%);
}

.uk-form-stacked .uk-form-label {
  display: block;
  margin-bottom: 5px;
}

.uk-radio {
  margin-right: 10px;
}

.payment-block label {
  margin-bottom: 8px;
  display: block;
}

.payment-block label:last-child {
  margin-bottom: 0;
}

.payment-description {
  line-height: 1.2;
  margin-left: 26px;
  font-style: italic;
}

.form-order .order-total-price {
  font-size: 18px;
  font-weight: 700;
}

.contact-block {
  padding: 20px;
}

.contact-block .uk-h5 {
  text-decoration: underline;
  margin-bottom: 10px;
}

.contact-block .uk-button {
  font-size: 1rem;
}

.contact-block .uk-button:hover {
  color: inherit;
}

/* Стили для форм и валидации */
.section-about-us .uk-input {
  background-color: #f5f5f5;
  border: 1px solid transparent;
}
.section-about-us form .uk-input:hover {
  background-color: #f3f3f3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #f0506e;
  line-height: 1.1;
}

form .uk-form-danger,
form .uk-form-danger:focus {
  color: #f0506e !important;
  border-color: #f0506e !important;
}

/* Стили для форм заказа */
.form-order .uk-input,
.form-order .uk-textarea,
.form-order select {
  border: 1px solid transparent;
  background: #f5f5f5;
}
.form-order .order-total-price {
  font-size: 18px;
  font-weight: 700;
}

.uk-button-text:before {
  display: none;
}

.uk-light .uk-button-text {
  color: #fffc;
}

.uk-navbar-toggle:hover,
.uk-navbar-toggle[aria-expanded="true"] {
  color: #fff;
  text-decoration: none;
}
