/* ==========================================================================
   USER.CSS â€” REFACTORED (Joomla Cassiopeia + Bootstrap 5)
   Structure: 0) Fonts â†’ 1) Base â†’ 2) Utilities â†’ 3) Layout â†’ 4) Header/Nav
              5) Components (banner/cards/search/breadcrumbs/faq/footer)
              6) Media queries (<=992, <=768, <=576)
   ========================================================================== */

/* ========== 0) FONTS ========== */
@font-face {
  font-family: 'Inter';
  src: url('/media/fonts/Inter/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/media/fonts/Inter/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/media/fonts/Inter/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ========== 1) BASE (type, colors, links, buttons) ========== */
body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #222;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3 { font-weight: 600; color: #111; }
h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.0;
  margin-top: 0.5em;
}
h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 1.2em;
}
a:not([class]) {
    text-decoration: none;
}
/* Buttons (base + primary) */
.btn,
.button,
button,
input[type="submit"] {
  background-color: #ffd43b;
  color: #000;
  padding: 10px 20px;
  border: none;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.btn:hover,
.button:hover,
button:hover,
input[type="submit"]:hover {
  background-color: #ffffff; /* ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¾ Ð¿Ð¾ Ð¸ÑÑ…Ð¾Ð´Ð½Ð¸ÐºÑƒ */
  color: #003366;            /* Ñ„Ð¸ÐºÑ ÐºÐ¾Ð½Ñ‚Ñ€Ð°ÑÑ‚Ð° Ð¿Ñ€Ð¸ Ð±ÐµÐ»Ð¾Ð¼ Ñ„Ð¾Ð½Ðµ */
}
.btn-primary { background-color: #2d5eff; border-color: #2d5eff; }
.btn-primary:hover { background-color: #244bdd; border-color: #244bdd; }

/* ========== 2) UTILITIES (spacing, helpers) ========== */
.mt-3 {}
.px-3 { padding-left: 0rem !important; padding-right: 0rem !important; }

/* ========== 3) LAYOUT (containers, rows, generic wrappers) ========== */
/* Desktop: Ð±ÐµÐ· Ð±Ð¾ÐºÐ¾Ð²Ñ‹Ñ… Ð¿Ð¾Ð»ÐµÐ¹; Ð¼Ð¾Ð±Ð°Ð¹Ð» â€” Ð´Ð¾Ð±Ð°Ð²Ð¸Ð¼ Ð² Ð¼ÐµÐ´Ð¸Ð°Ð·Ð°Ð¿Ñ€Ð¾ÑÐ°Ñ… */
.container,
.container-fluid { padding-left: 0rem; padding-right: 0rem; }

.cards-row { margin-left: -0.5rem; margin-right: -0.5rem; }
.card-col {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: flex;
}

/* ========== 4) HEADER / NAVIGATION / OFFCANVAS ========== */
header.header.container-header {
  background-color: #edeeee !important;
  padding: 0.75rem 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  position: sticky;
  top: 0;
  z-index: 1030;
  height: 70px;
}

.container-header { /* Ð¾Ð±Ð¾Ð»Ð¾Ñ‡ÐºÐ° Ñ…ÐµÐ´ÐµÑ€Ð° */
  padding: 0.5rem 1rem;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  z-index: 1000;
}

.logo,
.menu-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #001B4C;
  text-decoration: none;
}
.logo { font-size: 1.25rem; }
.menu-brand { font-size: 1.4rem; padding-left: 15px; }
.logo-icon { font-size: 1.25rem; color: #2d5eff; margin-right: 0.5rem; }
.logo span { color: inherit; font-size: inherit; font-weight: inherit; }
.menu-brand a { color: inherit; text-decoration: none; }
.menu-brand a:hover { text-decoration: underline; }

header .header-brand a {
  display: flex; align-items: center;
  color: #212529; text-decoration: none;
  font-weight: 600; font-size: 20px;
}
.header-brand { height: 40px; width: auto; display: block; vertical-align: middle; }

header .navbar-nav { display: flex; align-items: center; gap: 1rem; }
header .navbar-nav .nav-link {
  color: #495057; padding: 0.5rem 0.75rem; transition: color .2s, background-color .2s;
}
header .navbar-nav .nav-link:hover { color: #2d5eff; }
header .navbar-nav .nav-link.active {
  color: #ffffff !important; background-color: #2d5eff !important; border-radius: 0.25rem;
}

.header-enter { align-self: center; margin-left: 1rem; }
.header-enter p { margin: 0; }

.navbar-toggler { border: none; padding: 0.25rem 0.5rem; margin-right: 0.5rem; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23212529' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Offcanvas */
.offcanvas { background-color: #f8f9fa; }
.offcanvas .nav-link { font-weight: 500; }
.offcanvas .btn-close {
  width: 36px; height: 36px; border-radius: 50%;
  background-color: #f2f2f2; box-shadow: 0 0 0 1px #000000 inset;
  padding: 0; display: flex; align-items: center; justify-content: center;
}
.offcanvas .btn-close:hover { background-color: #e0e0e0; }

/* Hover underline for menu (desktop only outside offcanvas) */
ul.mod-menu.mod-list.nav > li.nav-item > a {
  position: relative; display: inline-block; text-decoration: none;
  padding-bottom: 2px; transition: color 0.2s ease;
}
.header-menu ul.mod-menu.mod-list.nav > li.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #ffd43b;
  transition: width 0.3s ease;
}
.header-menu ul.mod-menu.mod-list.nav > li.nav-item > a:hover::after { width: 100%; }
.header-menu ul.mod-menu.mod-list.nav > li.nav-item.current > a::after,
.header-menu ul.mod-menu.mod-list.nav > li.nav-item.active > a::after { width: 100%; }
.header-menu ul.mod-menu.mod-list.nav > li.nav-item.current > a,
.header-menu ul.mod-menu.mod-list.nav > li.nav-item.active > a {color: #000;}

/* Menu icons */
ul.mod-menu > li > a::before {
  font-family: "Font Awesome 6 Free"; font-weight: 900; display: inline-block; margin-right: 0.5em;
}
.icon-gos::before   { content: "\f19c"; } /* fa-building-columns */
.icon-uslugi::before{ content: "\f0b1"; } /* fa-briefcase */
.icon-health::before{ content: "\f21e"; } /* fa-heart-pulse */
.icon-dosug::before { content: "\f86c"; } /* fa-icons */
.icon-biz::before   { content: "\f201"; } /* fa-chart-line */

.container-nav { display: flex; justify-content: flex-end; align-items: center; flex-wrap: wrap; gap: 20px; }
.container-header .mod-menu>li>a,
.container-header .mod-menu>li>span { text-decoration: none; position: relative; color: #000; }

/* ========== 5) COMPONENTS ========== */

/* 5.1 Banner / Hero */
.hero-block { padding: 60px 20px; background: #eef3f8; text-align: center; }
section.banner-block {
  background: #e5e6e6;
  padding-bottom: 0rem;
  padding-top: 1rem;
  margin: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 51, 153, .04), 0 2px 2px rgba(0, 51, 153, .08);
}
section.banner-block:empty { display: none; }
/* Ð¿Ñ€ÑÑ‡ÐµÐ¼ Ð¿ÑƒÑÑ‚Ð¾Ð¹ Ð±Ð°Ð½Ð½ÐµÑ€ Ð±ÐµÐ· h1 Ð¸ img */
section.banner-block:not(:has(h1, img)) { display: none; }
.moduletable.hero_right { float: right; }

/* 5.2 Section headings */
.popular-services h2,
section.col-lg-4 h2 { font-size: 32px; font-weight: 700; }

/* 5.3 Cards */
.card {
  background: #efeeee !important;
  border: 1px solid #f5f7fb;
  border-radius: 16px !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  overflow: visible;
  box-shadow: 0 15px 25px -10px rgba(0, 0, 0, .15) !important;
}
.card h3.cont {
  font-size: 16px;
  margin-bottom: 0.3rem;
  position: relative;
  color: #000;
  padding-bottom: 1rem;
  text-align: center;
  font-weight: 500;
  text-decoration: none !important;
}
.card h3.cont a { text-decoration: none; color: #000; }
.card h3.cont a:hover { /* reserved for hover */ }
.icon-absolute { position: absolute; top: 0; right: 0; font-size: 1.2em; color: #244bdd; opacity: 0.75; pointer-events: none; }
h4.cont { font-size: 18px; font-weight: 600; }
.card p { margin-bottom: 0.9rem; line-height: 1.5; flex-grow: 0; }
p.address { font-size: 15px; margin-bottom: 5px; }
p.phone { margin-bottom: 20px; font-size: 15px; text-decoration: none; }

.card-footer { margin-top: auto; background-color: transparent !important; border: none; padding: 0; position: relative; }
.card-footer .btn { padding: 0.4rem 0.8rem; border-radius: 8px; font-weight: 500; }

.card-img-wrapper {
  width: 100%; aspect-ratio: 16 / 9; overflow: hidden;
  border-top-left-radius: 12px; border-top-right-radius: 12px;
}
.card-img-top {width: 100%;height: 100%;object-fit: cover;display: block;border-radius: 1rem;}

/* Card: extra details (summary/popover) */
.card-extra { position: relative; display: block; }
.ux-card-foot { padding-top: .75rem; position: relative; }

.ux-extra-btn{
  display:flex;
  align-items:center;
  width:100%;
  cursor:pointer;
  list-style:none;
  user-select:none;
  outline:none;
  font-weight:700;
  line-height:1.25;
  padding:.7rem .9rem;
  padding-right:2.2rem;
  border:1px solid #e6eaf2;
  border-radius: 12px;
  background: #2d5eff;
  color: #fff;
  box-shadow: inset 0 -1px 0 #eef1f7;
  position:relative;
}
.ux-extra-btn::after{
  content:"â–¾";
  position:absolute;
  right:.8rem;
  top:50%;
  transform:translateY(-50%) rotate(0);
  transition:transform .2s ease;
  font-size:1.1rem;
  color: #fff;
}
.card-extra[open] .ux-extra-btn::after{ transform:translateY(-50%) rotate(180deg); }
.ux-extra-btn:focus-visible,
.ux-extra-btn:hover{
  border-color:#cfd7e6;
  box-shadow:0 0 0 3px rgba(45,94,255,.15), inset 0 -1px 0 #eef1f7;
}

.ux-extra-pop{
  position:absolute; left:0; right:0; bottom: calc(100% + .5rem);
  background:#fff; border:1px solid #f0f2f7; border-radius:12px;
  box-shadow: 0 8px 28px rgba(0,24,84,.08), 0 2px 8px rgba(0,24,84,.08);
  padding:.9rem 1rem; z-index:20; width:auto; max-height: 320px;
  overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  opacity:0; transform: translateY(8px); pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.card-extra[open] .ux-extra-pop{ opacity:1; transform: translateY(0); pointer-events:auto; }
/* ÑƒÐ±Ñ€Ð°Ð»Ð¸ Ð´ÑƒÐ±Ð»Ð¸ ::before/::after, Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÐµÐ¼ ÐµÐ´Ð¸Ð½Ð¾Ð¶Ð´Ñ‹ Ð´Ð»Ñ Ñ‚ÐµÐ½Ð¸/ÑÑ‚Ñ€ÐµÐ»ÐºÐ¸ */
.ux-extra-pop::after{
  content:""; position:absolute; left:1rem; top:100%;
  border:8px solid transparent; border-top-color:#fff;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.06));
}
/* Scrollbar (optional) */
.ux-extra-pop::-webkit-scrollbar{ width:8px; }
.ux-extra-pop::-webkit-scrollbar-thumb{ background:#d9deea; border-radius:8px; }

/* Titles/lists inside extra */
.ux-desc{margin:.25rem 0 .5rem;font-size:.975rem;}
.ux-list{list-style: disc;padding-left:1.1rem;margin-bottom: 1rem;}
.ux-list li{ display:list-item; margin:0; }
.ux-li-ico{ display:none; }
.ux-li-title{ font-weight:600; color:#111827; }
.ux-li-meta{ color:#6b7280; font-size:.92rem; }
.ux-list li + li{ margin-top:.5rem; }

.ux-title{ font-size: 1.25rem; font-weight: 700; line-height: 1.3; margin: 0; color: #111827; }
.ux-head-row{ display:flex; align-items:center; justify-content:space-between; gap:.6rem; margin-bottom:.5rem; }
.ux-head-icon{ flex:0 0 auto; font-size:1.25rem; line-height:1; color:#2d5eff; }

.ux-pop-title{
  display:inline-flex; align-items:center; justify-content:space-between; gap:.4rem;
  padding: .35rem .1rem; color:#003366; line-height:1; font-size:.95rem; font-weight:600;
  margin:.25rem 0 .5rem; border-bottom: 1px solid #5b78e6; display: block; width: 100%;
}
.ux-pop-ico-right{ margin-left:.5rem; font-size:.9rem; color:#2d5eff; flex:0 0 auto; }
.ux-subtitle{ display:flex; align-items:center; font-size:1rem; font-weight:600; line-height:1.35; margin:.75rem 0 .35rem; color:#1f2937; }
.ux-submark{ display:inline-block; flex:0 0 auto; width:14px; height:2px; background:#2d5eff; border-radius:2px; margin-right:.5rem; color:transparent; overflow:hidden; }
.ux-pop-ul{ margin: 0; font-size: 0.9rem; padding-left: 1rem; }
.ux-pop-ul li{ list-style:disc; }
.ux-pop-note{ margin:0; font-size: 0.9rem; }
.ux-body {
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 140px; /* Ð¿Ð¾Ð´ÑÑ‚Ñ€Ð¾Ð¹ Ð¿Ð¾Ð´ ÑÐ°Ð¼Ñ‹Ð¹ Ð´Ð»Ð¸Ð½Ð½Ñ‹Ð¹ Ñ‚ÐµÐºÑÑ‚ */
  align-items: center;
  gap: .4rem;
  padding: .35rem .9rem;
  border-radius: 1rem;
  line-height: 1;
  text-decoration: none;
  border: 1px solid #dfe3e7;
  margin-bottom: 1.5rem;
  background: linear-gradient(134.94deg, #e1faff 21.25%, #e9e5fe 80.12%);
}


/* 5.4 Carousel controls */
.carousel-controls {
  display: flex; justify-content: flex-end; align-items: center; gap: 0.5rem;
}
.carousel-controls .btn-icon {
  background: #f5f7fb; padding: 0.4rem 0.75rem; font-size: 1.05rem; color: #001B4C;
  border-radius: 0.2rem; transition: background-color 0.2s ease, color 0.2s ease;
  border: 1px solid #dfe3e7;
}
.carousel-controls .btn-icon:hover { background-color: #e6edf7; color: #001b4c; }

/* 5.5 Horizontal card carousel (mobile) */
.scroll-carousel { display: flex; flex-wrap: wrap; }

/* 5.6 Filters (pills + scroll) */
.filter-scroll-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; display: block; padding-bottom: 0.5rem; }
.filter-scroll-wrapper::-webkit-scrollbar { display: none; }
.filter-buttons { display: flex; flex-wrap: nowrap; gap: .5rem; padding: .25rem; min-width: max-content; }
.filter-buttons .btn {
  font-weight: 500; border-radius: 2rem; padding: .4rem 1rem;
  background-color: #f5f7fb; color: #003366; white-space: nowrap; transition: all .2s ease;
}
.filter-buttons .btn:hover { background-color: #e6edf7; color: #001B4C; }
.filter-buttons .btn.active { background-color: #2d5eff; color: #fff; border-color: transparent; }

/* 5.7 Search (mod-finder) */
.moduletable.search { /* Ð¿ÑƒÑÑ‚Ð¾Ð¹ ÑÐµÐ»ÐµÐºÑ‚Ð¾Ñ€ ÑƒÐ´Ð°Ð»Ñ‘Ð½ Ð² Ð¸ÑÑ…Ð¾Ð´Ð½Ð¸ÐºÐµ â€” Ð¾ÑÑ‚Ð°Ð²Ð»ÑÐµÐ¼ ÐºÐ°Ðº Ñ…ÑƒÐº */ }
.mod-finder__search {
  max-width: 100%; margin-left: auto; margin-right: auto;
  display: flex; align-items: stretch;
}
.mod-finder__search .form-control { flex: 1 1 auto; min-width: 0; }
.mod-finder__search .btn { white-space: nowrap; padding: 0.5rem 1.25rem; font-weight: 500; border-radius: 6px; }

.btn-search {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; font-size: 16px; padding: 0.5rem 1.25rem; font-weight: 500; border-radius: 8px;
  transition: background-color 0.3s ease;
}
.btn-search i { font-size: 1rem; color: inherit; }
.btn-search:hover { background-color: #244bdd; color: #fff; }

/* 5.8 Breadcrumbs (as pills) */
.seo-block{ margin:12px 0 20px; font-size:.95rem; color:#444; max-width:72ch; }
.seo-block a{ text-decoration:underline dotted; }

.breadcrumbs-block .mod-breadcrumbs {
  margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; font-size: .9rem; color: #6b7280; background: none;
}
.breadcrumbs-block .breadcrumb-item > a,
.breadcrumbs-block .breadcrumb-item > span {
  display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .9rem;
  border-radius: 2rem; background-color: #f5f7fb; color: #003366; line-height: 1; text-decoration: none;
  border: 1px solid #dfe3e7;
}
.breadcrumbs-block .breadcrumb-item > a:hover { background-color: #e6edf7; color: #001B4C; text-decoration: none; }
.breadcrumbs-block .breadcrumb-item.active > span { background-color: #e6edf7; color: #001B4C; }
.breadcrumbs-block .breadcrumb-item + .breadcrumb-item::before { content: "â€º"; color: #9ca3af; margin: 0 .25rem; }

.mod-breadcrumbs__item .crumb-icon { font-size: 1.1rem; vertical-align: middle; color: var(--bs-primary); }
.mod-breadcrumbs__item:first-child a { display: inline-flex; align-items: center; text-decoration: none; }
.mod-breadcrumbs__item:first-child a:hover .crumb-icon { color: var(--bs-primary-dark, #0d6efd); }
.breadcrumbs-block .mod-breadcrumbs__wrapper:focus-visible { outline: 2px solid var(--bs-primary); outline-offset: 2px; }

/* 5.9 Footer */
.footer {
  padding-bottom: 2em;
  background: #edeeee;
  color: #000;
  margin-top: 5em;
  padding-top: 2em;
}
.footer a:not(.btn):hover,
.footer a:not(.btn):focus,
.footer .btn-link:hover,
.footer .btn-link:focus {color: #999;}

/* ========== 6) MEDIA QUERIES ========== */

/* <= 991.98px (Tablet) */
@media (max-width: 991.98px) {
  /* Header: align menu/toggler right */
  header.header .header-menu { position: static !important; flex: 1 1 auto !important; margin-left: auto !important; }
  header.header { position: sticky !important; }

  /* Full-width dropdown under header burger */
  #headerMenuCollapse {
    position: absolute !important;
    top: calc(100% + 0.5rem) !important;
    left: 0 !important;
    width: 95vw !important;
    margin: 0 10px !important;
    padding: 0.5rem 1rem !important;
    background-color: #fff !important;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
    border-radius: 0.25rem !important;
    z-index: 1050 !important;
    display: none !important; /* Bootstrap toggles .show */
  }
  #headerMenuCollapse.show { display: block !important; }

  #headerMenuCollapse .navbar-nav { flex-direction: column !important; }
  #headerMenuCollapse .nav-link {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid #e9ecef !important;
  }
  #headerMenuCollapse .nav-item:last-child .nav-link { border-bottom: none !important; }

  /* Toggler spacing */
  header.header .navbar-toggler {
    margin: 0;
    margin-left: auto;
    padding: 0.5rem;
  }
}

/* <= 767.98px (Mobile) */
@media (max-width: 767.98px) {
  /* Containers: Ð´Ð¾Ð±Ð°Ð²Ð¸Ñ‚ÑŒ Ð²Ð½ÑƒÑ‚Ñ€ÐµÐ½Ð½Ð¸Ðµ Ð¿Ð¾Ð»Ñ */
  .container,
  .container-fluid { padding-left: 1rem; padding-right: 1rem; }

  /* Header search: ÑÐºÑ€Ñ‹Ñ‚ÑŒ Ð¿Ð¾ Ð¸ÑÑ…Ð¾Ð´Ð½Ð¸ÐºÑƒ */
  .header-search { display: none; }

  /* H1 ÐºÐ¾Ð¼Ð¿Ð°ÐºÑ‚Ð½ÐµÐµ */
  h1 {
    font-size: 2.3rem;
    text-align: center;
    margin-top: 0.5em;
    font-weight: 600;
    line-height: 1.1;
  }

  /* Banner alt state */
  section.banner-block.my-4 {
    background-color: #f5fcff;
    margin-top: 0rem !important;
    margin-bottom: 0.1rem !important;
    padding-bottom: 3rem;
    padding-top: 1rem;
  }

  /* Horizontal scroll carousel for cards */
  .scroll-carousel {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 0rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
  }
  .scroll-carousel .card-col { flex: 0 0 auto; scroll-snap-align: start; width: 100%; }

  /* Mod-finder stacked */
  .mod-finder__search {
    flex-direction: column; gap: 0.5rem; align-items: stretch;
  }
  .mod-finder__search .form-control,
  .mod-finder__search .btn {
    width: 100%; height: 48px; font-size: 16px; padding: 0.5rem 1rem; box-sizing: border-box;
  }
  .mod-finder__search .btn { display: flex; align-items: center; justify-content: center; }
  .mod-finder__search .btn i { margin-right: 0.5rem; }
  .btn-search { width: 100%; height: 48px; margin-left: 0; }
  .btn-search i { margin-right: 0.5rem; }

  /* Sticky breadcrumbs below header */
  :root { --header-h: 56px; } /* fallback */
  .breadcrumbs-block {
    position: sticky; top: var(--header-h, 56px); z-index: 1010;
    background: #fff; box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  }
  .breadcrumbs-block .mod-breadcrumbs__wrapper {
    padding-block: .35rem; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-inline: .75rem;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
  }
  .breadcrumbs-block .mod-breadcrumbs__wrapper::-webkit-scrollbar { display: none; }
  .breadcrumbs-block .mod-breadcrumbs {
    display: inline-flex; flex-wrap: nowrap !important; white-space: nowrap; min-width: max-content; scroll-snap-type: x proximity;
  }
  .breadcrumbs-block .mod-breadcrumbs__item { scroll-snap-align: start; }
  .breadcrumbs-block .mod-breadcrumbs__divider { float: none !important; margin-right: .25rem; flex: 0 0 auto; }

  /* Fix pagination overflow on mobile: ensure page numbers do not push the layout wide */
  .pagination_wrapper,
  .pagination-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .pagination_wrapper .pagination,
  .pagination-wrapper .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
  .pagination_wrapper .page-item,
  .pagination-wrapper .page-item {
    margin-bottom: 0.5rem;
  }
}

/* <= 575.98px (Small mobile) */
@media (max-width: 575.98px){
  .ux-li-meta{ font-size:.9rem; }
  .ux-extra-pop{ left:-.25rem; right:-.25rem; }
}
/* ===== Ð£ÑÐ»ÑƒÐ³Ð¸: Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²Ð¾Ðº + ÑÑ‚Ñ€ÐµÐ»ÐºÐ¸ (Ñ‚Ð¾Ð»ÑŒÐºÐ¾ Ð´Ð»Ñ ÑÑ‚Ð¾Ð³Ð¾ Ð±Ð»Ð¾ÐºÐ°) ===== */
.services-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

/* ÐŸÐ¾ ÑƒÐ¼Ð¾Ð»Ñ‡Ð°Ð½Ð¸ÑŽ (Ð´ÐµÑÐºÑ‚Ð¾Ð¿) â€” ÑÑ‚Ñ€ÐµÐ»ÐºÐ¸ ÑÐºÑ€Ñ‹Ñ‚Ñ‹ */
.services-head .carousel-controls { display: none; }

/* ÐÐ° Ð¼Ð¾Ð±Ð¸Ð»ÑŒÐ½Ñ‹Ñ… Ð¿Ð¾ÐºÐ°Ð·Ñ‹Ð²Ð°ÐµÐ¼ ÑÑ‚Ñ€ÐµÐ»ÐºÐ¸ */
@media (max-width: 767.98px) {
  .services-head .carousel-controls { display: flex; }
  .services-head .carousel-controls .btn-icon {
    padding: .4rem .7rem;
    border-radius: 8px;
    font-size: 1rem;
  }
}
.contact-icon {
  color: #2d5eff;       /* Ñ„Ð¸Ñ€Ð¼ÐµÐ½Ð½Ñ‹Ð¹ ÑÐ¸Ð½Ð¸Ð¹ */
  margin-right: 0.4rem;
  font-size: 1.1rem;
  vertical-align: middle;
  transition: color 0.2s ease;
}
/* ==== Related (Ñ‚Ð¾Ð»ÑŒÐºÐ¾ ÑÑ‚Ð¾Ñ‚ Ð±Ð»Ð¾Ðº) ==== */
.related-carousel .carousel { position: relative; }

/* Ð˜ÐºÐ¾Ð½ÐºÐ¸ ÑÑ‚Ñ€ÐµÐ»Ð¾Ðº Ð½Ð° ÑÐ²ÐµÑ‚Ð»Ð¾Ð¼ Ñ„Ð¾Ð½Ðµ */
.related-carousel .carousel-control-prev-icon,
.related-carousel .carousel-control-next-icon {
  filter: invert(1) grayscale(1);
}

/* ---------- ÐœÐ¾Ð±Ð¸Ð»ÑŒÐ½Ñ‹Ðµ (xsâ€“sm) ---------- */
@media (max-width: 767.98px) {
  /* Ð±Ð¾ÐºÐ¾Ð²Ñ‹Ðµ ÑÑ‚Ñ€ÐµÐ»ÐºÐ¸ ÐºÐ°Ñ€ÑƒÑÐµÐ»Ð¸ ÑÐºÑ€Ñ‹Ð²Ð°ÐµÐ¼ */
  .related-carousel .carousel-control-prev,
  .related-carousel .carousel-control-next {
    display: none !important;
  }

  /* Ð¿Ð¾ÐºÐ°Ð·Ñ‹Ð²Ð°ÐµÐ¼ ÐºÐ½Ð¾Ð¿ÐºÐ¸ Ñƒ Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²ÐºÐ° Ð¸ Ð²Ñ‹ÑÑ‚Ñ€Ð°Ð¸Ð²Ð°ÐµÐ¼ Ð¸Ñ… Ð² ÑÑ‚Ñ€Ð¾ÐºÑƒ */
  .related-carousel .related-nav-mobile {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .related-carousel .related-nav-mobile button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    line-height: 1;
    padding: 0;
  }
}

/* ---------- Ð”ÐµÑÐºÑ‚Ð¾Ð¿ (md+) ---------- */
@media (min-width: 768px) {
  /* ÐºÐ½Ð¾Ð¿ÐºÐ¸ Ñƒ Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²ÐºÐ° Ð¿Ñ€ÑÑ‡ÐµÐ¼ */
  .related-carousel .related-nav-mobile {
    display: none !important;
  }

  /* Ð±Ð¾ÐºÐ¾Ð²Ñ‹Ðµ ÑÑ‚Ñ€ÐµÐ»ÐºÐ¸ Ð²Ð¸Ð´Ð¸Ð¼Ñ‹ Ð¸ Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ñ‹ */
  .related-carousel .carousel-control-prev,
  .related-carousel .carousel-control-next {
    display: flex !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    box-shadow: 0 2px 6px rgba(0,0,0,.18);
    justify-content: center;
    align-items: center;
    z-index: 10;
  }

  .related-carousel .carousel-control-prev { left: -16px; }
  .related-carousel .carousel-control-next { right: -16px; }

  /* Ð»Ñ‘Ð³ÐºÐ¸Ð¹ hover Ñ‚Ð¾Ð»ÑŒÐºÐ¾ Ñ‚Ð°Ð¼, Ð³Ð´Ðµ Ð¾Ð½ ÐµÑÑ‚ÑŒ */
  @media (hover: hover) {
    .related-carousel .carousel-control-prev:hover,
    .related-carousel .carousel-control-next:hover {
      box-shadow: 0 4px 10px rgba(0,0,0,.22);
    }
  }


  @media (max-width: 1200px) {
    .related-carousel .carousel-control-prev { left: -10px; }
    .related-carousel .carousel-control-next { right: -10px; }
  }

} /* close @media (min-width: 768px) */

.card-image {
  background: linear-gradient(135deg,#f1ece7 0%,#f7f5f3 100%);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.card-image img { display:inline-block; max-width:100%; height:auto; }
.visually-hidden {
  position:absolute; width:1px; height:1px; margin:-1px; padding:0; border:0;
  clip:rect(0 0 0 0); overflow:hidden; white-space:nowrap;
}
/* Title: left, normal weight, no underline */
.product-title a{
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.25;
  color: #222;
  text-decoration: none;
}
.product-title a:hover{ color:#6b3a1f; }

/* Reviews block */
.product-reviews{
  display:flex; align-items:center; gap:.5rem;
  font-size:.875rem; color:#666;
}
.product-reviews .reviews-link{ color:#666; text-decoration:none; }
.product-reviews .reviews-link:hover{ color:#6b3a1f; text-decoration:underline; }

/* Stars (JSHelper outputs inline SVG or <i> elements; both are sized here) */
.product-reviews .stars{ display:inline-flex; gap:.15rem; line-height:1; }
.product-reviews .stars svg{ width:16px; height:16px; }
.product-reviews .stars i{ font-size:16px; }

.description{ color:#555; }
.main-top.card {
    box-shadow: none !important;
    background: none !important;
}

.card-body {
    padding: 0 !important;
}
/* Исходное состояние — приподнятая карточка */
.card-col .card {
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
  background: #fff;
  transform: translateY(0);
}

/* При наведении — эффект вдавливания */
.card-col .card:hover {
  transform: translateY(2px) scale(0.98);
  box-shadow:
    inset 0 4px 8px rgba(0,0,0,0.12),
    inset 0 -4px 8px rgba(0,0,0,0.08),
    0 0 0 rgba(0,0,0,0); /* внешняя тень убирается */
}
/* --- JoomShopping Categories: иконка справа в строке ---
   Дублирующие базовые определения удалены. Унифицированное правило ниже
   покрывает обычные и активные ссылки, объявляя свойства единожды
   (см. блок «JoomShopping categories» в этом файле). */

/* если где-то картинка становилась 100% ширины — прибьём это правило */
.container-sidebar-left .jshop_menu_level_0 a img[style],
.sidebar-left .jshop_menu_level_0 a img[style] {
  width: 28px !important;
  height: 28px !important;
}

/* многоуровневые категории: лёгкая ступенька для level_1+ (по желанию) */
.container-sidebar-left .jshop_menu_level_1 a,
.sidebar-left .jshop_menu_level_1 a { padding-left: 1.25rem; }
.container-sidebar-left .jshop_menu_level_2 a,
.sidebar-left .jshop_menu_level_2 a { padding-left: 2rem; }
/* === JoomShopping Categories (левый сайдбар) === */
/* Обычные и активные пункты — одинаковая раскладка */
.container-sidebar-left .jshop_menu_level_0 a,
.container-sidebar-left .jshop_menu_level_0_a a,
.sidebar-left .jshop_menu_level_0 a,
.sidebar-left .jshop_menu_level_0_a a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  width: 100%;
  padding: .5rem .625rem;
  border-radius: .5rem;
  text-decoration: none;
  color: inherit !important;          /* убираем «синий» цвет ссылок */
  line-height: 1.25;
}

/* Иконка: фиксированный маленький размер, даже внутри .card-body */
.container-sidebar-left .jshop_menu_level_0 a img,
.container-sidebar-left .jshop_menu_level_0_a a img,
.sidebar-left .jshop_menu_level_0 a img,
.sidebar-left .jshop_menu_level_0_a a img {
  width: 28px !important;
  height: 28px !important;
  max-width: none !important;         /* перебиваем общие img {max-width:100%} */
  flex: 0 0 28px;
  object-fit: contain;
  margin-left: .5rem !important;      /* отступ от текста */
  display: block;
  box-shadow: none !important;
  border: 0 !important;
}

/* Ховер: мягкий фон, цвет текста не меняем */
.container-sidebar-left .jshop_menu_level_0 a:hover,
.sidebar-left .jshop_menu_level_0 a:hover {
  background: #f5f7f9;
}

/* Активный пункт: подчёркиваем фоном/шрифтом */
.container-sidebar-left .jshop_menu_level_0_a a,
.sidebar-left .jshop_menu_level_0_a a {
  background: #f1f3f5;                /* можно заменить на свой */
  font-weight: 600;
}

/* На случай, если шаблон задаёт img как блочный баннер перед ссылкой */
.container-sidebar-left .jshop_menu_level_0_a > img,
.sidebar-left .jshop_menu_level_0_a > img {
  display: none !important;
}
/* Общие отступы между пунктами меню */
.sidebar-left .jshop_menu_level_0,
.container-sidebar-left .jshop_menu_level_0,
.sidebar-left .jshop_menu_level_0_a,
.container-sidebar-left .jshop_menu_level_0_a {
  margin-bottom: 6px; /* расстояние между пунктами */
}

/* Последний пункт — дополнительный отступ снизу */
.sidebar-left .jshop_menu_level_0:last-child,
.container-sidebar-left .jshop_menu_level_0:last-child,
.sidebar-left .jshop_menu_level_0_a:last-child,
.container-sidebar-left .jshop_menu_level_0_a:last-child {
  margin-bottom: 12px;
}

/* Отступы внутри ссылки — текст + иконка */
.sidebar-left .jshop_menu_level_0 a,
.container-sidebar-left .jshop_menu_level_0 a,
.sidebar-left .jshop_menu_level_0_a a,
.container-sidebar-left .jshop_menu_level_0_a a {
  padding: 0.6rem 0.8rem; /* вертикальный и горизонтальный отступ */
  border-radius: 8px;
}

/* Отступ между текстом и иконкой (уже есть, усилим немного) */
.sidebar-left .jshop_menu_level_0 a img,
.container-sidebar-left .jshop_menu_level_0 a img,
.sidebar-left .jshop_menu_level_0_a a img,
.container-sidebar-left .jshop_menu_level_0_a a img {
  margin-left: 10px !important; /* расстояние между текстом и иконкой */
}
/* === Продуктовая карточка: нормальный заголовок === */

/* 1) Сбрасываем капс и подчёркивание только внутри карточек */
.block_product .name,
.product .name { text-transform: none !important; }

.block_product .name a,
.product .name a {
  text-decoration: none !important;  /* убираем подчёркивание */
  color: var(--bs-body-color) !important;
  font-weight: 600;                   /* можно 500, если хочешь мягче */
  font-size: 1rem;                    /* ~16px на базе BS; при желании 0.95rem */
  line-height: 1.25;
  letter-spacing: 0;                  /* убираем «разъезд» от uppercase */
  display: -webkit-box;               /* 2 строки + многоточие */
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;                  /* выравниваем высоту у карточек */
  word-break: break-word;
  hyphens: auto;
}

/* 2) Ховер — без подчёркивания, только лёгкая смена цвета */
.block_product .name a:hover,
.product .name a:hover {
  color: var(--bs-primary) !important;
  text-decoration: none !important;
}

/* 3) Чуть меньше отступ сверху у заголовка */
.block_product .name.h4.mt-2,
.product .name.h4.mt-2 { margin-top: .25rem !important; }

/* 4) На очень узких экранах можно на пол-тона уменьшить размер */
@media (max-width: 375px) {
  .block_product .name a,
  .product .name a { font-size: .95rem; }
}

@media (max-width:576px){
  .product-title a{ font-size:1.05rem; }
  .product-reviews .stars svg{ width:18px; height:18px; }
}
@media (width >= 992px) {
    .col-lg-2 {
        flex: none;
        width: 12.5%;
    }
}
/* Кнопка "Подробнее" — фирменная, лёгкая */
.product .btn,
.block_product .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #FFD43B;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 0.45rem 1.1rem;
  font-weight: 500;               /* сделал тоньше */
  font-size: 0.95rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  text-decoration: none !important;
}

.product .btn svg,
.block_product .btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.product .btn:hover,
.block_product .btn:hover {
  background: #FFC800;
  box-shadow: 0 3px 8px rgba(255,200,0,0.4);
  transform: translateY(-1px);
}

.product .btn:hover svg,
.block_product .btn:hover svg {
  transform: translateX(2px);
}
.shop-btn {
  display: inline-block;
  background-color: #FFD43B; /* фирменный желтый */
  color: #000; /* чёрный текст */
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  margin-top: 2rem;
}

.shop-btn:hover {
  background-color: #ffcc00;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.shop-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
p.swh-hero__lead {
    font-size: 1.5rem;
}
/* Корзина в шапке — жёлтая капсула */
.header-enter .wt-jshopping-cart-module-icon.btn,
.wt-jshopping-cart-module-icon.btn {
  background: #FFD43B !important;
  color: #000 !important;
  border: 0 !important;
  border-radius: 12px !important;
  padding: 10px 14px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  text-decoration: none !important;
}

/* Иконка внутри (FontAwesome) наследует цвет */
.wt-jshopping-cart-module-icon.btn .fa-shopping-cart {
  font-size: 18px;
  color: currentColor;
}

/* Ховер/клик */
.wt-jshopping-cart-module-icon.btn:hover {
  background: #FFC800 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.wt-jshopping-cart-module-icon.btn:active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 3px 8px rgba(0,0,0,.14);
}

/* Бейдж количества */
.wt-jshopping-cart-module-icon.btn .badge {
  position: absolute !important;
  top: -6px !important;
  right: -6px !important;
  left: auto !important;
  transform: none !important;
  min-width: 20px;
  height: 20px;
  padding: 0 .25rem;
  font-size: .75rem;
  font-weight: 700;
  line-height: 20px;
  border-radius: 9999px !important;
  background: #E03131 !important;      /* приглушённый красный */
  color: #fff !important;
  border: 2px solid #fff !important;    /* белый обвод для читаемости */
}

/* На очень узких экранах чуть компактнее */
@media (max-width: 420px) {
  .wt-jshopping-cart-module-icon.btn { padding: 8px 12px !important; }
  .wt-jshopping-cart-module-icon.btn .fa-shopping-cart { font-size: 16px; }
}
/* ====== Smart Search (override) — инвертированный тёмный стиль ====== */
.mod-finder.searchbar--brand .mod-finder__form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mod-finder.searchbar--brand .mod-finder__group {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 100%; /* ограничение ширины в десктопе */
}

/* Поле поиска */
.mod-finder.searchbar--brand #mod-finder-searchword {
  flex: 1 1 auto;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #d7d7d7;
  border-right: none;
  border-radius: 10px 0 0 10px;
  background: #fff;
  font-size: .95rem;
  color: #222;
  outline: none;
}
.mod-finder.searchbar--brand #mod-finder-searchword::placeholder { color: #9aa0a6; }

/* Кнопка — инвертированная (тёмная), с твоим эффектом */
.mod-finder.searchbar--brand .mod-finder__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  height: 48px;
  padding: 0 18px;
  border: 1px solid #222;
  border-left: none;
  border-radius: 0 10px 10px 0;
  background: #222;
  color: #fff;
  font-weight: 500;
  font-size: .95rem;
  cursor: pointer;

  /* твой эффект */
  transition: all 0.2s ease-in-out;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.mod-finder.searchbar--brand .mod-finder__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.20);
  background: #2a2f36; /* чуть светлее на ховере */
  border-color: #2a2f36;
}
.mod-finder.searchbar--brand .mod-finder__submit:active {
  transform: scale(.97);
}

/* Иконка лупы — просто наследует цвет */
.mod-finder.searchbar--brand .mod-finder__submit svg {
  width: 16px; height: 16px;
  transform-origin: center;
  transition: transform .2s ease;
}
.mod-finder.searchbar--brand .mod-finder__submit:hover svg {
  transform: rotate(8deg) scale(1.05);
}

/* Мобильные размеры */
@media (max-width: 576px) {
  .mod-finder.searchbar--brand #mod-finder-searchword,
  .mod-finder.searchbar--brand .mod-finder__submit { height: 44px; }
}
/* ==========================================================================
   JoomShopping — product detail page
   Карточка товара: изображение, покупка, вкладки, миниатюры
   ========================================================================== */

#comjshop.productfull {
  --zh-accent: #ffd43b;
  --zh-accent-dark: #e0b800;
  --zh-brown: #c9ae8c;
  --zh-brown-dark: #b39064;
  --zh-text: #111;
  --zh-border: #e5e7eb;
}

/* Заголовок товара */
#comjshop.productfull h1 {
  font-size: clamp(2rem, 2.65vw, 3rem);
  line-height: 1.08;
  font-weight: 700;
  margin: 0.65em 0 0.75em;
  color: var(--zh-text);
  max-width: 1100px;
}

/* Артикул + рейтинг */
#comjshop.productfull .jshop_code_prod {
  color: #222;
  font-size: 0.95rem;
}

#comjshop.productfull .d-flex.justify-content-between {
  align-items: center;
  gap: 1rem;
}

/* Изображение товара */
#comjshop.productfull .image_middle {
  position: relative;
  background: #fff;
  border: 1px solid var(--zh-border);
  border-radius: 16px;
  padding: 18px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#comjshop.productfull #productImagesSlider {
  position: relative;
  width: 100%;
  min-height: 260px;
}

#comjshop.productfull #productImagesSlider img {
  max-height: 360px;
  object-fit: contain;
}

/* Стрелки изображения */
#comjshop.productfull #productImagesSlider .carousel-control-prev,
#comjshop.productfull #productImagesSlider .carousel-control-next {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 46px;
  height: 46px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--zh-border);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  z-index: 5;
}

#comjshop.productfull #productImagesSlider .carousel-control-prev {
  left: 12px;
}

#comjshop.productfull #productImagesSlider .carousel-control-next {
  right: 12px;
}

#comjshop.productfull #productImagesSlider .carousel-control-prev-icon,
#comjshop.productfull #productImagesSlider .carousel-control-next-icon {
  width: 22px;
  height: 22px;
  filter: invert(1) grayscale(1);
}

/* Миниатюры под изображением */
#comjshop.productfull .image_thumb_list {
  margin-top: 14px;
}

#comjshop.productfull #list_product_image_thumb {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

#comjshop.productfull #list_product_image_thumb .sblock0 {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid var(--zh-border);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

#comjshop.productfull #list_product_image_thumb .sblock0:hover {
  border-color: var(--zh-accent);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

#comjshop.productfull #list_product_image_thumb .jshop_img_thumb {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain;
  padding: 6px;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Правая часть карточки */
#comjshop.productfull .jshop_oiproduct {
  background: #fff;
  border: 1px solid var(--zh-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

#comjshop.productfull .jshop_oiproduct .description {
  margin-bottom: 1rem;
  color: #444;
  font-size: 1rem;
}

/* Панель покупки */
#comjshop.productfull .buybar {
  margin-top: 1.25rem;
  padding: 20px 24px;
  background: #f8f8f8;
  border: 1px solid var(--zh-border);
  border-radius: 14px;
}

/* Десктоп: цена + количество + кнопка в одну строку */
@media (min-width: 768px) {
  #comjshop.productfull .buybar {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    overflow: visible !important;
  }

  #comjshop.productfull .buybar .h3 {
    flex: 0 0 auto !important;
    min-width: 100px;
  }

  #comjshop.productfull .prod_qty_row {
    flex: 0 1 210px !important;
    justify-content: center !important;
  }

  #comjshop.productfull .buybar .buttons {
    display: flex !important;
    flex: 0 0 180px !important;
    width: 180px !important;
    margin-left: 0 !important;
  }
}

/* Цена */
#comjshop.productfull .buybar .h3 {
  margin: 0 !important;
  color: #001b4c !important;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

#comjshop.productfull #block_price {
  color: inherit;
}

/* Количество */
#comjshop.productfull .qty-group.input-group {
  display: grid !important;
  grid-template-columns: 46px minmax(64px, 1fr) 46px;
  width: 210px;
  max-width: 100%;
  align-items: stretch;
  border: 1px solid #d7dce3;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

#comjshop.productfull .qty-group .qty-btn,
#comjshop.productfull .qty-group .qty-input {
  height: 48px !important;
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

#comjshop.productfull .qty-group .qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px !important;
  min-width: 46px !important;
  padding: 0 !important;
  background: var(--zh-brown) !important;
  color: #fff !important;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

#comjshop.productfull .qty-group .qty-btn:hover {
  background: var(--zh-brown-dark) !important;
  color: #fff !important;
}

#comjshop.productfull .qty-group .qty-input {
  display: block !important;
  width: 100% !important;
  min-width: 64px !important;
  line-height: 48px !important;
  padding: 0 10px !important;
  background: #fff !important;
  color: #111 !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #111 !important;
}

#comjshop.productfull .qty-group .qty-input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(255, 212, 59, 0.55) !important;
}

#comjshop.productfull .qty-group .qty-input::-webkit-outer-spin-button,
#comjshop.productfull .qty-group .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#comjshop.productfull .qty-group .qty-input[type="number"] {
  -moz-appearance: textfield;
}

/* Кнопки покупки */
#comjshop.productfull .buybar .buttons {
  gap: 12px !important;
}

#comjshop.productfull .buybar .btn-buy,
#comjshop.productfull .buybar .btn-wishlist {
  width: 100%;
  min-height: 48px;
  border-radius: 10px !important;
  padding: 12px 18px !important;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: none !important;
  white-space: nowrap !important;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

#comjshop.productfull .buybar .btn-buy {
  background: var(--zh-accent) !important;
  color: #111 !important;
  border: 1px solid var(--zh-accent-dark) !important;
}

#comjshop.productfull .buybar .btn-buy:hover {
  background: var(--zh-accent-dark) !important;
  color: #111 !important;
  transform: translateY(-1px);
}

#comjshop.productfull .buybar .btn-wishlist {
  background: #fff !important;
  color: #333 !important;
  border: 1px solid #d7dce3 !important;
}

#comjshop.productfull .buybar .btn-wishlist:hover {
  background: #f0f0f0 !important;
  color: #111 !important;
  transform: translateY(-1px);
}

/* Вкладки */
#comjshop.productfull #block-tabs {
  margin-top: 2rem !important;
  border: 1px solid var(--zh-border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

#comjshop.productfull #block-tabs .nav-tabs {
  border-bottom: 1px solid var(--zh-border);
  background: #f7f7f7;
  padding: 0 14px;
}

#comjshop.productfull #block-tabs .nav-link {
  border: 0 !important;
  border-radius: 0 !important;
  padding: 15px 20px;
  color: #1f2937;
  font-weight: 600;
  background: transparent !important;
  position: relative;
}

#comjshop.productfull #block-tabs .nav-link:hover {
  color: #000;
}

#comjshop.productfull #block-tabs .nav-link.active {
  color: #000 !important;
  background: transparent !important;
}

#comjshop.productfull #block-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
  background: var(--zh-accent);
}

