/*
  Novus-Car2 — премиальная палитра
  Тёмный обсидиан и графит в основе, карбоновые панели,
  медно-янтарный акцент и тёплое свечение для автомобильной эстетики.
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Основа: тёмный обсидиан, глубокий чёрный с холодным подтоном */
  --bg-base: #0a0a0c;
  /* Вторичный фон: графит */
  --bg-secondary: #121214;
  /* Панель: стекло/графит для hero и карточек */
  --bg-panel: rgba(28, 26, 24, 0.75);
  /* Карточки: карбон */
  --bg-card: rgba(22, 21, 20, 0.9);
  /* Текст основной */
  --text-primary: #f5f3f0;
  /* Текст вторичный */
  --text-secondary: #a8a6a3;
  /* Акцент: медь / янтарь */
  --accent: #c17f3a;
  /* Мягкий акцент для фонов */
  --accent-soft: rgba(193, 127, 58, 0.25);
  /* Подсветка для кнопок и маркеров */
  --highlight: #d4925a;
  /* Свечение */
  --glow: rgba(193, 127, 58, 0.5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.5;
  min-width: 0;
}

main {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Фон страницы: градиенты только в зоне Hero (первый экран) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 30%, rgba(193, 127, 58, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(40, 38, 36, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(18, 18, 20, 0.5) 0%, transparent 70%);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  position: relative;
  z-index: 1;
}

/* Левый блок hero — холодная серо-белая панель */
.hero__panel {
  width: 32%;
  min-width: 280px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
  background: linear-gradient(180deg, rgba(252, 252, 254, 0.96) 0%, rgba(248, 249, 252, 0.94) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-left: none;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 1),
    4px 0 32px rgba(0, 0, 0, 0.12);
  transform: translateX(-100%);
  opacity: 0;
  animation: panelSlide 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

@keyframes panelSlide {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero__panel .hero__content h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0;
  color: #0a0a0f;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero__panel .hero__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #0a0a0f;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero__panel .hero__content .hero__tagline {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 600;
  color: #0a5f8a;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.65s forwards;
}

.hero__panel .hero__telegram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0a3d5c;
  text-decoration: none;
  font-size: 1.24rem;
  font-weight: 600;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
  transition: color 0.2s, transform 0.2s;
}

.hero__panel .hero__telegram:hover {
  color: #064e72;
  transform: translateX(4px);
}

.hero__telegram svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.hero__benefits {
  list-style: none;
  margin-bottom: 32px;
}

.hero__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  opacity: 0;
}

.hero__panel .hero__benefits li {
  color: #1e293b;
  font-weight: 500;
}

.hero__benefits li:nth-child(1) { animation: fadeUp 0.6s ease 0.85s forwards; }
.hero__benefits li:nth-child(2) { animation: fadeUp 0.6s ease 0.95s forwards; }
.hero__benefits li:nth-child(3) { animation: fadeUp 0.6s ease 1.05s forwards; }
.hero__benefits li:nth-child(4) { animation: fadeUp 0.6s ease 1.15s forwards; }

.hero__benefits .dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--glow), 0 0 24px var(--accent-soft);
}

.hero__panel .hero__benefits .dot {
  background: #0284c7;
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.6), 0 0 18px rgba(2, 132, 199, 0.25);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.25s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #d64d4d, #b83d3d);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 24px rgba(184, 61, 61, 0.35),
    0 0 40px rgba(214, 77, 77, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% { left: -100%; }
  60%, 100% { left: 100%; }
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 8px 32px rgba(184, 61, 61, 0.45),
    0 0 56px rgba(214, 77, 77, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: rgba(255, 255, 255, 0.12); }
  50% { border-color: rgba(193, 127, 58, 0.4); }
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-soft);
  transform: translateY(-2px);
}

.hero__panel .btn-secondary {
  color: #b8860b;
  background: rgba(218, 165, 32, 0.15);
  border-color: rgba(218, 165, 32, 0.5);
  animation: pulse-border-gold 2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(218, 165, 32, 0.2);
}

.hero__panel .btn-secondary:hover {
  background: rgba(218, 165, 32, 0.25);
  border-color: rgba(218, 165, 32, 0.7);
  box-shadow: 0 0 20px rgba(218, 165, 32, 0.35);
}

@keyframes pulse-border-gold {
  0%, 100% { border-color: rgba(218, 165, 32, 0.5); }
  50% { border-color: rgba(218, 165, 32, 0.85); }
}

@keyframes pulse-border-cold {
  0%, 100% { border-color: rgba(255, 255, 255, 0.18); }
  50% { border-color: rgba(255, 255, 255, 0.35); }
}

.hero__image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

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

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 12, 0.35) 0%, transparent 22%);
  pointer-events: none;
}

