:root {
  --bg: #f7fdfa;
  --text: #343131;
  --muted: #6e6a6a;
  --brand: #15623d;
  --accent: #d8a25e;
  --dark: #232120;
  --line: #dfdfdf;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Montserrat", sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

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

[hidden] {
  display: none !important;
}

.container {
  width: min(100% - 28px, 1170px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 253, 250, 0.96);
  border-bottom: 1px solid rgba(21, 98, 61, 0.15);
  backdrop-filter: blur(8px);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 14px;
}

.logo {
  display: inline-block;
  line-height: 0;
}

.logo__img {
  display: block;
  width: 148px;
  height: auto;
}

.nav-toggle {
  border: 1px solid var(--brand);
  color: var(--brand);
  background: transparent;
  border-radius: 9px;
  height: 38px;
  width: 38px;
  font-size: 20px;
}

.home-car-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.catalog-filter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.catalog-filter__item {
  display: grid;
  gap: 6px;
}

.catalog-filter__item span {
  font-size: 14px;
  color: var(--muted);
}

.catalog-filter__item select {
  height: 42px;
  border: 1px solid rgba(21, 98, 61, 0.35);
  border-radius: 10px;
  background: #fff;
  padding: 0 12px;
  font-family: inherit;
}

.admin-layout {
  display: grid;
  gap: 16px;
}

.admin-sidebar,
.admin-editor {
  background: #fff;
  border: 1px solid rgba(21, 98, 61, 0.16);
  border-radius: 14px;
  padding: 14px;
}

.admin-car-list {
  display: grid;
  gap: 8px;
  max-height: 580px;
  overflow: auto;
}

.admin-car-item {
  border: 1px solid rgba(21, 98, 61, 0.2);
  background: #fff;
  text-align: left;
  border-radius: 10px;
  padding: 10px;
  display: grid;
  gap: 4px;
  cursor: pointer;
}

.admin-car-item strong {
  font-size: 15px;
}

.admin-car-item span {
  color: var(--muted);
  font-size: 13px;
}

.admin-car-item.is-active {
  border-color: rgba(21, 98, 61, 0.55);
  box-shadow: 0 0 0 2px rgba(21, 98, 61, 0.15);
}

.admin-simple {
  background: #fff;
  border: 1px solid rgba(21, 98, 61, 0.16);
  border-radius: 14px;
  padding: 14px;
}

.admin-simple-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.admin-simple-item {
  border: 1px solid rgba(21, 98, 61, 0.2);
  border-radius: 12px;
  padding: 9px;
  display: grid;
  gap: 8px;
  align-content: start;
}

.admin-simple-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  background: #f3f5f4;
}

.admin-simple-content {
  display: grid;
  gap: 10px;
}

.admin-simple-head {
  display: grid;
  gap: 4px;
}

.admin-simple-title {
  margin: 0;
  font-size: 18px;
}

.admin-simple-price {
  margin: 0;
  color: var(--muted);
}

.admin-simple-actions {
  display: grid;
  gap: 6px;
}

.admin-simple-field {
  display: grid;
  gap: 5px;
}

.admin-simple-field span {
  font-size: 13px;
  color: rgba(52, 49, 49, 0.7);
}