#comjshop.productfull #block-tabs .tab-content {
  min-height: 90px;
}

#comjshop.productfull #block-tabs .tab-pane {
  padding: 22px !important;
}

/* Похожие товары */
#comjshop.productfull + .jshop,
#comjshop.productfull .related {
  margin-top: 2rem;
}

/* Планшет */
@media (max-width: 991.98px) {
  #comjshop.productfull h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    text-align: left;
  }

  #comjshop.productfull .jshop_oiproduct {
    margin-top: 1rem;
  }

  #comjshop.productfull .image_middle {
    min-height: 240px;
  }

  #comjshop.productfull #productImagesSlider img {
    max-height: 280px;
  }
}

/* Мобильная версия */
@media (max-width: 575.98px) {
  #comjshop.productfull h1 {
    font-size: 1.75rem;
    line-height: 1.12;
  }

  #comjshop.productfull .d-flex.justify-content-between {
    flex-direction: column;
    align-items: flex-start;
  }

  #comjshop.productfull .jshop_oiproduct {
    padding: 16px;
    border-radius: 14px;
  }

  #comjshop.productfull .buybar {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 14px !important;
    padding: 16px;
  }

  #comjshop.productfull .buybar .h3 {
    font-size: 1.8rem;
    text-align: center;
  }

  #comjshop.productfull .prod_qty_row {
    justify-content: center;
  }

  #comjshop.productfull .qty-group.input-group {
    width: 100%;
    grid-template-columns: 48px minmax(70px, 1fr) 48px;
  }

  #comjshop.productfull .buybar .buttons {
    display: grid !important;
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0 !important;
  }

  #comjshop.productfull #block-tabs .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 8px;
  }

  #comjshop.productfull #block-tabs .nav-link {
    white-space: nowrap;
    padding: 14px 16px;
  }

  #comjshop.productfull #block-tabs .tab-pane {
    padding: 16px !important;
  }

  #comjshop.productfull #productImagesSlider .carousel-control-prev,
  #comjshop.productfull #productImagesSlider .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  #comjshop.productfull #productImagesSlider .carousel-control-prev {
    left: 8px;
  }

  #comjshop.productfull #productImagesSlider .carousel-control-next {
    right: 8px;
  }

  #comjshop.productfull #list_product_image_thumb {
    gap: 8px;
  }

  #comjshop.productfull #list_product_image_thumb .sblock0 {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }
}
/* FIX — компактная панель покупки без лишних обрамлений */
@media (min-width: 768px) {
  #comjshop.productfull .buybar {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;

    width: fit-content !important;
    max-width: 100% !important;

    margin-top: 0 !important;
    padding: 12px 14px !important;

    background: #f8f8f8 !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    box-shadow: none !important;
  }

  #comjshop.productfull .buybar .h3 {
    min-width: auto !important;
    flex: 0 0 auto !important;
    font-size: 1.8rem !important;
    line-height: 1 !important;
    margin: 0 !important;
  }

  #comjshop.productfull .prod_qty_row {
    flex: 0 0 auto !important;
    width: auto !important;
  }

  #comjshop.productfull .qty-group.input-group {
    width: 170px !important;
    grid-template-columns: 40px 90px 40px !important;
  }

  #comjshop.productfull .qty-group .qty-btn,
  #comjshop.productfull .qty-group .qty-input {
    height: 42px !important;
  }

  #comjshop.productfull .qty-group .qty-btn {
    width: 40px !important;
    min-width: 40px !important;
  }

  #comjshop.productfull .qty-group .qty-input {
    min-width: 90px !important;
    font-size: 1rem !important;
  }

  #comjshop.productfull .buybar .buttons {
    flex: 0 0 auto !important;
    width: auto !important;
    display: flex !important;
  }

  #comjshop.productfull .buybar .btn-buy {
    width: auto !important;
    min-width: 150px !important;
    min-height: 42px !important;
    padding: 10px 22px !important;
  }
}
/* ==========================================================================
   Breadcrumbs — компактные хлебные крошки
   ========================================================================== */

