:root {
  --bg: #07090c;
  --bg-2: #0b0f14;
  --bg-3: #111722;
  --panel: rgba(13, 17, 24, 0.78);
  --panel-2: rgba(17, 22, 31, 0.92);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.13);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --muted-2: rgba(255, 255, 255, 0.52);
  --accent: #e60012;
  --accent-2: #ff3347;
  --success: #87d8a4;
  --danger: #ff8f8f;
  --warning: #f1bb6b;
  --shadow-hero: 0 40px 100px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 24px 54px rgba(0, 0, 0, 0.32);
  --container: 1400px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.28s ease;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 12% 0%, rgba(230, 0, 18, 0.12), transparent 24%), radial-gradient(circle at 88% 10%, rgba(255, 51, 71, 0.1), transparent 26%), linear-gradient(180deg, #05070a 0%, #0a0d12 42%, #0f141b 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
select,
input {
  font: inherit;
}
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}
.cc-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(20px);
  background: rgba(7, 9, 12, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cc-header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cc-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.cc-brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(230, 0, 18, 0.26), rgba(255, 51, 71, 0.18)), rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.cc-brand__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cc-brand__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cc-brand__sub {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.cc-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.cc-nav__link {
  position: relative;
  font-size: 14px;
  color: var(--muted);
  transition: color var(--transition-normal);
}
.cc-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.52);
  transition: width var(--transition-normal);
}
.cc-nav__link:hover {
  color: #fff;
}
.cc-nav__link:hover::after {
  width: 100%;
}
.cc-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cc-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(230, 0, 18, 0.28);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.cc-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(230, 0, 18, 0.34);
}
.cc-header__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.cc-header__icon:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.cc-header__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-header__user {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.cc-header__user:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.cc-header__account {
  position: relative;
}
.cc-header__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  padding: 8px 0;
  border-radius: 16px;
  background: var(--bg-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: 90;
}
.cc-header__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cc-header__dropdown-link {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--muted);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.cc-header__dropdown-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.cc-header__mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.cc-icon {
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: color var(--transition-fast);
}
.cc-header__icon:hover .cc-icon,
.cc-header__user:hover .cc-icon {
  color: #fff;
}
.cc-hero {
  padding: 32px 0 34px;
}
.cc-hero__shell {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, rgba(7, 10, 14, 0.92) 0%, rgba(9, 12, 18, 0.84) 38%, rgba(9, 12, 18, 0.54) 60%, rgba(9, 12, 18, 0.3) 100%), url("../media/images/hero-bg.jpg") center center / cover no-repeat;
  box-shadow: var(--shadow-hero);
}
.cc-hero__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at left top, rgba(230, 0, 18, 0.16), transparent 22%), radial-gradient(circle at right top, rgba(255, 51, 71, 0.12), transparent 24%);
  pointer-events: none;
}
.cc-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 72px 0 42px 60px;
}
.cc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.cc-eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
}
.cc-hero__title {
  margin: 0;
  max-width: 860px;
  font-size: clamp(46px, 6vw, 88px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.07em;
}
.cc-hero__desc {
  margin: 20px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.cc-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.cc-hero__stat {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
}
.mosuk-body {
  display: block !important;
}
.mosuk-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7, 9, 12, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mosuk-container.cc-header-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px;
  min-height: 88px;
  padding: 12px 0;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}
.mosuk-container.cc-header-container > .mosuk-grid-section {
  display: flex !important;
  align-items: center !important;
  flex-direction: row !important;
  margin: 0;
  padding: 0;
}
.mosuk-container.cc-header-container > .mosuk-grid-section:first-child {
  flex: 0 0 auto;
}
.mosuk-container.cc-header-container > .mosuk-grid-section:first-child > div[class*="grid"] {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.mosuk-banner-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start;
  flex: 0 0 auto;
}
.mosuk-banner-image {
  display: flex !important;
  align-items: center !important;
}
.mosuk-banner-image img.cm-image {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.mosuk-container.cc-header-container > .mosuk-grid-section:nth-child(2) {
  flex: 1 1 auto;
  justify-content: center !important;
}
.mosuk-top-header-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center;
  width: 100%;
}
.mosuk-text-links-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap !important;
}
.mosuk-text-links-row li {
  display: flex;
  flex-shrink: 0;
}
.mosuk-text-links-row li a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
  display: inline-block;
}
.mosuk-text-links-row li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.52);
  transition: width 0.25s ease;
}
.mosuk-text-links-row li a:hover {
  color: #fff;
}
.mosuk-text-links-row li a:hover::after {
  width: 100%;
}
.mosuk-text-links-row li a p {
  margin: 0;
  overflow: visible;
  white-space: nowrap;
}
.mosuk-container.cc-header-container > .mosuk-grid-section:nth-child(3) {
  flex: 0 0 auto;
  justify-content: flex-end !important;
}
.mosuk-top-header-button-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end;
}
.header__actions {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px;
}
.header__cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(230, 0, 18, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(230, 0, 18, 0.34);
}
.mosuk-navigation {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(7, 9, 12, 0.4);
}
.mosuk-navigation .mosuk-container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}
.mosuk-content {
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .mosuk-container.cc-header-container {
    flex-wrap: wrap !important;
    min-height: auto;
    padding: 12px 0;
    gap: 12px;
  }
  .mosuk-container.cc-header-container > .mosuk-grid-section:first-child {
    flex: 0 0 auto !important;
  }
  .mosuk-container.cc-header-container > .mosuk-grid-section:nth-child(2) {
    order: 3 !important;
    width: 100% !important;
    justify-content: center !important;
  }
  .mosuk-container.cc-header-container > .mosuk-grid-section:nth-child(3) {
    flex: 0 0 auto !important;
    justify-content: flex-end !important;
  }
  .mosuk-text-links-row {
    flex-wrap: wrap !important;
    justify-content: center;
    gap: 14px;
  }
  .header__actions {
    margin-left: auto !important;
  }
  .header__cta {
    width: auto;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .mosuk-container.cc-header-container {
    flex-direction: column !important;
    align-items: stretch !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    gap: 16px !important;
  }
  .mosuk-container.cc-header-container > .mosuk-grid-section {
    justify-content: flex-start !important;
    align-items: flex-start !important;
    width: 100% !important;
  }
  .mosuk-container.cc-header-container > .mosuk-grid-section:first-child {
    align-items: flex-start !important;
  }
  .mosuk-container.cc-header-container > .mosuk-grid-section:nth-child(3) {
    order: 2 !important;
    width: 100% !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
  }
  .mosuk-top-header-button-right {
    width: 100% !important;
    display: flex !important;
  }
  .mosuk-top-header-button-right .wysiwyg {
    width: 100% !important;
    display: flex !important;
  }
  .mosuk-container.cc-header-container > .mosuk-grid-section:nth-child(2) {
    order: 3 !important;
  }
  .mosuk-text-links-row {
    width: 100% !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 14px;
  }
  .header__actions {
    width: 100% !important;
    margin-left: 0 !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
  }
  .header__cta {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }
  .cc-hero__title {
    font-size: 40px;
  }
  .cc-hero__content {
    padding: 26px 18px 100px;
  }
  .cc-hero__desc {
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .mosuk-container.cc-header-container,
  .mosuk-container {
    width: calc(100% - 24px);
  }
  .mosuk-banner-image img.cm-image {
    height: 36px;
  }
  .mosuk-text-links-row {
    gap: 10px;
  }
  .mosuk-text-links-row li a {
    font-size: 13px;
  }
}
.catalog {
  padding: 34px 0 88px;
}
.catalog__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.catalog__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.catalog__info strong {
  font-size: 16px;
  font-weight: 800;
}
.catalog__info span {
  color: var(--muted);
  font-size: 14px;
}
.sort {
  min-width: 240px;
}
.cars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.car {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(23, 29, 39, 0.96) 0%, rgba(14, 18, 25, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}
.car:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.38);
}
.car__media {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #0d1117;
  flex-shrink: 0;
}
.car__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.car:hover .car__media img {
  transform: scale(1.05);
}
.car__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 12, 0.05) 0%, transparent 28%, rgba(7, 9, 12, 0.35) 100%);
  pointer-events: none;
}
.car__topbar {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(10, 12, 16, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 12, 16, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  cursor: pointer;
  flex-shrink: 0;
}
a.fav {
  text-decoration: none;
}
.fav--disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
.car__body {
  display: block;
  padding: 20px 20px 22px;
  background: linear-gradient(180deg, rgba(23, 29, 39, 0.98) 0%, #0e1219 100%);
}
.car__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.car__title-wrap {
  min-width: 0;
}
.car__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
}
.car__subtitle {
  display: none;
}
.car__safe-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(135, 216, 164, 0.16);
  border: 1px solid rgba(135, 216, 164, 0.28);
  color: #b6f0c9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.car__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 18px;
  margin-top: 4px;
}
.car__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.car__row:last-child {
  border-bottom: 0;
}
.car__label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.35;
}
.car__value {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}
.car__desc {
  display: none;
}
.car__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.car__price-label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.car__price {
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
}
.car__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border: 1px solid transparent;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(230, 0, 18, 0.24);
}
.car__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(230, 0, 18, 0.3);
}
.empty-state {
  display: none;
  padding: 48px 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(23, 29, 39, 0.96) 0%, rgba(14, 18, 25, 0.98) 100%);
  text-align: center;
  color: var(--muted);
  box-shadow: var(--shadow-card);
}
.empty-state.is-visible {
  display: block;
}
.cc-index-catalog {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding-bottom: 48px;
  /* Не сжимать во flex/grid родителях (mosuk, mainbox) */
  width: 100%;
  max-width: 100%;
  min-width: 0;
  align-self: stretch;
  box-sizing: border-box;
}
.mosuk-container .cc-index-catalog,
.mosuk-grid-section .cc-index-catalog,
.ty-mainbox-container .cc-index-catalog {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.cc-container.cc-index-catalog {
  width: 100%;
  max-width: min(var(--container), 100%);
  min-width: 0;
}
.cc-index-results {
  margin-top: 28px;
  width: 100%;
  min-width: 0;
}
.search-panel {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  /* max-width: min(1400px, calc(100vw - 32px)); */
  margin: -70px auto 0;
  border-radius: 30px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(18, 23, 32, 0.86) 0%, rgba(13, 17, 24, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
}
/* Bootstrap row/col из старых блоков — форма на всю ширину колонки */
.row .search-panel,
.col-md-3 .search-panel,
.col-md-9 .search-panel,
.col-md-12 .search-panel {
  width: 100% !important;
  /* max-width: min(1400px, calc(100vw - 24px)); */
}
/* Сайдбар / узкая колонка: без «наезда» на hero и на всю ширину колонки */
.ty-sidebox .search-panel,
.ty-sidebox-important .search-panel,
aside .search-panel,
.ty-product-filters__wrapper .search-panel {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  width: 100%;
}
.ty-sidebox .cc-index-catalog,
.ty-sidebox-important .cc-index-catalog,
aside .cc-index-catalog,
.col-md-3 .cc-index-catalog,
.col-md-4 .cc-index-catalog {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.search-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.search-panel__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.search-panel__title strong,
.search-panel__heading {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
}
.search-panel__title span {
  color: var(--muted);
  font-size: 13px;
}
.search-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-grid {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  min-width: 0;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.span-4 {
  grid-column: span 4;
}
.span-3 {
  grid-column: span 3;
}
.span-2 {
  grid-column: span 2;
}
.field > label:not(.toggle) {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.control,
.range,
.toggle,
.btn {
  min-height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.02) 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}
select.control,
input.control {
  width: 100%;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
  appearance: none;
}
.control::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
select.control:hover,
input.control:hover {
  border-color: rgba(74, 144, 226, 0.5);
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.15);
}
select.control:focus,
input.control:focus {
  border-color: rgba(230, 0, 18, 0.72);
  box-shadow: 0 0 0 4px rgba(230, 0, 18, 0.16);
  outline: none;
}
.range:hover {
  border-color: rgba(74, 144, 226, 0.5);
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.15);
}
.range input:hover {
  border-color: rgba(74, 144, 226, 0.5);
}
.range:has(input:focus) {
  border-color: rgba(230, 0, 18, 0.72);
  box-shadow: 0 0 0 4px rgba(230, 0, 18, 0.16);
}
.range input:focus {
  outline: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}
.range input:focus-visible {
  outline: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.range {
  display: grid;
  grid-template-columns: 1fr 30px 1fr;
  align-items: center;
  overflow: hidden;
}
.range input {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 15px;
  outline: none;
}
.range span {
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
  font-size: 13px;
}
.range--unit {
  grid-template-columns: 1fr 30px 1fr;
}
.range__side {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-width: 0;
}
.range__unit {
  padding-right: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition: box-shadow var(--transition-fast);
  box-shadow: 0 0 0 2px transparent;
}
.toggle:hover {
  border-color: rgba(74, 144, 226, 0.5);
  box-shadow: 0 0 0 2px transparent;
}
.toggle:focus-within {
  box-shadow: 0 0 0 2px rgba(230, 0, 18, 0.72);
}
.toggle input {
  display: none;
}
.toggle__switch {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  flex: 0 0 auto;
  transition: background var(--transition-normal);
  border: 1px solid transparent;
  box-sizing: border-box;
}
.toggle__switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition-normal);
}
.toggle input:checked + .toggle__switch {
  background: rgba(230, 0, 18, 0.85);
}
.toggle input:checked + .toggle__switch::after {
  transform: translateX(20px);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 20px 36px rgba(230, 0, 18, 0.3);
}
.btn--primary:hover {
  transform: translateY(-1px);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}
.btn--full {
  width: 100%;
}
.btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}
.hint {
  min-height: 18px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  line-height: 1.4;
}
.hint--error {
  color: var(--danger);
}
.control,
.range,
.toggle,
.btn,
.car,
.car__cta,
.fav,
.badge {
  transition: border-color var(--transition-normal), background var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}