.admin-simple-field select,
.admin-simple-field input {
  width: 100%;
  border: 1px solid rgba(21, 98, 61, 0.35);
  border-radius: 10px;
  padding: 8px 10px;
  font: inherit;
  background: #fff;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.admin-form {
  display: grid;
  gap: 12px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.admin-grid label {
  display: grid;
  gap: 5px;
}

.admin-grid span {
  font-size: 13px;
  color: rgba(52, 49, 49, 0.7);
}

.admin-grid input,
.admin-grid select,
.admin-grid textarea {
  width: 100%;
  border: 1px solid rgba(21, 98, 61, 0.35);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}

.admin-grid textarea {
  resize: vertical;
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-check input {
  width: 18px;
  height: 18px;
}

.admin-actions {
  display: grid;
  gap: 8px;
}

.admin-status {
  margin: 0;
  color: rgba(21, 98, 61, 0.9);
  font-weight: 500;
}

.admin-status.is-error {
  color: #a12020;
}

.admin-photo-panel {
  border: 1px solid rgba(21, 98, 61, 0.2);
  border-radius: 12px;
  padding: 12px;
  background: rgba(247, 253, 250, 0.55);
}

.admin-photo-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-photo-panel__head strong {
  font-size: 16px;
}

.admin-photo-gallery {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.admin-photo-empty {
  margin: 0;
  padding: 8px 0;
}

.admin-photo-item {
  border: 1px solid rgba(21, 98, 61, 0.2);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.admin-photo-item.is-cover {
  border-color: rgba(21, 98, 61, 0.65);
  box-shadow: 0 0 0 2px rgba(21, 98, 61, 0.12);
}

.admin-photo-item img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  background: #f2f2f2;
}

.admin-photo-item__actions {
  padding: 8px;
  display: grid;
  gap: 6px;
}

.admin-photo-btn {
  padding: 7px 10px;
  font-size: 12px;
}

.admin-photo-btn--danger {
  color: #a12020;
  border-color: rgba(161, 32, 32, 0.35);
}

.nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 73px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.nav.is-open {
  display: block;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 12px 14px 18px;
  display: grid;
  gap: 10px;
}

.nav a {
  display: inline-block;
  padding: 6px 0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.header-phone {
  display: none;
}

.btn {
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
}

.btn--brand {
  background: linear-gradient(90deg, #f5bb72, #f7aa49);
  color: #1a1a1a;
}

.btn--ghost {
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
}

.page {
  padding-bottom: 28px;
}

.catalog-page {
  padding-top: 22px;
}

.catalog-main {
  padding-top: 34px;
}

.catalog-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  color: rgba(52, 49, 49, 0.52);
  font-size: 15px;
  font-weight: 500;
}

.catalog-breadcrumb a {
  color: rgba(52, 49, 49, 0.52);
}

.catalog-breadcrumb span[aria-current="page"] {
  color: rgba(52, 49, 49, 0.85);
}

.catalog-main__title {
  margin: 0 0 30px;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  text-transform: capitalize;
  color: #343131;
}

.catalog-filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 42px;
}

.catalog-filters__field {
  position: relative;
}

.catalog-filters__field select {
  width: 100%;
  height: 54px;
  border: 1px solid #15623d;
  border-radius: 0;
  background: transparent;
  color: #15623d;
  font: 600 22px/1.2 "Inter", sans-serif;
  padding: 0 48px 0 16px;
  text-transform: capitalize;
  appearance: none;
}

.catalog-filters__field::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #15623d;
  border-bottom: 1.5px solid #15623d;
  transform: translateY(-64%) rotate(45deg);
  pointer-events: none;
}

.catalog-filters__reset {
  justify-self: center;
  align-self: center;
  width: 167px;
  height: 34px;
  border: none;
  background: transparent;
  color: #15623d;
  font: 600 26px/31px "Inter", sans-serif;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
}

.catalog-filters__reset svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.catalog-filters__reset span {
  width: auto;
  height: auto;
  line-height: 1;
}

.catalog-filters__reset:hover {
  color: #0f5a38;
}

.catalog-toolbar {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.catalog-found {
  margin: 0;
  color: rgba(52, 49, 49, 0.64);
  font-size: 16px;
  line-height: 1.2;
}

.catalog-found span {
  color: #343131;
  font-weight: 500;
}

.catalog-sort {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.catalog-sort__label {
  color: #343131;
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
}

.catalog-sort__toggle {
  border: none;
  background: transparent;
  color: #15623d;
  font: 600 17px/1 "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  cursor: pointer;
}

.catalog-sort__arrow {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
}

.catalog-sort__menu {
  box-sizing: border-box;
  position: absolute;
  width: 296px;
  height: 177px;
  top: calc(100% + 12px);
  right: 0;
  background: #f7fdfa;
  border: 1px solid #343131;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow: hidden;
  z-index: 20;
}

.catalog-sort__option {
  width: 100%;
  min-height: 59px;
  border: none;
  background: transparent;
  color: #343131;
  font: 500 30px/1 "Inter", sans-serif;
  text-align: left;
  padding: 0 17px;
  cursor: pointer;
}

.catalog-sort__option--active {
  background: #15623d;
  color: #f7fdfa;
}

.catalog-sort__option:hover:not(.catalog-sort__option--active) {
  background: rgba(21, 98, 61, 0.08);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.catalog-pagination {
  margin: 34px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-pagination__item {
  min-width: 42px;
  height: 42px;
  border: 1px solid #15623d;
  background: transparent;
  color: #15623d;
  font: 600 20px/1 "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.catalog-pagination__item:hover:not(:disabled) {
  background: rgba(21, 98, 61, 0.08);
}

.catalog-pagination__item:disabled {
  opacity: 0.35;
  cursor: default;
}

.catalog-pagination__item--active {
  background: #15623d;
  color: #effaf4;
  opacity: 1;
}

.catalog-pagination__dots {
  color: rgba(52, 49, 49, 0.66);
  font: 600 20px/1 "Inter", sans-serif;
  letter-spacing: 0.06em;
  padding: 0 2px;
}

.catalog-card {
  border: 1px solid rgba(52, 49, 49, 0.7);
  border-radius: 10px;
  background: #f7fdfa;
  overflow: hidden;
}

.catalog-card__photo-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.catalog-card__thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.catalog-card__body {
  padding: 12px 14px 18px;
}

.catalog-card__title {
  margin: 0;
  font-size: 26px;
  line-height: 1.14;
  font-weight: 700;
  color: #343131;
  text-transform: capitalize;
}

.catalog-card__meta {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.2;
  color: #343131;
  text-transform: capitalize;
}

.catalog-card__price-byn {
  margin: 14px 0 0;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 600;
  color: #d8a25e;
  text-transform: uppercase;
}

.catalog-card__price-usd {
  margin: 7px 0 0;
  font-size: 21px;
  line-height: 1.2;
  color: rgba(52, 49, 49, 0.6);
  text-transform: uppercase;
}

.catalog-card__cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #15623d;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}

.catalog-card__cta-arrow {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.catalog-empty {
  margin: 18px 0 0;
  color: rgba(52, 49, 49, 0.72);
  font-size: 18px;
}

@media (max-width: 760px) {
  .catalog-toolbar {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .catalog-sort {
    margin-left: auto;
  }

  .catalog-sort__menu {
    width: min(296px, calc(100vw - 32px));
  }

  .catalog-sort__option {
    font-size: 20px;
    min-height: 46px;
  }
}

.hero {
  margin-top: 12px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  background: #e4ebe7;
  box-shadow: var(--shadow);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 253, 250, 0.84), rgba(247, 253, 250, 0.24));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  gap: 10px;
}

.hero h1,
.page h1 {
  margin: 0;
  font-size: 29px;
  line-height: 1.05;
}

.hero p {
  margin: 0;
  max-width: 540px;
  color: rgba(52, 49, 49, 0.92);
}

.section {
  margin-top: 28px;
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.section__head h2 {
  margin: 0;
  font-size: 24px;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.catalog-results-count {
  margin: 8px 0 14px;
  color: rgba(52, 49, 49, 0.74);
  font-size: 14px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(21, 98, 61, 0.15);
}

.card__thumb {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.card__body {
  padding: 10px 12px 14px;
  display: grid;
  gap: 7px;
}

.card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.car-status-badge {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}

.car-status-badge--available {
  color: #0e5f37;
  background: rgba(21, 98, 61, 0.14);
}

.car-status-badge--preorder {
  color: #7a531e;
  background: rgba(216, 162, 94, 0.23);
}

.card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card__actions .btn {
  padding: 10px 14px;
}

.card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(52, 49, 49, 0.8);
  font-size: 14px;
}

.card__price {
  color: var(--accent);
  font-weight: 700;
}

.frame-block {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(52, 49, 49, 0.18);
  background: #fff;
}

.frame-block img {
  width: 100%;
  height: auto;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 0 0 14px;
  color: var(--muted);
}

.request {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(216, 162, 94, 0.5);
}

.request__bg {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.request__content {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.request__content h3 {
  margin: 0;
  font-size: 24px;
  max-width: 620px;
}

.request__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.field {
  width: min(100%, 420px);
  border: none;
  border-bottom: 2px solid rgba(52, 49, 49, 0.5);
  padding: 10px 2px;
  background: transparent;
  font-size: 16px;
}

.breadcrumbs {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(52, 49, 49, 0.55);
}

.breadcrumbs span {
  margin: 0 7px;
}

.car-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 16px;
}

.car-gallery {
  display: grid;
  gap: 9px;
}

.car-main {
  border-radius: 12px;
  overflow: hidden;
}

.car-main img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.car-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.car-thumbs img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  border-radius: 8px;
}

.car-info h1 {
  margin: 0;
  font-size: 30px;
}

.car-info__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.car-status-text {
  margin: 8px 0 2px;
  color: var(--brand);
  font-weight: 600;
}

.price-main {
  color: var(--accent);
  font-size: 32px;
  margin: 4px 0 0;
  font-weight: 700;
}

.price-sub {
  margin: 2px 0 10px;
  color: rgba(52, 49, 49, 0.65);
}

.specs {
  border-top: 1px solid var(--line);
}

.spec {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.spec dt {
  color: rgba(52, 49, 49, 0.6);
}

.spec dd {
  margin: 0;
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(21, 98, 61, 0.15);
  border-radius: var(--radius);
  padding: 14px;
}

.contact-card h3 {
  margin: 0 0 8px;
}

.map-switch {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.site-footer {
  margin-top: 30px;
  background: #343131;
  color: #d8a25e;
}

.site-footer__inner {
  width: min(100% - 28px, 1170px);
  margin: 0 auto;
  padding: 22px 0 30px;
  display: grid;
  gap: 12px;
}

.site-footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.muted {
  opacity: 0.76;
  font-size: 14px;
}

.only-desktop {
  display: none;
}

.home-page .site-header {
  position: static;
  backdrop-filter: none;
  border-bottom: none;
  background: var(--bg);
}

.home-page .site-header__row {
  min-height: 86px;
}

.home-page .logo {
  width: 154px;
}

.home-page .header-phone {
  display: none;
}

.home-hero-wrap {
  margin-top: 4px;
}

.home-hero {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  isolation: isolate;
}

.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 78px;
  background: linear-gradient(180deg, rgba(247, 253, 250, 0) 0%, #f7fdfa 80%);
  z-index: 1;
  pointer-events: none;
}

.home-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 46%;
  background: linear-gradient(180deg, #f7fdfa 0%, rgba(247, 253, 250, 0.22) 58%, rgba(247, 253, 250, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.home-hero__image {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.home-hero__card {
  position: absolute;
  z-index: 2;
  left: 4.4%;
  top: 4.6%;
  width: min(88%, 634px);
  min-height: clamp(270px, 26vw, 473px);
  margin: 0;
  padding: clamp(18px, 2.8vw, 42px) clamp(18px, 2.6vw, 38px) clamp(18px, 2.8vw, 40px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.home-hero__card h1 {
  position: static;
  margin: 0;
  width: min(100%, 900px);
  font-size: clamp(22px, 3.25vw, 65px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: #343131;
  font-weight: 600;
}

.home-hero__card p {
  position: static;
  margin: clamp(12px, 3.2vw, 34px) 0 0;
  width: min(100%, 531px);
  font-size: clamp(12px, 1.15vw, 22px);
  line-height: 1.41;
  color: #55514f;
}

.home-hero__card .btn {
  position: relative;
  isolation: isolate;
  margin-top: clamp(10px, 2vw, 24px);
  width: min(100%, 398px);
  height: clamp(50px, 4.25vw, 82px);
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.home-hero__card .btn::before {
  content: "";
  position: absolute;
  left: clamp(5px, 0.45vw, 9px);
  top: clamp(6px, 0.62vw, 12px);
  width: calc(100% - clamp(5px, 0.45vw, 9px));
  height: 100%;
  background: linear-gradient(0deg, #b06f1e, #b06f1e), #d8a25e;
  opacity: 0.4;
  border-radius: 10px;
  z-index: 0;
}

.home-hero__card .btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - clamp(5px, 0.45vw, 9px));
  height: 100%;
  background: linear-gradient(87.23deg, #f5bb72 23.67%, #f7aa49 92.37%), #d8a25e;
  border-radius: 10px;
  z-index: 1;
}

.home-hero__card .btn > span {
  position: relative;
  z-index: 2;
  width: calc(100% - clamp(5px, 0.45vw, 9px));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  color: #000000;
  opacity: 0.7;
}

.home-filter {
  margin-top: 24px;
}

.home-filter__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.home-filter__control {
  position: relative;
}

.home-filter__control::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid #15623d;
  border-bottom: 1.5px solid #15623d;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.home-filter__select {
  width: 100%;
  height: 44px;
  text-align: left;
  padding: 0 12px;
  padding-right: 34px;
  border: 1px solid rgba(21, 98, 61, 0.44);
  background: transparent;
  color: var(--brand);
  font-weight: 600;
  font-size: 14px;
  border-radius: 0;
  appearance: none;
  cursor: pointer;
}

.home-filter__clear {
  width: 100%;
  height: 44px;
  border-radius: 22px;
  border: 1px solid rgba(52, 49, 49, 0.4);
  background: transparent;
  color: #343131;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.home-filter__clear:hover {
  background: rgba(21, 98, 61, 0.08);
  color: #15623d;
}

.home-filter__submit {
  width: 100%;
  margin-top: 9px;
  height: 42px;
  border-radius: 22px;
  border: 1px solid rgba(52, 49, 49, 0.4);
  background: transparent;
  color: #343131;
  font-weight: 600;
}

.home-stock {
  margin-top: 42px;
}

.home-section__head h2 {
  font-size: 36px;
  margin: 0;
}

.home-link-btn {
  border: 1px solid rgba(21, 98, 61, 0.5);
  color: var(--brand);
  font-weight: 600;
  padding: 10px 18px;
  min-width: 130px;
  text-align: left;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.home-link-btn::after {
  content: ">";
  font-weight: 700;
}

.home-cars-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.home-car-card {
  border-radius: 4px;
  overflow: hidden;
}

.home-car-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 4px;
  background: #f2f2f2;
}

.home-car-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 2px 2px;
}

.home-car-card__meta strong {
  font-size: 13px;
  line-height: 1.12;
}

.home-cars-empty {
  margin: 0;
  grid-column: 1 / -1;
  text-align: center;
  padding: 22px;
  border: 1px dashed rgba(21, 98, 61, 0.45);
  color: rgba(52, 49, 49, 0.72);
  border-radius: 10px;
}

.home-car-card__meta span {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.home-promo-section {
  overflow: hidden;
}

.home-promo {
  position: relative;
  width: min(100% - 28px, 1170px);
  margin: 0 auto;
}

.home-promo__arrow {
  display: none;
}

.home-promo__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1170 / 406;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  display: block;
}

.home-advantages-wrap {
  margin-top: 28px;
  background: #f0f1df;
}

.home-advantages {
  position: relative;
  width: min(100%, 1920px);
  margin: 0 auto;
}

.home-advantages__image {
  width: 100%;
  height: auto;
  display: block;
}

.home-advantages__title {
  position: absolute;
  left: 19.53%;
  top: 9.67%;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.67vw, 32px);
  line-height: 1.2;
  color: #f7fdfa;
  opacity: 0.9;
  white-space: nowrap;
}

.home-advantages__btn {
  position: absolute;
  left: 65.16%;
  top: 12.21%;
  width: 15.31%;
  min-width: 120px;
  height: clamp(28px, 2.71vw, 52px);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 clamp(10px, 1.4vw, 28px);
  background: #d8a25e;
  border: 1px solid #d8a25e;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(11px, 1.146vw, 22px);
  color: #343131;
  text-transform: capitalize;
  text-decoration: none;
}

.home-advantages__btn-arrow {
  font-weight: 700;
  font-size: 1.3em;
  line-height: 1;
}

.home-advantages__list {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.home-advantages__item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.5vw, 10px);
  transform: translateY(-50%);
}

.home-advantages__item::before {
  content: "";
  flex: 0 0 auto;
  width: 2px;
  height: clamp(18px, 2vw, 36px);
  background: #d8a25e;
  border-radius: 1px;
}

.home-advantages__item span {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(9px, 1.04vw, 20px);
  line-height: 1.05;
  color: #f7fdfa;
  opacity: 0.9;
  white-space: nowrap;
}

.home-advantages__item--1 { right: 57.19%; top: 26.72%; }
.home-advantages__item--2 { right: 63.54%; top: 35.43%; }
.home-advantages__item--3 { right: 68.23%; top: 44.38%; }
.home-advantages__item--4 { right: 69.90%; top: 56.47%; }
.home-advantages__item--5 { right: 70.73%; top: 68.38%; }

.home-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.home-service-card {
  min-height: 132px;
  border: 1px solid rgba(52, 49, 49, 0.28);
  border-radius: 8px;
  padding: 15px 14px;
  background: rgba(247, 253, 250, 0.25);
}

.home-service-card h3 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 0.95;
  color: var(--accent);
}

.home-service-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(52, 49, 49, 0.75);
}

.home-service-card .btn {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 0;
  font-size: 14px;
}

.home-faq-wrap h2 {
  margin: 0 0 12px;
  font-size: 34px;
}

.home-faq-wrap {
  margin-top: 38px;
  width: min(100%, 920px);
  margin-left: auto;
  margin-right: auto;
}

.home-faq-list {
  max-width: 920px;
}

.home-faq-list details {
  border-bottom: 1px solid #9e9e9e;
}

.home-faq-list summary {
  list-style: none;
  padding: 14px 0;
  position: relative;
  color: #626262;
  font-size: 16px;
  line-height: 1.35;
  cursor: pointer;
}

.home-faq-list summary::-webkit-details-marker {
  display: none;
}

.home-faq-list summary::after {
  content: "⌄";
  position: absolute;
  right: 4px;
  top: 10px;
  font-size: 20px;
  color: #5f5f5f;
}

.home-image-strip {
  margin-top: 22px;
}

.home-image-strip img {
  width: min(100%, 1920px);
  margin: 0 auto;
}

.home-request-wrap {
  margin-top: 38px;
}

.home-request {
  position: relative;
  width: min(100%, 1920px);
  margin: 0 auto;
  background:
    radial-gradient(75% 60% at 70% 50%, rgba(225, 184, 132, 0.55) 0%, rgba(225, 184, 132, 0) 70%),
    linear-gradient(90deg, #c98f48 0%, #d8a25e 30%, #d8a25e 70%, #b67d3b 100%);
  overflow: hidden;
  aspect-ratio: 1920 / 481;
}

.home-request__car {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
}

.home-request__content {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.home-request__title {
  position: absolute;
  left: 19.79%;
  top: 19.33%;
  width: 41.77%;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 1.67vw, 32px);
  line-height: 1.06;
  color: #343131;
}

.home-request__form {
  position: absolute;
  inset: 0;
}

.home-request__field {
  position: absolute;
  left: 19.79%;
  top: 40.54%;
  width: 23.13%;
  display: block;
  border-bottom: 1.5px solid rgba(52, 49, 49, 0.4);
}

.home-request__field input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: clamp(10px, 0.78vw, 15px);
  color: #343131;
  padding: clamp(3px, 0.4vw, 6px) 0;
  box-sizing: border-box;
}

.home-request__field input::placeholder {
  color: #343131;
  opacity: 0.6;
}

.home-request__buttons {
  position: absolute;
  left: 19.79%;
  top: 53.01%;
  display: flex;
  gap: clamp(6px, 1.56vw, 30px);
}

.home-request__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(26px, 2.29vw, 44px);
  padding: 0 clamp(10px, 2.7vw, 52px);
  border: 1px solid transparent;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(9px, 0.83vw, 16px);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
}

.home-request__btn--primary {
  background: #f7fdfa;
  color: #343131;
  flex: 0 0 auto;
}

.home-request__btn--secondary {
  background: transparent;
  color: #f7fdfa;
  border-color: #f7fdfa;
  flex: 0 0 auto;
}

.home-request__disclaimer {
  position: absolute;
  left: 20.05%;
  top: 67.78%;
  width: 21.51%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: clamp(9px, 0.68vw, 13px);
  line-height: 1.3;
  color: #343131;
}

.home-request__disclaimer a {
  text-decoration: underline;
  color: inherit;
}

.home-sponsors-wrap {
  margin-top: 36px;
  margin-bottom: 26px;
}

.home-sponsors {
  width: min(100% - 28px, 1170px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.home-sponsors__strip {
  width: 100%;
  max-width: 1170px;
  height: auto;
  display: block;
}

.home-sponsors__note {
  margin: 0;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(11px, 0.95vw, 14px);
  line-height: 1.25;
  color: rgba(52, 49, 49, 0.55);
}

.home-footer {
  margin-top: 0;
  padding: 0;
}

.home-footer__inner {
  gap: 16px;
}

.home-footer__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  align-self: start;
  color: #2ba15f;
}

.home-footer__brand strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
}

.home-footer__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  color: #f7fdfa;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-footer__tagline::before,
.home-footer__tagline::after {
  content: "";
  flex: 1 1 auto;
  min-width: 12px;
  height: 1px;
  background: currentColor;
}

.home-footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.home-footer__phone span {
  text-decoration: underline;
}

.home-footer__phone-icon {
  flex: 0 0 auto;
  color: var(--accent);
}

.home-footer__social {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  gap: 14px;
  align-items: center;
}

.home-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.home-footer__social a:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.home-footer__social svg {
  width: 100%;
  height: 100%;
  display: block;
}

.home-footer__menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  align-content: start;
}

.home-footer__menu a {
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.home-footer__legal {
  display: grid;
  gap: 4px;
}

.home-footer__legal p {
  margin: 0;
  color: var(--accent);
  opacity: 0.7;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.3;
}

@media (min-width: 760px) {
  .catalog-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .admin-layout {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 18px;
  }

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

  .admin-wide {
    grid-column: 1 / -1;
  }

  .home-hero__card {
    left: 11.2%;
    top: 7%;
    width: min(47%, 634px);
    min-height: clamp(330px, 28vw, 473px);
    padding: clamp(24px, 2.2vw, 38px) clamp(24px, 2.4vw, 36px) clamp(24px, 2.4vw, 36px);
  }

  .home-hero__card h1 {
    position: static;
    width: min(100%, 860px);
    max-width: none;
    font-size: clamp(26px, 3vw, 52px);
    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -0.01em;
    color: #343131;
  }

  .home-hero__card p {
    position: static;
    margin: clamp(10px, 1.6vw, 18px) 0 0;
    width: min(100%, 531px);
    max-width: none;
    font-size: clamp(13px, 1.2vw, 19px);
    line-height: 1.4;
    color: #55514f;
  }

  .home-hero__card .btn {
    position: relative;
    margin-top: clamp(10px, 1.5vw, 18px);
    width: min(100%, 389px);
    max-width: 389px;
    min-width: 0;
    height: clamp(48px, 4.1vw, 70px);
  }

  .home-hero__card .btn::before,
  .home-hero__card .btn::after,
  .home-hero__card .btn > span {
    height: 100%;
  }

  .home-hero__card .btn::before {
    left: clamp(5px, 0.4vw, 8px);
    top: clamp(4px, 0.55vw, 9px);
  }

  .home-hero__card .btn > span {
    font-size: clamp(12px, 1.05vw, 18px);
    line-height: 1;
    opacity: 0.85;
  }

  .home-filter__row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-items: center;
  }

  .home-filter__select {
    height: 46px;
    font-size: 16px;
    padding-left: 16px;
  }

  .home-filter__control::after {
    right: 18px;
    width: 11px;
    height: 11px;
  }

  .home-cars-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .home-promo__arrow {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #c8c8c8;
    font-size: 52px;
    line-height: 1;
    cursor: default;
    padding: 0;
  }

  .home-promo__arrow--prev {
    right: 100%;
    margin-right: 16px;
  }

  .home-promo__arrow--next {
    left: 100%;
    margin-left: 16px;
  }

  .home-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-faq-list summary {
    font-size: 18px;
  }

  .home-faq-wrap h2 {
    font-size: 40px;
  }

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

  .hero {
    min-height: 520px;
  }

  .hero__overlay {
    padding: 22px;
  }

  .hero h1,
  .page h1 {
    font-size: 48px;
  }

  .car-main img {
    height: 360px;
  }
}

@media (min-width: 1200px) {
  .catalog-main {
    padding-top: 72px;
    padding-bottom: 18px;
  }

  .catalog-breadcrumb {
    margin-bottom: 72px;
    font-size: 20px;
    line-height: 24px;
  }

  .catalog-main__title {
    margin: 0 0 30px;
    font-size: 40px;
    line-height: 48px;
  }

  .catalog-toolbar {
    margin-bottom: 36px;
  }

  .catalog-found {
    font-size: 40px;
  }

  .catalog-sort {
    gap: 18px;
  }

  .catalog-sort__label,
  .catalog-sort__toggle {
    font-size: 40px;
  }

  .catalog-sort__arrow {
    width: 12px;
    height: 12px;
    border-width: 2px;
  }

  .catalog-filters {
    position: relative;
    grid-template-columns: repeat(4, minmax(0, 270px));
    grid-template-areas:
      "brand model year sort"
      "fuel engine transmission reset";
    column-gap: 30px;
    row-gap: 16px;
    margin-bottom: 118px;
  }

  .catalog-filters__field:nth-child(1) {
    grid-area: brand;
  }

  .catalog-filters__field:nth-child(2) {
    grid-area: model;
  }

  .catalog-filters__field:nth-child(3) {
    grid-area: year;
  }

  .catalog-filters__field:nth-child(4) {
    grid-area: sort;
  }

  .catalog-filters__field:nth-child(5) {
    grid-area: fuel;
  }

  .catalog-filters__field:nth-child(6) {
    grid-area: engine;
  }

  .catalog-filters__field:nth-child(7) {
    grid-area: transmission;
  }

  .catalog-filters__reset {
    position: absolute;
    left: calc(100% - 218px);
    top: 95px;
    margin-left: 0;
  }

  .catalog-filters__field select {
    height: 64px;
    font-size: 26px;
    padding-left: 26px;
    padding-right: 52px;
  }

  .catalog-filters__field::after {
    right: 28px;
    width: 11px;
    height: 11px;
    border-width: 2px;
  }

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

  .catalog-pagination {
    margin-top: 44px;
    gap: 12px;
  }

  .catalog-pagination__item {
    min-width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .catalog-card__thumb {
    height: 219px;
  }

  .catalog-card__body {
    padding: 14px 15px 18px;
  }

  .catalog-card__title {
    font-size: 22px;
    line-height: 25px;
  }

  .catalog-card__meta {
    margin-top: 18px;
    font-size: 18px;
    line-height: 32px;
  }

  .catalog-card__price-byn {
    margin-top: 9px;
    font-size: 26px;
    line-height: 31px;
  }

  .catalog-card__price-usd {
    margin-top: 4px;
    font-size: 21px;
    line-height: 25px;
  }

  .catalog-card__cta {
    margin-top: 17px;
    font-size: 18px;
    line-height: 22px;
  }

  .home-page .site-header__row {
    position: static;
    display: flex;
    align-items: center;
    min-height: 134px;
    padding-top: 48px;
    padding-bottom: 0;
    gap: 90px;
  }

  .home-page .header-phone {
    display: inline-block;
    position: static;
    font-family: "Montserrat", sans-serif;
    font-size: 19px;
    line-height: 1.4;
    text-transform: uppercase;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 0;
    color: #343131;
    flex: 0 0 auto;
  }

  .home-page .logo {
    position: static;
    width: 251px;
    height: 68px;
    flex: 0 0 auto;
  }

  .home-page .logo__img {
    width: 251px;
    height: 68px;
  }

  .home-page .nav {
    display: block;
    position: static;
    border: none;
    background: transparent;
    margin-left: auto;
  }

  .home-page .nav ul {
    display: flex;
    gap: 72px;
    padding: 0;
  }

  .home-page .nav a {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
  }

  .home-hero-wrap {
    margin-top: 31px;
  }

  .home-hero {
    border: none;
    border-radius: 0;
    min-height: 0;
  }

  .home-hero__image {
    min-height: 0;
  }

  .home-hero__card {
    left: 11.6%;
    top: 4.94%;
    width: 48.6%;
    min-height: 56.99%;
    padding: 43px 38px 40px 60px;
  }

  .home-hero__card h1 {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(42px, 3.4vw, 65px);
    line-height: 0.92;
  }

  .home-hero__card p {
    margin-top: 20px;
    width: min(100%, 531px);
    font-size: clamp(16px, 1.15vw, 22px);
    line-height: 1.41;
    color: #343131;
    opacity: 0.85;
  }

  .home-hero__card .btn {
    margin-top: 12px;
    width: min(100%, 389px);
    max-width: 389px;
    height: 70px;
  }

  .home-hero__card .btn::before,
  .home-hero__card .btn::after,
  .home-hero__card .btn > span {
    height: 100%;
  }

  .home-hero__card .btn::before {
    left: 9px;
    top: 12px;
  }

  .home-hero__card .btn > span {
    font-size: clamp(16px, 1.18vw, 22px);
    line-height: 1;
    color: #000;
    opacity: 0.7;
  }

  .home-filter {
    margin-top: 54px;
    width: min(1171px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .home-filter__row {
    gap: 30px;
  }

  .home-filter__select {
    height: 52px;
    font-size: 18px;
    line-height: 1;
    padding-left: 20px;
    padding-right: 36px;
  }

  .home-filter__control::after {
    right: 18px;
    width: 10px;
    height: 10px;
    border-width: 1.5px;
  }

  .home-filter__submit {
    margin-top: 28px;
    height: 52px;
    font-size: 18px;
    border-radius: 26px;
  }

  .home-stock {
    margin-top: 80px;
  }

  .home-section__head {
    margin-bottom: 20px;
  }

  .home-section__head h2 {
    font-size: 42px;
  }

  .home-link-btn {
    min-width: 197px;
    font-size: 26px;
    padding: 12px 19px;
  }

  .home-car-card__meta strong {
    font-size: 26px;
  }

  .home-car-card__meta span {
    font-size: 26px;
  }

  .home-cars-row {
    gap: 18px;
  }

  .home-cars-row img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
  }

  .home-promo__arrow {
    font-size: 76px;
  }

  .home-promo__arrow--prev {
    margin-right: 46px;
  }

  .home-promo__arrow--next {
    margin-left: 46px;
  }

  .home-services-grid {
    grid-template-columns: 1fr 1fr 0.72fr;
    gap: 16px;
  }

  .home-service-card {
    padding: 22px 18px;
    min-height: 186px;
  }

  .home-service-card h3 {
    font-size: 43px;
    margin-bottom: 12px;
  }

  .home-service-card p {
    font-size: 22px;
    line-height: 1.2;
  }

  .home-service-card--narrow {
    grid-row: span 2;
  }

  .home-service-card .btn {
    margin-top: 18px;
    font-size: 20px;
    padding: 14px 16px;
  }

  .home-faq-wrap {
    margin-top: 104px;
  }

  .home-faq-wrap h2 {
    font-size: 42px;
    margin-bottom: 26px;
  }

  .home-faq-list summary {
    font-size: 20px;
    padding: 16px 0;
  }

  .home-faq-list summary::after {
    top: 10px;
    font-size: 28px;
  }

  .home-image-strip {
    margin-top: 34px;
  }

  .home-request-wrap {
    margin-top: 46px;
  }

  .home-sponsors-wrap {
    margin-top: 42px;
    margin-bottom: 34px;
  }

  .home-footer__inner {
    padding: 56px 0 40px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
      "brand contacts menu"
      "legal legal legal";
    column-gap: 40px;
    align-items: start;
  }

  .home-footer__brand {
    grid-area: brand;
    align-items: stretch;
    justify-self: center;
  }

  .home-footer__contacts {
    grid-area: contacts;
  }

  .home-footer__menu {
    grid-area: menu;
    justify-self: end;
  }

  .home-footer__legal {
    grid-area: legal;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: end;
    margin-top: 36px;
  }

  .home-footer__legal-center {
    text-align: center;
  }

  .home-footer__legal-right {
    text-align: right;
  }

  .home-footer__brand strong {
    font-size: 34px;
  }

  .home-footer__tagline {
    font-size: 13px;
    margin-top: 6px;
  }

  .home-footer__tagline::before,
  .home-footer__tagline::after {
    min-width: 18px;
  }

  .home-footer__phone {
    font-size: 18px;
  }

  .home-footer__social {
    font-size: 16px;
  }

  .home-footer__menu a {
    font-size: 20px;
  }

  .home-footer__legal p {
    font-size: 14px;
  }

  .site-header__row {
    min-height: 96px;
  }

  .nav-toggle {
    display: none;
  }

  .header-phone {
    display: block;
    font-weight: 600;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
  }

  .nav {
    display: block;
    position: static;
    border-bottom: none;
    background: transparent;
  }

  .nav ul {
    padding: 0;
    display: flex;
    gap: 34px;
  }

  .nav a {
    font-size: 17px;
  }

  .hero {
    border-radius: 24px;
    min-height: 830px;
  }

  .hero__overlay {
    padding: 84px 54px;
    justify-content: flex-start;
    gap: 22px;
  }

  .hero h1 {
    font-size: 65px;
    max-width: 870px;
  }

  .hero p {
    font-size: 22px;
    line-height: 1.4;
  }

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

  .car-layout {
    grid-template-columns: 570px 1fr;
    gap: 40px;
  }

  .car-main img {
    height: 318px;
  }

  .car-thumbs img {
    height: 95px;
  }

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

  .request__content {
    padding: 38px;
  }

  .request__content h3 {
    font-size: 32px;
  }

  .only-desktop {
    display: block;
  }
}

/* ===== Car card page ===== */

.car-page .site-header {
  border-bottom: 1px solid rgba(52, 49, 49, 0.08);
}

.car-page__main {
  padding-bottom: 0;
}

.car-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.car-topbar .breadcrumbs {
  margin: 0;
}

.car-topbar__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.car-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: rgba(52, 49, 49, 0.6);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  padding: 6px 4px;
}

.car-share:hover {
  color: var(--brand);
}

.car-share svg {
  display: block;
}

.car-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 14px;
  color: #343131;
  border: 1px solid rgba(52, 49, 49, 0.55);
  background: transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.car-call-btn:hover {
  background: rgba(21, 98, 61, 0.06);
}

.car-call-btn__arrow {
  font-weight: 700;
}

.car-info__status {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 4px 0 6px;
  flex-wrap: wrap;
}

.car-info .car-status-text {
  margin: 0;
  font-size: 13px;
  color: rgba(52, 49, 49, 0.55);
  font-weight: 400;
}

.car-status-flag {
  color: #d8a25e;
  font-size: 13px;
  font-weight: 500;
}

.car-info h1 {
  margin: 2px 0 10px;
  font-size: 32px;
  font-weight: 700;
}

.car-info .price-main {
  color: var(--accent);
  font-weight: 700;
  font-size: 26px;
  margin: 0;
}

.car-info .price-sub {
  color: rgba(52, 49, 49, 0.5);
  margin: 4px 0 20px;
  font-size: 14px;
}

.car-specs__title {
  margin: 12px 0 0;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(52, 49, 49, 0.18);
  color: #2c2c2c;
}

.car-info .specs {
  margin: 0;
  border-top: none;
  display: block;
}

.car-info .spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  background: transparent;
  margin: 0;
  border: none;
  border-bottom: 1px solid rgba(52, 49, 49, 0.14);
  border-radius: 0;
}

.car-info .spec:first-child {
  border-top: 1px solid rgba(52, 49, 49, 0.14);
}

.car-info .spec dt {
  color: rgba(52, 49, 49, 0.62);
  font-size: 14px;
  font-weight: 400;
}

.car-info .spec dd {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  color: #2c2c2c;
}

.car-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.car-thumb {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  aspect-ratio: 4 / 3;
  appearance: none;
}

.car-thumb:focus-visible {
  outline: 2px solid rgba(21, 98, 61, 0.85);
  outline-offset: 2px;
}

.car-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.car-thumb__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.car-video-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  padding-bottom: 1px;
}

.car-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.car-extra {
  margin-top: 40px;
  border-top: 1px solid rgba(52, 49, 49, 0.18);
  padding-top: 22px;
}

.car-extra__title {
  margin: 0 0 22px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-bottom: 18px;
  color: #2c2c2c;
}

.car-extra__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(52, 49, 49, 0.18);
}

.car-extra__body {
  text-align: left;
  font-size: 15px;
  line-height: 1.6;
  color: #2c2c2c;
}

.car-extra__body p {
  margin: 0 0 16px;
}

.car-extra__options {
  margin-top: 18px;
}

.car-extra__options-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
  font-size: 14px;
  color: #2c2c2c;
}

.car-extra__options-list li {
  padding: 1px 0;
}

.car-extra__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  color: rgba(52, 49, 49, 0.6);
  padding: 8px 0 0;
}

.car-extra__toggle-label {
  color: var(--brand);
  text-decoration: underline;
  font-weight: 500;
}

.car-extra__toggle-caret {
  color: var(--brand);
}

.car-equipment {
  margin-top: 24px;
  background: #fff;
  border: 1px solid rgba(52, 49, 49, 0.1);
  border-radius: 10px;
  padding: 22px 24px 18px;
}

.car-equipment__title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  color: #2c2c2c;
}

.car-equipment__groups {
  display: grid;
  gap: 14px;
}

.car-equipment__group-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #2c2c2c;
}