.mod-breadcrumbs__wrapper {
  margin: 0 0 24px;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.mod-breadcrumbs.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;

  margin: 0 !important;
  padding: 8px 0 !important;

  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;

  font-size: 0.95rem;
  line-height: 1.35;
}

.mod-breadcrumbs__divider {
  display: inline-flex;
  align-items: center;
  margin: 0 2px 0 0 !important;
  color: #001b4c;
}

.mod-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  color: #555;
}

.mod-breadcrumbs__item a {
  color: #000;
  text-decoration: none;
}

.mod-breadcrumbs__item a:hover {
  color: #000;
  text-decoration: underline;
}

.mod-breadcrumbs__item + .mod-breadcrumbs__item::before {
  content: "/";
  margin: 0 8px 0 2px;
  color: #999;
}

.mod-breadcrumbs__item.active {
  color: #444;
  font-weight: 400;
}

/* Убираем лишние bootstrap-отступы */
.mod-breadcrumbs.breadcrumb.px-3,
.mod-breadcrumbs.breadcrumb.py-2 {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

/* Мобильная версия: горизонтальный скролл, чтобы длинный товар не ломал экран */
@media (max-width: 575.98px) {
  .mod-breadcrumbs__wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 16px;
  }

  .mod-breadcrumbs.breadcrumb {
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: max-content;
    font-size: 0.9rem;
  }
}
/* ==========================================================================
   FIX — product title area cleanup
   ========================================================================== */