/* ========== СЕКЦИЯ ЛОТОВ (светлая гамма) ========== */
.lots {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: #f8f9fc;
}

.lots .section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1d24;
}

.lots .section-header p {
  color: #5c6370;
  font-size: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.lots__carousel-wrap {
  position: relative;
  padding: 0 56px;
  margin-bottom: 40px;
}

.lots__carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 24px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lots__carousel::-webkit-scrollbar {
  display: none;
}

.lots .carousel-arrow {
  background: linear-gradient(135deg, #d64d4d, #b83d3d);
  border: none;
  color: #fff;
  box-shadow: 0 4px 20px rgba(184, 61, 61, 0.35);
}

.lots .carousel-arrow:hover {
  background: linear-gradient(135deg, #e05555, #c84545);
  box-shadow: 0 6px 24px rgba(184, 61, 61, 0.45);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.carousel-arrow:hover {
  background: var(--bg-panel);
  border-color: var(--accent-soft);
  box-shadow: 0 0 24px var(--accent-soft);
}

.carousel-arrow--prev { left: 0; }
.carousel-arrow--next { right: 0; }

.lot-card {
  flex: 0 0 320px;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}

.lot-card.active {
  transform: scale(1.05);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(184, 61, 61, 0.15);
  z-index: 1;
}

.lot-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #e8eaef;
}

.lot-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lot-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1d24;
}

.lot-card__specs {
  list-style: none;
  margin-bottom: 16px;
  color: #5c6370;
  font-size: 0.9rem;
}

.lot-card__specs li {
  margin-bottom: 4px;
}

.lot-card__price-wrap {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
}

.lot-card__price-label {
  font-size: 0.8rem;
  color: #5c6370;
  margin-bottom: 4px;
}

.lot-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b83d3d;
  position: relative;
  overflow: hidden;
}

.lot-card__price::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: priceShine 4s ease-in-out infinite;
}

@keyframes priceShine {
  0% { left: -100%; }
  40%, 100% { left: 100%; }
}

.lot-card .btn-primary {
  width: 100%;
  padding: 12px;
  font-size: 0.95rem;
}

.lots__cta {
  text-align: center;
}

/* ========== ВИДЕООТЗЫВЫ (светлая гамма) ========== */
.video-reviews {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: #fff;
}

.video-reviews .section-header h2 {
  color: #1a1d24;
}

.video-reviews .section-header p {
  color: #5c6370;
}

.video-reviews .section-header {
  margin-bottom: 48px;
}