.control:focus-visible,
.btn:focus-visible,
.fav:focus-visible,
.header__cta:focus-visible {
  outline: none;
  border-color: rgba(230, 0, 18, 0.72);
  box-shadow: 0 0 0 4px rgba(230, 0, 18, 0.16);
}
.toggle:focus-within {
  box-shadow: 0 0 0 2px rgba(230, 0, 18, 0.72);
}
.control.is-invalid,
.range.is-invalid,
.toggle.is-invalid {
  border-color: rgba(255, 143, 143, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 143, 143, 0.1);
}
input,
select,
textarea {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
input:focus,
select:focus,
textarea:focus {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
input::selection,
select::selection,
textarea::selection {
  color: #fff;
  background: rgba(230, 0, 18, 0.3);
}
input:-webkit-autofill,
select:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0 30px #0d1118 inset !important;
  color: #fff !important;
}
input[type="number"] {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
input[type="number"]:focus {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  opacity: 0.5;
  filter: invert(1);
}
input[type="text"],
input[type="number"],
input[type="search"],
input[type="email"],
input[type="tel"],
textarea {
  caret-color: #fff;
}
.control {
  caret-color: #fff;
}
.range input {
  caret-color: #fff;
}
.details-page {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.details-page > div:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.mosuk-content:has(.details-page) {
  margin-top: -50px;
}
.mosuk-container > .details-page:first-child {
  margin-top: 0 !important;
}
.mosuk-container:has(.details-page:first-child) {
  gap: 0 !important;
  padding-top: 0 !important;
}
.mosuk-grid-section.details-page {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.mosuk-main-container > .mosuk-container:first-child {
  padding-top: 0 !important;
}
.cc-product-page {
  padding: 28px 0 90px;
}
.cc-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted-2);
  font-size: 13px;
}
.cc-breadcrumbs span::after {
  content: "•";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.18);
}
.cc-breadcrumbs span:last-child::after {
  display: none;
}
.cc-product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.cc-product-head__content {
  max-width: 980px;
}
.cc-product-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.06em;
}
.cc-product-subtitle {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 760px;
}
.cc-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.cc-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cc-pill--success {
  background: rgba(135, 216, 164, 0.12);
  border-color: rgba(135, 216, 164, 0.24);
  color: #b9f0ca;
}
.cc-pill--warning {
  background: rgba(241, 187, 107, 0.1);
  border-color: rgba(241, 187, 107, 0.22);
  color: #ffd79a;
}
.cc-product-layout {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}
.cc-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 4px;
}
.cc-thumbs::-webkit-scrollbar {
  width: 4px;
}
.cc-thumbs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
}
.cc-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.cc-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(23, 29, 39, 0.96) 0%, rgba(14, 18, 25, 0.98) 100%);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.cc-thumb.is-active {
  border-color: rgba(230, 0, 18, 0.85);
  box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.16), var(--shadow-card);
}
.cc-thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cc-gallery-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cc-main-carousel-wrap {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(23, 29, 39, 0.96) 0%, rgba(14, 18, 25, 0.98) 100%);
  box-shadow: var(--shadow-card);
  position: relative;
}
.cc-main-carousel {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0d1117;
}
.cc-main-carousel .owl-stage-outer {
  height: 100%;
  display: flex;
  align-items: center;
}
.cc-main-carousel .owl-stage {
  height: 100%;
  display: flex;
  align-items: center;
}
.cc-main-carousel .owl-item {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-carousel-item {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}
.cc-carousel-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cc-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 12, 0.06) 0%, transparent 30%, rgba(7, 9, 12, 0.4) 100%);
  pointer-events: none;
}
.cc-gallery__badge,
.cc-gallery__counter {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(10, 12, 16, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cc-gallery__badge {
  top: 18px;
  left: 18px;
}
.cc-gallery__counter {
  right: 18px;
  bottom: 18px;
  text-transform: none;
  letter-spacing: 0.04em;
}
.cc-gallery__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
  color: var(--muted-2);
  font-size: 14px;
  gap: 12px;
}
.cc-gallery__empty-icon {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}
.cc-thumbs-desktop {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 4px;
}
.cc-thumbs-desktop::-webkit-scrollbar {
  width: 4px;
}
.cc-thumbs-desktop::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
}
.cc-thumbs-desktop::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.cc-thumb-desktop {
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(23, 29, 39, 0.96) 0%, rgba(14, 18, 25, 0.98) 100%);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.cc-thumb-desktop.is-active {
  border-color: rgba(230, 0, 18, 0.85);
  box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.16), var(--shadow-card);
}
.cc-thumb-desktop__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cc-mobile-thumbs {
  display: none;
  flex-direction: row;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0;
}
.cc-mobile-thumbs::-webkit-scrollbar {
  height: 4px;
}
.cc-mobile-thumbs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
}
.cc-mobile-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.cc-thumb-mobile {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}
.cc-thumb-mobile.is-active {
  border-color: rgba(230, 0, 18, 0.85);
}
.cc-thumb-mobile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cc-lightbox-dialog {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.95);
  overflow: hidden;
}
.cc-lightbox-dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
}
.cc-lightbox-dialog__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cc-lightbox-dialog__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cc-lightbox-dialog__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.cc-lightbox-dialog__body {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  height: 100%;
  padding: 16px;
}
.cc-lightbox-dialog__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cc-lightbox-carousel {
  width: 100%;
  height: 100%;
}
.cc-lightbox-carousel__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cc-lightbox-carousel__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}
.cc-lightbox-dialog__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  max-height: 80vh;
  padding: 8px;
  width: 100px;
}
.cc-lightbox-dialog__thumbs::-webkit-scrollbar {
  width: 4px;
}
.cc-lightbox-dialog__thumbs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
}
.cc-lightbox-dialog__thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.cc-thumb-lightbox {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}
.cc-thumb-lightbox.is-active {
  border-color: rgba(230, 0, 18, 0.85);
}
.cc-thumb-lightbox:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.cc-thumb-lightbox__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}
.owl-carousel .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-carousel.owl-loaded {
  display: flex;
  align-items: center;
}
.owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}
.owl-nav button {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.5) !important;
  color: white !important;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.owl-nav button:hover {
  background: rgba(0, 0, 0, 0.8) !important;
}
.cc-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 110px;
}
.cc-panel {
  border-radius: 28px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(18, 23, 32, 0.86) 0%, rgba(13, 17, 24, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
}
.cc-panel__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cc-spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
.cc-spec-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cc-spec-item__label {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 600;
}
.cc-spec-item__value {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}
.cc-price-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cc-price-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cc-price-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.cc-price-label {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cc-price-value {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.cc-price-value--accent {
  font-size: 38px;
  color: #fff;
}
.cc-price-value--old {
  color: var(--muted-2);
  text-decoration: line-through;
}
.cc-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}
.cc-btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(230, 0, 18, 0.28);
}
.cc-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(230, 0, 18, 0.34);
}
.cc-btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.cc-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}
.cc-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
}
.cc-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
}
.cc-btn--full {
  width: 100%;
}
.cc-section-stack {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}
.cc-section-card {
  border-radius: 30px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(18, 23, 32, 0.86) 0%, rgba(13, 17, 24, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
}
.cc-section-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.cc-section-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.cc-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.cc-spec-grid__item {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.cc-spec-grid__label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cc-spec-grid__value {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.03em;
}
.cc-desc {
  max-width: 980px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}
.cc-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.cc-feature-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cc-product-layout--legacy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .cc-product-layout--legacy {
    flex-direction: row;
    gap: 28px;
  }
}
.cc-product-layout__main {
  flex: 1;
  min-width: 0;
}
.cc-product-layout__gallery-wrap {
  position: relative;
}
.cc-product-labels {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cc-product-layout__sidebar {
  width: 100%;
}
@media (min-width: 768px) {
  .cc-product-layout__sidebar {
    width: 340px;
    min-width: 340px;
  }
}
.cc-product-layout__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cc-promo-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 23, 32, 0.86) 0%, rgba(13, 17, 24, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cc-promo-card__icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.cc-promo-card__text {
  flex: 1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.cc-info-card {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 23, 32, 0.86) 0%, rgba(13, 17, 24, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cc-info-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.cc-info-card__sku {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.cc-info-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.cc-info-card__head-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.cc-brand-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.cc-brand-card__logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease;
}
.cc-brand-card__logo:hover {
  background: rgba(255, 255, 255, 0.08);
}
.cc-brand-card__img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.cc-brand-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cc-brand-card__name {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}
.cc-brand-card__name:hover {
  color: var(--accent);
}
.cc-brand-card__label {
  color: var(--muted);
  font-size: 12px;
}
.cc-features-short-list {
  font-size: 13px;
  color: var(--muted);
}
.cc-features-link {
  color: var(--accent);
  font-size: 13px;
  margin-top: 8px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.cc-features-link:hover {
  color: var(--accent-2);
}
.cc-options-block {
  margin-bottom: 18px;
}
.cc-price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cc-price-block__price {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}
.cc-price-block__old-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted-2);
  text-decoration: line-through;
}
.cc-price-block__discount {
  position: relative;
}
.cc-price-block__discount-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
.cc-price-block__discount-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  opacity: 0.1;
  border-radius: 8px;
}
.cc-amount-block {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.cc-qty-block {
  margin-top: 18px;
}
.cc-add-to-cart-block {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .cc-product-layout--legacy {
    gap: 18px;
  }
  .cc-product-layout__sidebar {
    width: 100%;
    min-width: 0;
  }
  .cc-info-card__title {
    font-size: 18px;
  }
  .cc-price-block__price {
    font-size: 20px;
  }
  .cc-brand-card {
    margin-top: 16px;
  }
  .cc-product-labels {
    top: 8px;
    left: 8px;
  }
}
.cc-filter-page {
  padding: 20px 0;
}
.cc-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cc-filter-count {
  color: var(--muted);
  font-size: 14px;
}
.cc-filter-count strong {
  color: #fff;
  font-weight: 700;
}
.cc-sort-dropdown {
  position: relative;
  display: inline-block;
}
.cc-sort-button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
  transition: all 0.2s ease;
  min-width: 180px;
  text-align: left;
}
.cc-sort-button:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}
.cc-sort-button svg {
  transition: transform 0.2s ease;
}
.cc-sort-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: linear-gradient(180deg, rgba(18, 23, 32, 0.96) 0%, rgba(13, 17, 24, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  min-width: 240px;
  z-index: 1000;
  padding-top: 8px;
  display: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, pointer-events 0s ease 0.2s;
}
/* Исправление для предотвращения исчезновения меню при наведении */
.cc-sort-dropdown:hover .cc-sort-dropdown-menu,
.cc-sort-dropdown-menu:hover {
  display: block;
  pointer-events: auto;
  opacity: 1;
  transition-delay: 0s;
}
.cc-sort-option {
  display: block;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.cc-sort-option:hover,
.cc-sort-option.active {
  background: rgba(255, 255, 255, 0.08);
}
.cc-sort-option.active {
  font-weight: 700;
  color: var(--accent);
}
.cc-sort-option span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cc-sort-option:not(:first-child) span::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M7 9L3 5H11L7 9Z' fill='%23999'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  opacity: 0.7;
}
.cc-sort-option:nth-child(2) span::before {
  transform: none;
}
.cc-sort-option:nth-child(3) span::before {
  transform: scaleY(-1);
}
.cc-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.cc-no-results__icon {
  width: 64px;
  height: 64px;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}
.cc-no-results__title {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}
.cc-no-results__text {
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
.cc-pagination {
  margin-top: 24px;
}
.fav,
.cc-fav,
.mosuk-add-to-wish,
.btn-base.fav {
  display: none !important;
}
.cc-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.cc-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.cc-lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
}
.cc-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.cc-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.cc-gallery__main {
  cursor: zoom-in;
}
.cc-product-head .mosuk-social-buttons-link {
  display: none !important;
}
@media (max-width: 1180px) {
  .cars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .span-4,
  .span-3,
  .span-2 {
    grid-column: span 6;
  }
  .search-panel {
    width: calc(100% - 48px);
  }
  .cc-product-layout {
    grid-template-columns: 84px minmax(0, 1fr) 320px;
  }
  .cc-spec-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1080px) {
  .cc-product-layout {
    grid-template-columns: 76px minmax(0, 1fr);
  }
  .cc-side {
    grid-column: 1 / -1;
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .cc-header__inner {
    flex-wrap: wrap;
  }
  .cc-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
  }
  .cc-header__actions {
    margin-left: auto;
  }
  .cc-product-head {
    flex-direction: column;
  }
  .cc-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .container {
    width: 72%;
  }
  .cc-header__inner,
  .catalog__top,
  .search-panel__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .cc-nav {
    flex-wrap: wrap;
    gap: 14px;
  }
  .cc-header__actions {
    width: 100%;
    margin-left: 0;
  }
  .cc-header__cta {
    width: 100%;
  }
  .cc-header__mobile-toggle {
    display: flex;
  }
  .cc-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: rgba(7, 9, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    gap: 12px;
  }
  .cc-nav.is-open {
    display: flex;
  }
  .cc-header {
    position: relative;
  }
  .hero__shell {
    min-height: auto;
    border-radius: 24px;
    background-position: center right;
  }
  .cc-hero__content {
    padding: 26px 18px 100px;
  }
  .cc-hero__title {
    font-size: 40px;
  }
  .cc-hero__desc {
    font-size: 15px;
  }
  .hero__content {
    padding: 26px 18px 100px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero p {
    font-size: 15px;
  }
  .search-panel {
    width: 100%;
    margin-top: -70px;
    padding: 18px;
    border-radius: 22px;
  }
  .span-4,
  .span-3,
  .span-2 {
    grid-column: span 12;
  }
  .cars {
    grid-template-columns: 1fr;
  }
  .car__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .car__title {
    font-size: 26px;
  }
  .car__row {
    gap: 10px;
  }
  .car__value {
    max-width: 56%;
  }
  .car__price {
    font-size: 30px;
  }
  .car__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .sort {
    width: 100%;
    min-width: 0;
  }
  .range--unit,
  .range {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .range > span {
    display: none;
  }
  .range__side {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .range__side:last-child {
    border-bottom: 0;
  }
  .cc-product-page {
    padding-top: 18px;
  }
  .cc-product-layout {
    grid-template-columns: 1fr;
  }
  .cc-thumbs-desktop {
    display: none;
  }
  .cc-mobile-thumbs {
    display: flex !important;
  }
  .cc-gallery {
    order: 1;
    border-radius: 24px;
  }
  .cc-gallery-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    grid-column: 1 / -1 !important;
  }
  .cc-main-carousel-wrap {
    border-radius: 24px;
    display: block;
    overflow: hidden;
  }
  .cc-main-carousel {
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }
  .cc-main-carousel .owl-stage-outer {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .cc-main-carousel .owl-stage {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .cc-main-carousel .owl-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .owl-carousel.owl-loaded {
    display: flex;
    align-items: center;
  }
  .cc-carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cc-carousel-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .cc-side {
    order: 3;
    grid-template-columns: 1fr;
  }
  .cc-spec-list,
  .cc-spec-grid {
    grid-template-columns: 1fr;
  }
  .cc-product-title {
    font-size: 34px;
  }
  .cc-product-subtitle {
    font-size: 15px;
  }
  .cc-price-value--accent {
    font-size: 30px;
  }
  .cc-section-card,
  .cc-panel {
    padding: 18px;
    border-radius: 22px;
  }
}
/* Hide Features Tab */
li#features {
  display: none !important;
}
#content_features {
  display: block !important;
}