#comjshop.productfull form > hr.mt-0 {
  display: none !important;
}

#comjshop.productfull .d-flex.justify-content-between {
  margin-bottom: 0 !important;
}
/* ==========================================================================
   Pagination — каталог товаров
   ========================================================================== */

.pagination__wrapper {
  margin: 28px 0 10px;
  display: flex;
  justify-content: center;
}

.pagination__wrapper .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0 !important;
  padding: 0;
}

.pagination__wrapper .page-item {
  margin: 0;
}

.pagination__wrapper .page-link {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #e1e5ea;
  border-radius: 8px !important;
  background: #fff;

  color: #111;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;

  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pagination__wrapper .page-link:hover {
  background: #fff7cc;
  border-color: #ffd43b;
  color: #111;
  transform: translateY(-1px);
}

.pagination__wrapper .page-item.active .page-link,
.pagination__wrapper .page-link[aria-current="true"] {
  background: #ffd43b !important;
  border-color: #e0b800 !important;
  color: #111 !important;
  box-shadow: 0 4px 10px rgba(224, 184, 0, 0.22);
}

.pagination__wrapper .page-item.disabled .page-link {
  background: #f3f4f6;
  border-color: #e5e7eb;
  color: #b0b5bd;
  cursor: default;
  box-shadow: none;
  transform: none;
}

.pagination__wrapper .page-link .icon-angle-left,
.pagination__wrapper .page-link .icon-angle-right,
.pagination__wrapper .page-link .icon-angle-double-left,
.pagination__wrapper .page-link .icon-angle-double-right {
  font-size: 0.9rem;
  line-height: 1;
}

/* Текст "Показано 1 - 12 из ..." */
.counter,
.pagination-counter,
.pagecounter,
.jshop_pagination_counter {
  margin-top: 10px;
  text-align: center;
  color: #6b7280;
  font-size: 0.85rem;
}

/* Мобильная версия */
@media (max-width: 575.98px) {
  .pagination__wrapper {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }

  .pagination__wrapper .pagination {
    flex-wrap: nowrap;
    min-width: max-content;
  }

  .pagination__wrapper .page-link {
    min-width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}
/* ==========================================================================
   Nevigen JoomShopping AJAX Search
   Форма поиска + компактный AJAX-результат
   ========================================================================== */

.nevigen_jshop_extended_search_143 {
  width: 100%;
  margin-bottom: 1rem;
}

.nevigen_jshop_extended_search_143 .nevigen_jshop_extended_search_form {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 0 !important;
  margin: 0;
}

.nevigen_jshop_extended_search_143 .nevigen_jshop_extended_search_form .col {
  flex: 1 1 auto !important;
  min-width: 0;
  padding: 0 !important;
}

.nevigen_jshop_extended_search_143 .nevigen_jshop_extended_search_form .col-auto {
  flex: 0 0 auto !important;
  padding: 0 !important;
}

.nevigen_jshop_extended_search_143 .dropdown {
  position: relative;
  height: 100%;
}

.nevigen_jshop_extended_search_143 input.form-control {
  height: 48px;
  border-radius: 8px 0 0 8px !important;
  border: 1px solid #dfe3e7;
  border-right: 0;
  padding: 0 16px;
  font-size: 16px;
  box-shadow: none !important;
}

.nevigen_jshop_extended_search_143 input.form-control:focus {
  border-color: #111;
  box-shadow: none !important;
}

.nevigen_jshop_extended_search_143 button.btn {
  height: 48px;
  min-width: 104px;
  border-radius: 0 8px 8px 0 !important;
  background: #5d6f82 !important;
  color: #fff !important;
  border: 1px solid #5d6f82 !important;
  padding: 0 22px !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow: none !important;
}
.nevigen_jshop_extended_search_143 button.btn::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: -3px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.8 18.1C6.75 18.1 3.45 14.8 3.45 10.75C3.45 6.7 6.75 3.4 10.8 3.4C14.85 3.4 18.15 6.7 18.15 10.75C18.15 12.45 17.57 14.02 16.6 15.27L20.25 18.92C20.64 19.31 20.64 19.94 20.25 20.33C19.86 20.72 19.23 20.72 18.84 20.33L15.19 16.68C13.94 17.53 12.43 18.1 10.8 18.1ZM10.8 5.4C7.85 5.4 5.45 7.8 5.45 10.75C5.45 13.7 7.85 16.1 10.8 16.1C13.75 16.1 16.15 13.7 16.15 10.75C16.15 7.8 13.75 5.4 10.8 5.4Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.8 18.1C6.75 18.1 3.45 14.8 3.45 10.75C3.45 6.7 6.75 3.4 10.8 3.4C14.85 3.4 18.15 6.7 18.15 10.75C18.15 12.45 17.57 14.02 16.6 15.27L20.25 18.92C20.64 19.31 20.64 19.94 20.25 20.33C19.86 20.72 19.23 20.72 18.84 20.33L15.19 16.68C13.94 17.53 12.43 18.1 10.8 18.1ZM10.8 5.4C7.85 5.4 5.45 7.8 5.45 10.75C5.45 13.7 7.85 16.1 10.8 16.1C13.75 16.1 16.15 13.7 16.15 10.75C16.15 7.8 13.75 5.4 10.8 5.4Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nevigen_jshop_extended_search_143 button.btn:hover,
.nevigen_jshop_extended_search_143 button.btn:focus {
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

/* AJAX-выпадающий результат */
.nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"].dropdown-menu {
  width: 100% !important;
  min-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: 320px !important;
  overflow-y: auto !important;
  padding: 0 !important;
  margin-top: 4px !important;
  background: #fff !important;
  border: 1px solid #dfe3e7 !important;
  border-radius: 0 0 8px 8px !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12) !important;
  z-index: 1050 !important;
}

.nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] .list-group {
  margin: 0 !important;
  padding: 0 !important;
}

.nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] .list-group-item {
  padding: 12px 14px !important;
  margin: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #e5e7eb !important;
  background: #fff !important;
}

.nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] .list-group-item:last-child {
  border-bottom: 0 !important;
}

.nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] .row {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 14px !important;
  margin: 0 !important;
}

.nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] .col,
.nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] .col-auto {
  padding: 0 !important;
}

.nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] .col {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] .col-auto {
  flex: 0 0 auto !important;
}

.nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] img {
  width: 72px !important;
  height: 72px !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  background: #f7f7f7 !important;
}

.nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] a.fw-semibold {
  color: #171b60 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] .small {
  font-size: 14px !important;
  line-height: 1.25 !important;
}

.nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] .fw-bold {
  color: #111 !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}

/* Кнопка Подробнее в результате */
.nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] .btn {
  height: 42px !important;
  min-width: 120px !important;
  padding: 0 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffd43b !important;
  color: #111 !important;
  border: 1px solid #e0b800 !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: none !important;
}

.nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] .btn:hover,
.nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] .btn:focus {
  background: #e0b800 !important;
  color: #111 !important;
  border-color: #d1a900 !important;
}

/* Мобильная версия */
@media (max-width: 767.98px) {
  .nevigen_jshop_extended_search_143 .nevigen_jshop_extended_search_form {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .nevigen_jshop_extended_search_143 input.form-control {
    width: 100%;
    border-radius: 8px !important;
    border-right: 1px solid #dfe3e7;
  }

  .nevigen_jshop_extended_search_143 button.btn {
    width: 100%;
    border-radius: 8px !important;
  }

  .nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] .row {
    display: grid !important;
    grid-template-columns: 64px 1fr !important;
    gap: 10px !important;
  }

  .nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] img {
    width: 64px !important;
    height: 64px !important;
  }

  .nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] .row > .col-auto:last-child {
    grid-column: 1 / -1;
  }

  .nevigen_jshop_extended_search_143 [data-nevigen-jshop-search-products="result"] .btn {
    width: 100% !important;
  }
}
/* Количество — нейтральные кнопки, чтобы не конкурировали с "В корзину" */
#comjshop.productfull .qty-group .qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px !important;
  min-width: 46px !important;
  height: 48px !important;
  padding: 0 !important;
  background: #f1f3f5 !important;
  color: #111 !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

#comjshop.productfull .qty-group .qty-btn:hover,
#comjshop.productfull .qty-group .qty-btn:focus {
  background: #e5e7eb !important;
  color: #000 !important;
}

/* Границы между кнопками и полем количества */
#comjshop.productfull .qty-group .qty-btn[data-qty-minus] {
  border-right: 1px solid #d7dce3 !important;
}

#comjshop.productfull .qty-group .qty-btn[data-qty-plus] {
  border-left: 1px solid #d7dce3 !important;
}
/* ==========================================================================
   JoomShopping — product contact block
   Контактная карточка под панелью покупки
   ========================================================================== */

#comjshop.productfull .zh-product-contact {
  margin-top: 18px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

#comjshop.productfull .zh-product-contact__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #111;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

#comjshop.productfull .zh-product-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

#comjshop.productfull .zh-product-contact__text {
  margin: 0 0 14px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.45;
}

#comjshop.productfull .zh-product-contact__phones {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

#comjshop.productfull .zh-product-contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: #001b4c;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

#comjshop.productfull .zh-product-contact__phone:hover,
#comjshop.productfull .zh-product-contact__phone:focus {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#comjshop.productfull .zh-product-contact__phone span,
#comjshop.productfull .zh-product-contact__time span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

#comjshop.productfull .zh-product-contact__time {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.35;
}

@media (max-width: 575.98px) {
  #comjshop.productfull .zh-product-contact {
    padding: 16px;
  }

  #comjshop.productfull .zh-product-contact__phone {
    font-size: 1rem;
  }

  #comjshop.productfull .zh-product-contact__time {
    align-items: flex-start;
  }
}
/* FIX — compact buybar for long prices */
@media (min-width: 768px) {
  #comjshop.productfull .buybar {
    gap: 12px !important;
    padding: 14px 16px !important;
  }

  #comjshop.productfull .buybar .h3 {
    min-width: 120px !important;
    font-size: 1.85rem !important;
  }

  #comjshop.productfull .prod_qty_row {
    flex: 0 0 132px !important;
  }

  #comjshop.productfull .qty-group.input-group {
    width: 132px !important;
    grid-template-columns: 34px 1fr 34px !important;
  }

  #comjshop.productfull .qty-group .qty-btn {
    width: 34px !important;
    min-width: 34px !important;
    height: 42px !important;
    font-size: 1rem !important;
  }

  #comjshop.productfull .qty-group .qty-input {
    min-width: 42px !important;
    height: 42px !important;
    line-height: 42px !important;
    padding: 0 6px !important;
    font-size: 1rem !important;
  }

  #comjshop.productfull .buybar .buttons {
    flex: 1 1 160px !important;
    width: auto !important;
    min-width: 150px !important;
  }

  #comjshop.productfull .buybar .btn-buy {
    min-height: 42px !important;
    padding: 10px 14px !important;
    font-size: 1rem !important;
  }
}
/* ==========================================================================
   JoomShopping — availability badge in product list
   Бейдж "Есть в наличии" в карточках товаров
   ========================================================================== */

.block_product .available.text-success {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  margin: 0 auto 10px;
  padding: 4px 11px;
  background: #e8f4df;
  color: #3f7f28 !important;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.block_product .available.text-success::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #6cae3f;
}
/* JoomShopping — availability badge in product detail */
#comjshop.productfull .zh-product-availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: 0 0 12px;
  padding: 5px 12px;
  background: #e8f4df;
  color: #3f7f28;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
}

#comjshop.productfull .zh-product-availability::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #6cae3f;
}
/* ==========================================================================
   JoomShopping — no image fallback in product detail
   Заглушка товара в детальной карточке
   ========================================================================== */

#comjshop.productfull .zh-product-noimage {
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#comjshop.productfull .zh-product-noimage img {
  width: 100%;
  max-width: 420px;
  max-height: 420px;
  object-fit: contain;
  margin: 0 auto;
}

@media (max-width: 575.98px) {
  #comjshop.productfull .zh-product-noimage {
    min-height: 240px;
  }

  #comjshop.productfull .zh-product-noimage img {
    max-width: 320px;
    max-height: 320px;
  }
}
/* Header contacts: Жигули */

.navigator {
  min-height: 34px;
  background: #111;
  color: #f5f5f5;
  font-size: 14px;
  line-height: 1.3;
}

.navigator .container {
  min-height: 34px;
  gap: 20px;
}

.navigator a {
  color: inherit;
  text-decoration: none;
}

.navigator a:hover,
.navigator a:focus {
  color: #ffd12f;
}

.header .container > .d-flex {
  gap: 28px;
}

.header-brand {
  flex: 0 0 auto;
}

.header-menu {
  flex: 1 1 auto;
}

.header-contacts {
  flex: 0 0 auto;
  max-width: 230px;
  color: #111;
  font-size: 15px;
  line-height: 1.25;
  text-align: right;
  white-space: normal;
}

.header-contacts a {
  color: inherit;
  text-decoration: none;
}

.header-contacts a:hover,
.header-contacts a:focus {
  color: #111;
  text-decoration: underline;
  text-decoration-color: #ffd12f;
  text-underline-offset: 4px;
}

.header-enter {
  flex: 0 0 auto;
}

.mobile-contacts {
  padding: 16px 0 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  color: #111;
  font-size: 18px;
  line-height: 1.45;
}

.mobile-contacts a {
  color: inherit;
  text-decoration: none;
}

.mobile-contacts a:hover,
.mobile-contacts a:focus {
  color: #111;
  text-decoration: underline;
  text-decoration-color: #ffd12f;
  text-underline-offset: 4px;
}