.car-equipment__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.car-equipment__chip {
  background: #eef2f6;
  color: #2c2c2c;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.car-equipment__toggle {
  margin-top: 14px;
  background: transparent;
  border: none;
  color: #2f7fc7;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
}

.car-request-wrap {
  margin-top: 48px;
}

.car-page .home-faq-wrap {
  margin-top: 46px;
}

.car-page .home-sponsors-wrap {
  margin-top: 40px;
}

.car-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-lightbox[hidden] {
  display: none;
}

.car-lightbox__image {
  max-width: 90vw;
  max-height: 84vh;
  object-fit: contain;
}

.car-lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
}

.car-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 56px;
  line-height: 1;
  cursor: pointer;
  padding: 0 24px;
  opacity: 0.85;
}

.car-lightbox__nav:hover {
  opacity: 1;
}

.car-lightbox__nav--prev { left: 8px; }
.car-lightbox__nav--next { right: 8px; }

.car-lightbox__counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 13px;
  opacity: 0.75;
}

@media (min-width: 760px) {
  .car-info h1 {
    font-size: 36px;
  }

  .car-info .price-main {
    font-size: 30px;
  }

  .car-call-btn {
    padding: 14px 26px;
  }
}

@media (min-width: 1200px) {
  .car-page .car-topbar {
    margin-top: 28px;
  }

  .car-page .car-layout {
    grid-template-columns: 540px 1fr;
    gap: 56px;
    margin-top: 20px;
  }

  .car-page .car-main img {
    height: 340px;
  }

  .car-page .car-thumbs {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .car-page .car-thumb {
    aspect-ratio: 4 / 3;
  }

  .car-info h1 {
    font-size: 38px;
  }

  .car-info .price-main {
    font-size: 32px;
  }

  .car-specs__title {
    font-size: 22px;
  }

  .car-extra {
    margin-top: 56px;
    padding-top: 32px;
  }

  .car-extra__title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .car-equipment {
    padding: 26px 28px 22px;
  }

  .car-equipment__title {
    font-size: 22px;
  }

  .car-request-wrap {
    margin-top: 72px;
  }

  .car-page .home-faq-wrap {
    margin-top: 68px;
  }

  .car-page .home-sponsors-wrap {
    margin-top: 46px;
  }
}