.video-reviews .carousel-arrow {
  background: linear-gradient(135deg, #d64d4d, #b83d3d);
  border: none;
  color: #fff;
  box-shadow: 0 4px 20px rgba(184, 61, 61, 0.35);
}

.video-reviews .carousel-arrow:hover {
  background: linear-gradient(135deg, #e05555, #c84545);
  box-shadow: 0 6px 24px rgba(184, 61, 61, 0.45);
}

.video-reviews__carousel-wrap {
  position: relative;
  padding: 0 64px;
  margin-bottom: 40px;
}

.video-reviews__carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.video-reviews__carousel::-webkit-scrollbar {
  display: none;
}

.video-card {
  flex: 0 0 280px;
  scroll-snap-align: center;
  aspect-ratio: 16/15.1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s, box-shadow 0.4s;
}

.video-card:not(.video-card--center) {
  transform: scale(0.9);
  opacity: 0.9;
}

.video-card--center {
  transform: scale(1);
  flex: 0 0 320px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(184, 61, 61, 0.12);
}

.video-card:hover {
  transform: scale(0.95);
}

.video-card--center:hover {
  transform: scale(1.02);
}

.video-card__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e8eaef;
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.video-card:hover .video-card__overlay {
  background: rgba(0, 0, 0, 0.3);
}

.video-card__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(184, 61, 61, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.video-card__play svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  fill: currentColor;
}

.video-card:hover .video-card__play {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(184, 61, 61, 0.5);
}

.video-reviews__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.video-reviews__cta {
  text-align: center;
}

/* ========== МОДАЛЬНОЕ ОКНО ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.modal__content {
  position: relative;
  width: fit-content;
  max-width: 90vw;
  height: fit-content;
  max-height: 90vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.3s;
}

.modal.is-open .modal__content {
  transform: scale(1);
}

.modal__video {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  vertical-align: top;
}

.modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #1a1d24;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.modal__close:hover {
  background: #b83d3d;
  color: #fff;
}

.modal__close svg {
  width: 20px;
  height: 20px;
}

/* ========== FOOTER (светлая гамма) ========== */
.footer {
  position: relative;
  z-index: 1;
  padding: 32px 24px;
  background: #f0f2f6;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.footer__name {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: #1a1d24;
}

.footer__inn {
  font-size: 0.9rem;
  color: #5c6370;
}

/* ========== МОБИЛЬНАЯ ВЕРСИЯ ========== */
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .lots .container,
  .video-reviews .container {
    overflow: hidden;
  }

  /* Hero на мобильных: картинка на весь экран, текст поверх слева без фона */
  .hero {
    min-height: 100vh;
    flex-direction: row;
    align-items: stretch;
  }

  .hero__image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

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

  .hero__image-overlay {
    background: rgba(0, 0, 0, 0.45);
  }

  /* Текст поверх картинки слева, без рамок */
  .hero__panel {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 72%;
    max-width: 320px;
    min-width: 0;
    height: auto;
    min-height: 0;
    max-height: none;
    justify-content: flex-start;
    padding: 24vh 12px 28px 10px;
    background: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none !important;
    box-shadow: none !important;
    outline: none;
    transform: none;
    opacity: 1;
    animation: none;
    z-index: 2;
  }

  .hero__panel .hero__text-block {
    background: none !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    outline: none;
    box-shadow: none !important;
  }

  .hero__panel .hero__content h1 {
    font-size: clamp(2.2rem, 10vw, 2.9rem);
    margin-bottom: 0;
    line-height: 1.15;
    font-weight: 900;
    color: #f5ebd8;
    text-shadow: 0 0 6px rgba(220, 200, 160, 0.6), 0 1px 3px rgba(0,0,0,0.5);
  }

  .hero__panel .hero__content h2 {
    font-size: clamp(2.2rem, 10vw, 2.9rem);
    margin-bottom: 12px;
    line-height: 1.15;
    font-weight: 900;
    color: #f5ebd8;
    text-shadow: 0 0 6px rgba(220, 200, 160, 0.6), 0 1px 3px rgba(0,0,0,0.45);
  }

  .hero__panel .hero__content .hero__tagline {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
    margin-bottom: 14px;
    font-weight: 700;
    color: #f0e6d4;
    text-shadow: 0 0 4px rgba(210, 190, 150, 0.4), 0 1px 3px rgba(0,0,0,0.45);
  }

  .hero__panel .hero__telegram {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: #7dd3fc;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  }

  .hero__panel .hero__telegram:hover {
    color: #bae6fd;
  }

  .hero__panel .hero__telegram svg {
    width: 78px;
    height: 78px;
    fill: #7dd3fc;
  }

  .hero__panel .hero__telegram:hover svg {
    fill: #bae6fd;
  }

  .hero__panel .hero__benefits {
    margin-bottom: 0;
  }

  .hero__panel .hero__benefits li {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #f2e8d8;
    font-weight: 600;
    text-shadow: 0 0 3px rgba(200, 180, 140, 0.35), 0 1px 2px rgba(0,0,0,0.4);
  }

  .hero__panel .hero__benefits .dot {
    width: 8px;
    height: 8px;
    background: #e8dcc8;
    box-shadow: 0 0 6px rgba(200, 180, 140, 0.5);
  }

  .hero__panel .hero__cta-wrap {
    margin-top: auto;
    gap: 8px;
  }

  .hero__panel .btn-primary {
    padding: 14px 22px;
    font-size: 1rem;
    font-weight: 700;
  }

  .hero__panel .btn-secondary {
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: rgba(218, 165, 32, 0.55);
    border-color: rgba(218, 165, 32, 0.75);
    box-shadow: 0 0 14px rgba(218, 165, 32, 0.3);
    margin-top: -4px;
  }

  .hero__panel .btn-secondary:hover {
    background: rgba(218, 165, 32, 0.7);
    border-color: rgba(218, 165, 32, 0.9);
    box-shadow: 0 0 22px rgba(218, 165, 32, 0.45);
  }

  /* Секции */
  .lots,
  .video-reviews {
    padding: 48px 0;
  }

  .lots__carousel-wrap,
  .video-reviews__carousel-wrap {
    padding-left: 48px;
    padding-right: 48px;
  }

  .lots__carousel {
    padding: 16px 0;
  }

  .lot-card {
    flex: 0 0 280px;
    min-width: 280px;
  }

  .video-reviews__carousel {
    padding: 16px 0;
    justify-content: flex-start;
  }

  .video-card,
  .video-card--center {
    flex: 0 0 280px;
    min-width: 280px;
    aspect-ratio: 8/9;
    transform: none;
  }

  .video-card:hover,
  .video-card--center:hover {
    transform: none;
  }

  .modal {
    padding: 12px;
  }

  .modal__content {
    max-width: 90vw;
    width: 90vw;
    aspect-ratio: 8/9;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }
}