@media (max-width: 1199.98px) {
  .navigator {
    font-size: 13px;
  }
}

@media (max-width: 991.98px) {
  .navigator {
    display: none;
  }

  .header .container > .d-flex {
    gap: 16px;
  }
}

@media (max-width: 575.98px) {
  .offcanvas {
    max-width: 86vw;
  }

  .mobile-contacts {
    font-size: 16px;
  }
}
/* Header contacts: Жигули v3 */

.navigator {
  min-height: 34px;
  background: #111;
  color: #f5f5f5;
  font-size: 14px;
  line-height: 1.3;
}

.navigator .container {
  min-height: 34px;
  gap: 20px;
}

.navigator a {
  color: inherit;
  text-decoration: none;
}

.navigator a:hover,
.navigator a:focus {
  color: #ffd12f;
}

.header .container > .d-flex {
  gap: 28px;
}

.header-brand {
  flex: 0 0 auto;
}

.header-menu {
  flex: 1 1 auto;
}

.header-contacts {
  flex: 0 0 auto;
  min-width: 210px;
  max-width: 240px;
  color: #111;
  font-size: 15px;
  line-height: 1.25;
  text-align: right;
}

.header-contacts .custom,
.header-contacts p {
  margin: 0;
}

.header-contacts a {
  display: block;
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.header-contacts span,
.header-contacts small {
  display: block;
  color: #222;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.header-contacts a:hover,
.header-contacts a:focus {
  color: #111;
  text-decoration: underline;
  text-decoration-color: #ffd12f;
  text-underline-offset: 4px;
}

.header-enter {
  flex: 0 0 auto;
}

.mobile-contacts {
  padding: 18px 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  color: #111;
  font-size: 16px;
  line-height: 1.45;
}

.mobile-contacts .custom,
.mobile-contacts p {
  margin: 0;
}

.mobile-contacts a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.mobile-contacts a:first-child {
  font-size: 18px;
  font-weight: 600;
}

.mobile-contacts span,
.mobile-contacts small {
  display: block;
  color: #333;
}

.mobile-contacts a:hover,
.mobile-contacts a:focus {
  color: #111;
  text-decoration: underline;
  text-decoration-color: #ffd12f;
  text-underline-offset: 4px;
}

@media (max-width: 1199.98px) {
  .navigator {
    font-size: 13px;
  }
}

@media (max-width: 991.98px) {
  .navigator {
    display: none;
  }

  .header .container > .d-flex {
    gap: 16px;
  }
}

@media (max-width: 575.98px) {
  .offcanvas {
    max-width: 86vw;
  }
}
/* Mobile offcanvas contacts */
.mobile-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #212529;
  font-size: 15px;
  line-height: 1.35;
}

.mobile-contact-row svg {
  flex: 0 0 18px;
  color: #f0b400;
}

.mobile-contact-row a {
  color: #212529;
  text-decoration: none;
  font-weight: 600;
}

.mobile-contact-row a:hover,
.mobile-contact-row a:focus {
  color: #000;
  text-decoration: underline;
}

.mobile-contact-row span {
  display: inline-block;
}

.mobile-contact-row:last-child {
  margin-bottom: 0;
}

/* VK icon row */
.mobile-contact-row a[aria-label*="ВКонтакте"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #212529;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-contact-row a[aria-label*="ВКонтакте"]:hover,
.mobile-contact-row a[aria-label*="ВКонтакте"]:focus {
  background: #f0b400;
  color: #000;
  text-decoration: none;
}/* ========================================================================
   Жигули: offcanvas menu v4
   Меню → корзина → контакты. Жёлтый акцент оставлен только для корзины.
   ======================================================================== */

/* Header inside mobile offcanvas */
.offcanvas .offcanvas-header {
  align-items: center;
  gap: 14px;
  padding: 18px 18px 14px;
}

.offcanvas .offcanvas-header .mod-custom p,
.offcanvas .offcanvas-header .moduletable {
  margin: 0;
}

.offcanvas .offcanvas-header img {
  display: block;
  width: auto;
  max-width: 225px;
  height: auto;
}

.offcanvas .btn-close {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  padding: 0;
  background-color: #f4f5f6;
  box-shadow: 0 0 0 1px #c9cdd2 inset;
  opacity: 1;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.offcanvas .btn-close:hover,
.offcanvas .btn-close:focus {
  background-color: #eceff1;
  box-shadow: 0 0 0 1px #9da3aa inset;
  transform: none;
}

/* Offcanvas menu: neutral style, no yellow underline/accent */
.offcanvas .mod-menu.mod-list.nav {
  display: block;
  margin: 10px 0 0;
  padding: 0;
}

.offcanvas .mod-menu.mod-list.nav > li {
  margin: 0;
}

.offcanvas .mod-menu.mod-list.nav > li > a {
  display: block;
  padding: 7px 0;
  color: #202124;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
}

.offcanvas .mod-menu.mod-list.nav > li > a::after {
  display: none !important;
  content: none !important;
}

.offcanvas .mod-menu.mod-list.nav > li.current > a,
.offcanvas .mod-menu.mod-list.nav > li.active > a,
.offcanvas .mod-menu.mod-list.nav > li > a:hover,
.offcanvas .mod-menu.mod-list.nav > li > a:focus {
  color: #000;
  text-decoration: none;
}

.offcanvas .mod-menu.mod-list.nav > li.current > a,
.offcanvas .mod-menu.mod-list.nav > li.active > a {
  font-weight: 700;
}

/* Shared section title */
.offcanvas-section-title {
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Mobile cart block */
.mobile-cart {
  padding: 18px 0;
  border-top: 1px solid #e4e6e8;
  border-bottom: 1px solid #e4e6e8;
}

.mobile-cart .moduletable,
.mobile-cart p {
  margin: 0;
}

.mobile-cart-action {
  display: flex;
  align-items: center;
}

.mobile-cart .wt-jshopping-cart-module-icon.btn {
  min-height: 46px;
  padding: 11px 16px !important;
  border-radius: 14px !important;
  gap: 10px;
}

.mobile-cart .wt-jshopping-cart-module-icon.btn::after {
  content: "Перейти в корзину";
  display: inline-block;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.mobile-cart .wt-jshopping-cart-module-icon.btn .fa-shopping-cart {
  font-size: 18px;
}

/* Contacts below cart */
.mobile-contacts {
  padding: 18px 0 0;
  border-top: 0;
  border-bottom: 0;
  color: #202124;
}

.mobile-contacts .moduletable,
.mobile-contacts .mod-custom,
.mobile-contacts p {
  margin: 0;
}

.mobile-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #202124;
  font-size: 15px;
  line-height: 1.35;
}

.mobile-contact-row svg {
  flex: 0 0 18px;
  margin-top: 2px;
  color: #6b7280;
}

.mobile-contact-row a {
  color: #202124;
  text-decoration: none;
  font-weight: 600;
}

.mobile-contact-row span {
  display: inline-block;
  color: #202124;
}

.mobile-contact-row a:hover,
.mobile-contact-row a:focus {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-contact-row:last-child {
  margin-bottom: 0;
}

/* VK: neutral small button */
.mobile-contact-row a[aria-label*="ВКонтакте"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f3f5;
  color: #4b5563;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.mobile-contact-row a[aria-label*="ВКонтакте"] svg {
  flex: 0 0 22px;
  margin-top: 0;
  color: currentColor;
}

.mobile-contact-row a[aria-label*="ВКонтакте"]:hover,
.mobile-contact-row a[aria-label*="ВКонтакте"]:focus {
  background: #e5e7eb;
  color: #111;
  text-decoration: none;
}

@media (max-width: 575.98px) {
  .offcanvas {
    max-width: 86vw;
  }

  .offcanvas .offcanvas-header img {
    max-width: 210px;
  }

  .mobile-cart .wt-jshopping-cart-module-icon.btn::after {
    font-size: 14px;
  }
}
/* ======================================================================
   Жигули — desktop header/topbar polish v5
   Задачи: разделить адрес/email, выровнять меню по центру,
   добавить CSS-иконки к телефону/времени, не трогать корзину.
   ====================================================================== */

/* Верхняя контактная панель */
.navigator {
  background: #5d6f82;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.navigator .container {
  min-height: 28px;
  gap: 16px;
}

.navigator .mod-custom,
.navigator .mod-custom p {
  margin: 5px;
}

.navigator a {
  color: inherit;
  text-decoration: none;
}

.navigator a:hover,
.navigator a:focus {
  color: #ffd43b;
  text-decoration: none;
}

/* Адрес + email в верхней панели */
.navigator .topbar-address,
.navigator .topbar-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.navigator .topbar-address::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.navigator .topbar-email::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2Zm0 4-8 5-8-5V6l8 5 8-5v2Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2Zm0 4-8 5-8-5V6l8 5 8-5v2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.navigator .topbar-address + .topbar-email::before {
  margin-left: 14px;
}

/* VK в верхней панели: нормальная зона клика */
.navigator [aria-label*="ВКонтакте"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #fff;
  transition: background-color .2s ease, color .2s ease;
}

.navigator [aria-label*="ВКонтакте"]:hover,
.navigator [aria-label*="ВКонтакте"]:focus {
  background: rgba(255, 255, 255, .12);
  color: #ffd43b;
}

/* Основная шапка: логотип слева, меню в растягиваемом центре, контакты/корзина справа */
header.header.container-header .container > .d-flex {
  gap: 24px;
}

.header-brand {
  flex: 0 0 auto;
}

.header-brand .mod-custom p {
  margin: 0;
}

.header-menu {
  flex: 1 1 auto;
  min-width: 0;
}

.header-menu .mod-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 26px;
  width: 100%;
}

.header-menu .mod-menu > li > a {
  white-space: nowrap;
}

.header-contacts {
  flex: 0 0 auto;
  min-width: 190px;
  text-align: left;
}

.header-contacts .mod-custom {
  display: grid;
  gap: 2px;
  line-height: 1.2;
}

.header-contacts a,
.header-contacts span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
}

.header-contacts a {
  font-weight: 700;
  font-size: 17px;
}

.header-contacts span {
  font-size: 15px;
  font-weight: 400;
  color: #000;
}

.header-contacts a::before,
.header-contacts span::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  background: #000;
}

.header-contacts a::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.8 21 3 13.2 3 3.7c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.8 21 3 13.2 3 3.7c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.header-contacts span::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2Zm1 10.4V6h-2v7.2l5 3 .9-1.6-3.9-2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2Zm1 10.4V6h-2v7.2l5 3 .9-1.6-3.9-2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.header-enter {
  flex: 0 0 auto;
  margin-left: 0;
}

/* На средних десктопах чуть сжимаем промежутки меню, не трогая общую высоту */
@media (max-width: 1399.98px) {
  header.header.container-header .container > .d-flex {
    gap: 18px;
  }

  .header-menu .mod-menu {
    gap: 20px;
  }

  .header-contacts {
    min-width: 180px;
  }

  .header-contacts a {
    font-size: 16px;
  }

  .header-contacts span {
    font-size: 14px;
  }
}

@media (max-width: 1199.98px) {
  .navigator {
    display: none;
  }
}
/* Footer contacts */
.footer-info-module__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  column-gap: 10px;
  color: #111;
  font-size: 16px;
  line-height: 1.45;
}

.footer-contact-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f3438;
  margin-top: 1px;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-info-module__contacts .footer-info-module__link {
  color: #111;
  text-decoration: none;
  font-weight: 500;
}

.footer-info-module__contacts .footer-info-module__link:hover,
.footer-info-module__contacts .footer-info-module__link:focus {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* Popular products module: horizontal carousel without override */
.nevigen_jshop_latest_products {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.nevigen_jshop_latest_products > .row {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
}

.nevigen_jshop_latest_products > .row > [class*="col-"] {
  flex: 0 0 25%;
  max-width: 25%;
  scroll-snap-align: start;
}

.nevigen_jshop_latest_products > .row::-webkit-scrollbar {
  height: 8px;
}

.nevigen_jshop_latest_products > .row::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 20px;
}

.nevigen_jshop_latest_products > .row::-webkit-scrollbar-thumb {
  background: #ffcc29;
  border-radius: 20px;
}

.nevigen_jshop_latest_products > .row::-webkit-scrollbar-thumb:hover {
  background: #d9a900;
}

@media (max-width: 767.98px) {
  .nevigen_jshop_latest_products > .row {
    margin-left: 0;
    margin-right: 0;
  }

  .nevigen_jshop_latest_products > .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.section-head p {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
    color: #5f5a54;
}
/* Home popular products section */
.home-popular {
  padding: 48px 0 64px;
}

.home-popular .section-head {
  max-width: 760px;
  margin-bottom: 28px !important;
}

.home-popular .section-head h2 {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
}

.home-popular .section-head p {
  max-width: 680px;
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #555;
}

.home-popular .moduletable h3 {
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  color: #111;
}

.home-popular .shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 28px;
  border-radius: 8px;
  background: #ffcc29;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-popular .shop-btn:hover,
.home-popular .shop-btn:focus {
  background: #f2bd00;
  color: #111;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

/* Desktop */
@media (min-width: 768px) {
  .home-popular {
    padding-top: 52px;
    padding-bottom: 72px;
  }

  .home-popular .section-head {
    margin-bottom: 30px !important;
  }

  .home-popular .text-center.mt-4 {
    margin-top: 48px !important;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .home-popular {
    padding: 34px 0 48px;
  }

  .home-popular .section-head {
    margin-bottom: 20px !important;
  }

  .home-popular .section-head h2 {
    font-size: 26px;
  }

  .home-popular .section-head p {
    font-size: 15px;
    line-height: 1.5;
  }

  .home-popular .moduletable h3 {
    margin-bottom: 14px;
    font-size: 22px;
  }

  .home-popular .text-center.mt-4 {
    margin-top: 30px !important;
  }

  .home-popular .shop-btn {
    width: 100%;
    max-width: 320px;
  }
}
/* Home about shop section */
.home-about-shop {
  padding: 56px 0 72px;
  background: #fff;
}

.home-about-shop__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 56px;
  align-items: center;
}

.home-about-shop__content {
  max-width: 720px;
}

.home-about-shop__content h2 {
  margin: 0 0 22px;
  font-size: 36px;
  line-height: 1.18;
  font-weight: 800;
  color: #111;
}

.home-about-shop__content p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.65;
  color: #333;
}

.home-about-shop__content ul {
  margin: 24px 0 0;
  padding-left: 22px;
}

.home-about-shop__content li {
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.55;
  color: #333;
}

.home-about-shop__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 28px;
  padding: 13px 30px;
  border-radius: 8px;
  background: #ffcc29;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-about-shop__btn:hover,
.home-about-shop__btn:focus {
  background: #f2bd00;
  color: #111;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.home-about-shop__media {
  overflow: hidden;
  border-radius: 22px;
  background: #f1f1f1;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.home-about-shop__media img {
  display: block;
  width: 100%;
  height: auto;
}

/* Tablet */
@media (max-width: 991.98px) {
  .home-about-shop {
    padding: 48px 0 60px;
  }

  .home-about-shop__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-about-shop__content {
    max-width: none;
  }

  .home-about-shop__media {
    max-width: 640px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .home-about-shop {
    padding: 38px 0 50px;
  }

  .home-about-shop__grid {
    gap: 28px;
  }

  .home-about-shop__content h2 {
    margin-bottom: 18px;
    font-size: 27px;
    line-height: 1.22;
  }

  .home-about-shop__content p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
  }

  .home-about-shop__content ul {
    margin-top: 18px;
    padding-left: 20px;
  }

  .home-about-shop__content li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
  }

  .home-about-shop__btn {
    width: 100%;
    max-width: 320px;
    margin-top: 22px;
  }

  .home-about-shop__media {
    border-radius: 16px;
  }
}
/* Contacts page */
.contacts-page {
  padding: 48px 0 72px;
  background: #fff;
}

.contacts-page__head {
  max-width: 840px;
  margin-bottom: 34px;
}

.contacts-page__head h1 {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
}

.contacts-page__head p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}

.contacts-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
}

.contacts-card {
  height: 100%;
  padding: 30px;
  border-radius: 18px;
  background: #f5f6f7;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.contacts-card h2 {
  margin: 0 0 24px;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
  color: #111;
}

.contacts-card--main {
  border-left: 5px solid #5d6f82;
}

.contacts-list {
  display: grid;
  gap: 20px;
}

.contacts-list__item {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contacts-list__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contacts-list__label {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #66717d;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.contacts-list__value {
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  color: #111;
}

.contacts-list__value a {
  color: #111;
  text-decoration: none;
}

.contacts-list__value a:hover,
.contacts-list__value a:focus {
  color: #d6a900;
  text-decoration: underline;
}

.contacts-card--legal {
  background: #fff;
  border: 1px solid #e5e8eb;
}

.legal-list {
  display: grid;
  gap: 0;
}

.legal-list__row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eef0f2;
}

.legal-list__row:first-child {
  padding-top: 0;
}

.legal-list__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-list__row span {
  font-size: 14px;
  line-height: 1.45;
  color: #66717d;
}

.legal-list__row strong {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  color: #111;
  overflow-wrap: anywhere;
}

.legal-list__row--address {
  align-items: start;
}

.contacts-map {
  padding: 30px;
  border-radius: 18px;
  background: #f5f6f7;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.contacts-map__head {
  margin-bottom: 22px;
}

.contacts-map__head h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 800;
  color: #111;
}

.contacts-map__head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #444;
}

.contacts-map__frame {
  overflow: hidden;
  border-radius: 16px;
  background: #e9ecef;
}

.contacts-map__frame iframe {
  width: 100%;
  min-height: 400px;
  border: 0;
}

/* Tablet */
@media (max-width: 991.98px) {
  .contacts-page {
    padding: 42px 0 60px;
  }

  .contacts-page__head h1 {
    font-size: 36px;
  }

  .contacts-page__grid {
    grid-template-columns: 1fr;
  }

  .contacts-card {
    padding: 26px;
  }

  .legal-list__row {
    grid-template-columns: 140px minmax(0, 1fr);
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .contacts-page {
    padding: 32px 0 48px;
  }

  .contacts-page__head {
    margin-bottom: 24px;
  }

  .contacts-page__head h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .contacts-page__head p {
    font-size: 15px;
    line-height: 1.55;
  }

  .contacts-page__grid {
    gap: 20px;
    margin-bottom: 22px;
  }

  .contacts-card {
    padding: 22px;
    border-radius: 16px;
  }

  .contacts-card h2 {
    margin-bottom: 18px;
    font-size: 23px;
  }

  .contacts-list {
    gap: 16px;
  }

  .contacts-list__item {
    padding-bottom: 15px;
  }

  .contacts-list__label {
    font-size: 12px;
  }

  .contacts-list__value {
    font-size: 17px;
  }

  .legal-list__row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }

  .legal-list__row span {
    font-size: 13px;
  }

  .legal-list__row strong {
    font-size: 14px;
  }

  .contacts-map {
    padding: 20px;
    border-radius: 16px;
  }

  .contacts-map__head {
    margin-bottom: 16px;
  }

  .contacts-map__head h2 {
    font-size: 25px;
  }

  .contacts-map__head p {
    font-size: 15px;
  }

  .contacts-map__frame {
    border-radius: 12px;
  }

  .contacts-map__frame iframe {
    min-height: 340px;
  }
}
/* ================================
   Страница услуги: Шиномонтаж
   Магазин «Жигули»
   Светлая версия под дизайн главной
   ================================ */

.zh-page--tyre-service {
  --zh-bg: #ffffff;
  --zh-section-bg: #f4f5f6;
  --zh-card-bg: #ffffff;

  --zh-text: #1f2328;
  --zh-muted: #5f6872;
  --zh-soft-text: #7a838d;

  --zh-yellow: #ffcf24;
  --zh-yellow-hover: #f2bd00;
  --zh-yellow-soft: #fff4c2;

  --zh-blue-gray: #607588;
  --zh-blue-gray-dark: #4f6375;

  --zh-border: #e3e6ea;
  --zh-border-strong: #d4d9df;

  --zh-radius-sm: 10px;
  --zh-radius: 14px;
  --zh-radius-lg: 18px;

  --zh-shadow-sm: 0 6px 16px rgba(31, 35, 40, 0.06);
  --zh-shadow: 0 12px 28px rgba(31, 35, 40, 0.08);

  color: var(--zh-text);
  background: var(--zh-bg);
  font-size: 16px;
  line-height: 1.6;
}

.zh-page--tyre-service * {
  box-sizing: border-box;
}

.zh-page--tyre-service a {
  color: var(--zh-text);
  text-decoration: none;
}

.zh-page--tyre-service a:hover {
  color: var(--zh-text);
  text-decoration: none;
}

.zh-container {
  margin: 0 auto;
}

.zh-section {
  padding: 54px 0;
  background: var(--zh-bg);
}

.zh-section:nth-of-type(even) {
  background: var(--zh-section-bg);
}

/* ================================
   Первый экран
   ================================ */

.zh-section--hero {
  padding: 28px 0 46px;
  background: var(--zh-bg);
  color: var(--zh-text);
}

.zh-hero {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 48px 56px;
  border-radius: var(--zh-radius-lg);
  background:
    linear-gradient(90deg, rgba(238, 240, 242, 0.98) 0%, rgba(238, 240, 242, 0.92) 52%, rgba(238, 240, 242, 0.72) 100%),
    var(--zh-section-bg);
  box-shadow: none;
}

.zh-hero::after {
  content: "";
  position: absolute;
  right: 46px;
  bottom: -34px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(31, 35, 40, 0.1) 0 34%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(255, 207, 36, 0.92) 0 18%, transparent 19%);
  opacity: 0.5;
  pointer-events: none;
}

.zh-hero__content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.zh-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--zh-yellow);
  color: var(--zh-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.zh-hero h1 {
  margin: 0 0 18px;
  color: var(--zh-text);
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.zh-hero__lead {
  max-width: 620px;
  margin: 0 0 16px;
  color: var(--zh-text);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}

.zh-hero p {
  max-width: 620px;
  margin-top: 0;
  color: var(--zh-muted);
}

.zh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* ================================
   Кнопки
   ================================ */

.zh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.zh-btn:hover {
  transform: translateY(-1px);
}

.zh-btn--primary {
  background: var(--zh-yellow);
  color: var(--zh-text) !important;
  box-shadow: 0 8px 18px rgba(255, 207, 36, 0.34);
}

.zh-btn--primary:hover {
  background: var(--zh-yellow-hover);
  color: var(--zh-text) !important;
}

.zh-btn--secondary {
  background: var(--zh-text);
  color: #ffffff !important;
}

.zh-btn--secondary:hover {
  background: #000000;
  color: #ffffff !important;
}

.zh-btn--outline {
  background: #ffffff;
  border-color: var(--zh-border-strong);
  color: var(--zh-text) !important;
}

.zh-btn--outline:hover {
  background: var(--zh-section-bg);
  border-color: var(--zh-blue-gray);
  color: var(--zh-text) !important;
}

/* ================================
   Заголовки секций
   ================================ */

.zh-section__head {
  max-width: 820px;
  margin-bottom: 28px;
}

.zh-section__head h2 {
  margin: 0 0 12px;
  color: var(--zh-text);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.zh-section__head p {
  margin: 0;
  color: var(--zh-muted);
  font-size: 17px;
  line-height: 1.6;
}

.zh-section p {
  margin-top: 0;
}

/* ================================
   Сетки и карточки
   ================================ */

.zh-grid {
  display: grid;
  gap: 18px;
}

.zh-grid--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zh-grid--advantages {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.zh-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--zh-border);
  border-radius: var(--zh-radius);
  background: var(--zh-card-bg);
  box-shadow: var(--zh-shadow-sm);
}

.zh-card::before {
  content: "";
  display: block;
  width: 46px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--zh-yellow);
}

.zh-card h3 {
  margin: 0 0 10px;
  color: var(--zh-text);
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
}

.zh-card p {
  margin: 0;
  color: var(--zh-muted);
  font-size: 15px;
}

/* ================================
   Список причин обращения
   ================================ */

.zh-list-box {
  padding: 26px;
  border-radius: var(--zh-radius);
  background: #ffffff;
  border: 1px solid var(--zh-border);
  box-shadow: var(--zh-shadow-sm);
}

.zh-list-box ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zh-list-box li {
  position: relative;
  padding-left: 22px;
  color: var(--zh-text);
}

.zh-list-box li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--zh-yellow);
  box-shadow: 0 0 0 3px rgba(255, 207, 36, 0.25);
}

/* ================================
   Шаги работы
   ================================ */

.zh-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: zh-step;
}

.zh-steps li {
  counter-increment: zh-step;
  position: relative;
  min-height: 132px;
  padding: 58px 20px 20px;
  border-radius: var(--zh-radius);
  background: #ffffff;
  border: 1px solid var(--zh-border);
  box-shadow: var(--zh-shadow-sm);
  color: var(--zh-text);
  font-size: 15px;
}

.zh-steps li::before {
  content: counter(zh-step);
  position: absolute;
  top: 18px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--zh-yellow);
  color: var(--zh-text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

/* ================================
   Примечания
   ================================ */

.zh-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 5px solid var(--zh-yellow);
  border-radius: 10px;
  background: var(--zh-yellow-soft);
  color: var(--zh-text);
  font-size: 15px;
}

/* ================================
   Таблица цен
   ================================ */

.zh-table-wrap {
  overflow-x: auto;
  border-radius: var(--zh-radius);
  border: 1px solid var(--zh-border);
  background: #ffffff;
  box-shadow: var(--zh-shadow-sm);
}

.zh-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: #ffffff;
}

.zh-table th,
.zh-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--zh-border);
  text-align: left;
  vertical-align: top;
}

.zh-table th {
  background: var(--zh-blue-gray);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.zh-table tr:last-child td {
  border-bottom: 0;
}

.zh-table td {
  color: var(--zh-text);
}

.zh-table td:last-child {
  width: 220px;
  color: var(--zh-text);
  font-weight: 900;
}

.zh-table td:last-child::first-letter {
  text-transform: uppercase;
}

/* ================================
   Контакты
   ================================ */

.zh-contact-card {
  display: grid;
  gap: 10px;
  max-width: 720px;
  padding: 28px;
  border-radius: var(--zh-radius);
  background: #ffffff;
  color: var(--zh-text);
  border: 1px solid var(--zh-border);
  box-shadow: var(--zh-shadow-sm);
}

.zh-contact-card p {
  margin: 0;
  color: var(--zh-muted);
}

.zh-contact-card strong {
  color: var(--zh-text);
}

.zh-contact-card a {
  color: var(--zh-text);
  font-weight: 900;
  border-bottom: 2px solid var(--zh-yellow);
}

.zh-contact-card a:hover {
  color: var(--zh-text);
  border-bottom-color: var(--zh-yellow-hover);
}

/* ================================
   Карта
   ================================ */

.zh-map-placeholder {
  align-items: center;
  min-height: 320px;
  padding: 30px;
  border: 1px dashed var(--zh-border-strong);
  border-radius: var(--zh-radius);
  background:
    linear-gradient(135deg, rgba(255, 207, 36, 0.14), rgba(96, 117, 136, 0.08)),
    #ffffff;
  color: var(--zh-muted);
  text-align: center;
}

.zh-map-placeholder p {
  margin: 0;
  color: var(--zh-muted);
  font-weight: 700;
}

/* ================================
   FAQ
   ================================ */

.zh-faq {
  display: grid;
  gap: 14px;
}

.zh-faq__item {
  padding: 22px 24px;
  border-radius: var(--zh-radius);
  border: 1px solid var(--zh-border);
  background: #ffffff;
  box-shadow: var(--zh-shadow-sm);
}

.zh-faq__item h3 {
  margin: 0 0 9px;
  color: var(--zh-text);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.zh-faq__item p {
  margin: 0;
  color: var(--zh-muted);
  font-size: 15px;
}

/* ================================
   Финальный CTA
   ================================ */

.zh-section--cta {
  background: var(--zh-bg) !important;
  padding-bottom: 64px;
}

.zh-cta {
  padding: 36px 40px;
  border-radius: var(--zh-radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 207, 36, 0.22), rgba(255, 255, 255, 0.96)),
    #ffffff;
  border: 1px solid var(--zh-border);
  box-shadow: var(--zh-shadow);
}

.zh-cta h2 {
  margin: 0 0 14px;
  color: var(--zh-text);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.zh-cta p {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--zh-muted);
}

/* ================================
   Выравнивание отдельных секций
   ================================ */

.zh-section--services {
  padding-top: 50px;
}

.zh-section--contacts .zh-section__head {
  margin-bottom: 22px;
}

.zh-section--map .zh-section__head {
  margin-bottom: 22px;
}

/* ================================
   Адаптив
   ================================ */

@media (max-width: 1024px) {
  .zh-hero {
    padding: 42px;
  }

  .zh-hero::after {
    right: -70px;
    bottom: -80px;
    opacity: 0.34;
  }

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

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

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

@media (max-width: 768px) {
  .zh-container {
    width: min(100% - 24px, 1180px);
  }

  .zh-section {
    padding: 42px 0;
  }

  .zh-section--hero {
    padding: 18px 0 40px;
  }

  .zh-hero {
    min-height: auto;
    padding: 34px 24px;
    border-radius: 14px;
  }

  .zh-hero::after {
    display: none;
  }

  .zh-hero h1 {
    font-size: 34px;
  }

  .zh-hero__lead {
    font-size: 18px;
  }

  .zh-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .zh-btn {
    width: 100%;
  }

  .zh-list-box ul {
    grid-template-columns: 1fr;
  }

  .zh-grid--services,
  .zh-grid--advantages,
  .zh-steps {
    grid-template-columns: 1fr;
  }

  .zh-card,
  .zh-list-box,
  .zh-contact-card,
  .zh-cta {
    padding: 22px;
  }

  .zh-map-placeholder {
    min-height: 240px;
  }
}

@media (max-width: 480px) {
  .zh-page--tyre-service {
    font-size: 15px;
  }

  .zh-container {
    width: min(100% - 20px, 1180px);
  }

  .zh-hero {
    padding: 28px 20px;
  }

  .zh-hero h1 {
    font-size: 30px;
  }

  .zh-section__head p {
    font-size: 16px;
  }

  .zh-table {
    min-width: 520px;
  }

  .zh-table th,
  .zh-table td {
    padding: 14px;
  }

  .zh-faq__item {
    padding: 18px;
  }
}
/* ================================
   Шиномонтаж: правки после визуальной проверки
   ================================ */

/* Общая ширина страницы: ближе к главной */
.zh-container {
}

/* Убираем автоматические серые фоны у секций */
.zh-section:nth-of-type(even) {
  background: #ffffff;
}

/* Делаем серые панели внутри нужных секций, со скруглением */
.zh-section--services .zh-container,
.zh-section--shop .zh-container,
.zh-section--prices .zh-container,
.zh-section--map .zh-container {
  padding: 42px 48px;
  border-radius: 16px;
  background: #f4f5f6;
}

/* Hero: делаем шире, чище, без случайного круга */
.zh-section--hero {
  padding: 28px 0 42px;
  background: #ffffff;
}

.zh-hero {
  min-height: auto;
  padding: 48px 56px;
  border-radius: 16px;
  background: #eef0f2;
  box-shadow: none;
}

.zh-hero::after {
  display: none;
}

.zh-hero__content {
  max-width: 720px;
}

/* Hero-текст */
.zh-hero h1 {
  max-width: 620px;
  margin-bottom: 18px;
}

.zh-hero__lead {
  max-width: 700px;
}

.zh-hero p {
  max-width: 700px;
}

/* Кнопки: ближе к главной */
.zh-btn {
  min-height: 42px;
  padding: 11px 20px;
  border-radius: 7px;
  font-size: 14px;
}

.zh-btn--primary {
  background: #ffcf24;
  color: #1f2328 !important;
  box-shadow: 0 6px 14px rgba(255, 207, 36, 0.32);
}

.zh-btn--primary:hover {
  background: #f2bd00;
}

.zh-btn--secondary {
  background: #607588;
  color: #ffffff !important;
}

.zh-btn--outline {
  background: #ffffff;
  border-color: #d4d9df;
  color: #1f2328 !important;
}

/* Карточки: чуть спокойнее, меньше тяжести */
.zh-card {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(31, 35, 40, 0.06);
}

.zh-card::before {
  width: 38px;
  height: 4px;
  margin-bottom: 16px;
}

/* Список причин обращения */
.zh-list-box {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(31, 35, 40, 0.06);
}

/* Шаги: убираем ощущение разрозненных мелких плиток */
.zh-steps {
  gap: 14px;
}

.zh-steps li {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(31, 35, 40, 0.06);
}

/* Примечания: спокойнее */
.zh-note {
  border-left: 4px solid #ffcf24;
  background: #fff3bd;
  border-radius: 8px;
}

/* Таблица: скругление и аккуратнее верх */
.zh-table-wrap {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(31, 35, 40, 0.06);
}

.zh-table th:first-child {
  border-top-left-radius: 12px;
}

.zh-table th:last-child {
  border-top-right-radius: 12px;
}

/* Контакты: убираем странное подчёркивание */
.zh-contact-card {
  max-width: 620px;
  padding: 26px 28px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(31, 35, 40, 0.06);
}

.zh-contact-card a {
  color: #1f2328;
  font-weight: 800;
  border-bottom: 0;
}

.zh-contact-card a:hover {
  color: #1f2328;
  border-bottom: 2px solid #ffcf24;
}

/* Карта: убираем грязный жёлтый градиент */
.zh-map-placeholder {
  min-height: 300px;
  border-radius: 12px;
  border: 1px dashed #cfd5dc;
  background: #ffffff;
}

/* FAQ: выравниваем по общей логике */
.zh-faq__item {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(31, 35, 40, 0.05);
}

/* Финальный CTA: чистая карточка, без грязного градиента */
.zh-section--cta {
  background: #ffffff !important;
  padding-top: 42px;
  padding-bottom: 72px;
}

.zh-section--cta .zh-container {
  display: flex;
  justify-content: flex-start;
}

.zh-cta {
  width: 100%;
  padding: 34px 38px;
  border-radius: 16px;
  background: #f4f5f6;
  border: 1px solid #e3e6ea;
  box-shadow: 0 10px 24px rgba(31, 35, 40, 0.07);
}

.zh-cta h2 {
  max-width: 620px;
}

.zh-cta p {
  max-width: 640px;
}

/* Чтобы финальный блок не выглядел случайно маленьким */
.zh-cta .zh-actions {
  margin-top: 22px;
}

/* Мобильная версия */
@media (max-width: 768px) {
  .zh-container {
    width: min(100% - 24px, 1120px);
  }

  .zh-section--services .zh-container,
  .zh-section--shop .zh-container,
  .zh-section--prices .zh-container,
  .zh-section--map .zh-container {
    padding: 30px 22px;
    border-radius: 14px;
  }

  .zh-hero {
    padding: 34px 24px;
    border-radius: 14px;
  }

  .zh-section--cta .zh-container {
    display: block;
  }

  .zh-cta {
    max-width: none;
    padding: 28px 22px;
  }
}

@media (max-width: 480px) {
  .zh-container {
    width: min(100% - 20px, 1120px);
  }

  .zh-section--services .zh-container,
  .zh-section--shop .zh-container,
  .zh-section--prices .zh-container,
  .zh-section--map .zh-container {
    padding: 26px 18px;
  }

  .zh-hero {
    padding: 28px 20px;
  }
}
.footer-legal {
  margin-top: 24px;
}

.footer-legal .footer-bottom {
  padding: 14px 0 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-legal .footer-bottom .moduletable,
.footer-legal .footer-bottom .mod-custom {
  margin: 0;
}

.footer-legal .footer-bottom,
.footer-legal .footer-bottom p,
.footer-legal .footer-bottom span,
.footer-legal .footer-bottom a {
  font-size: 13px;
  line-height: 1.55;
  color: #5f6873;
}

.footer-legal .footer-bottom-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 7px;
}

.footer-legal .footer-bottom-line__copy {
  margin-right: 22px;
  white-space: nowrap;
}

.footer-legal .footer-bottom-line a {
  position: relative;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

.footer-legal .footer-bottom-line a:hover,
.footer-legal .footer-bottom-line a:focus {
  color: #1B567F;
  text-decoration: none;
}

.footer-legal .footer-bottom-line a + a {
  padding-left: 10px;
}

.footer-legal .footer-bottom-line a + a::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(95, 104, 115, 0.55);
}
#sp-cookie-consent.position-bottom {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  width: auto;
  z-index: 9999;
  display: block;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  pointer-events: none;
  animation: cookieFadeUp .35s ease-out;
}

#sp-cookie-consent.position-bottom > div {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #dfe5ee;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
  padding: 16px 20px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px;
  pointer-events: auto;
}

#sp-cookie-consent.position-bottom > div > .sp-cookie-consent-content {
  flex: 1 1 auto !important;
  margin: 0;
  color: #1f2937;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

#sp-cookie-consent.position-bottom > div > .sp-cookie-consent-content a {
  color: #1B567F;
  font-weight: 600;
  text-decoration: none;
}

#sp-cookie-consent.position-bottom > div > .sp-cookie-consent-content a:hover,
#sp-cookie-consent.position-bottom > div > .sp-cookie-consent-content a:focus {
  text-decoration: underline;
}

#sp-cookie-consent.position-bottom > div > .sp-cookie-consent-action {
  flex: 0 0 auto !important;
  max-width: none !important;
  width: auto !important;
  margin: 0 0 0 8px !important;
  text-align: right !important;
}

#sp-cookie-consent.position-bottom .sp-cookie-close.sp-cookie-allow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px !important;
  padding: 0 20px !important;
  background: #54687f;
  color: #ffffff !important;
  border: 0;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  transition: background-color .2s ease, transform .2s ease;
}

#sp-cookie-consent.position-bottom .sp-cookie-close.sp-cookie-allow:hover,
#sp-cookie-consent.position-bottom .sp-cookie-close.sp-cookie-allow:focus {
  background: #3385c2;
  color: #ffffff !important;
  text-decoration: none;
  transform: translateY(-1px);
}
@media (max-width: 767.98px) {
  .banner-block .row {
    display: flex;
    flex-direction: column;
  }

  .banner-block .row > .col-md-6:first-child {
    order: 2;
  }

  .banner-block .row > .col-md-6:last-child {
    order: 1;
  }

  .banner-block .moduletable.hero_right {
    float: none;
    text-align: center;
  }

  .banner-block .moduletable.hero_right img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
  }
}
/* ================================
   Шиномонтаж: картинка в hero справа
   ================================ */

.zh-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 36px;
}

.zh-hero__content {
  max-width: 640px;
}

.zh-hero__media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.zh-hero__media img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}

/* Планшет */
@media (max-width: 991.98px) {
  .zh-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .zh-hero__content {
    max-width: 100%;
  }

  .zh-hero__media {
    justify-content: center;
  }

  .zh-hero__media img {
    max-width: 620px;
  }
}

/* Мобильная версия */
@media (max-width: 575.98px) {
  .zh-hero__media img {
    max-width: 100%;
    border-radius: 12px;
  }
}
/* ================================
   Шиномонтаж: мобильная картинка hero
   ================================ */

@media (max-width: 575.98px) {
  .zh-hero {
    gap: 18px;
  }

  .zh-hero__media {
    margin-top: 6px;
  }

  .zh-hero__media img {
    width: 100%;
    max-width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
  }
}