.main-screen {
	flex-direction: column;
}

.main-screen__dealer {
	background: #000000bf;
    z-index: 100;
}

/* cookies.css — стили баннера о cookies в стиле Chery */

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(30, 30, 30, 0.80);
  padding: 35px 40px 30px;
  border-radius: 1px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  max-width: 440px;
  text-align: center;
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  z-index: 9999;
  animation: fadeIn 0.6s ease;
}

#cookie-banner h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px 0;
  text-align: center;
}

#cookie-banner p {
  margin: 0 0 25px 0;
  color: #cfcfcf;
  text-align: center;
}

#cookie-banner a {
  color: inherit;
  text-decoration: underline;
}

/* ===== КНОПКА "ПОНЯТНО" ===== */
.cookie-accept {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 30px;
  border-radius: 1px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.3s ease;
  margin: 0 auto;
}

.cookie-accept:hover {
  background: #f2f2f2;
}

/* ===== КНОПКА "ЗАКРЫТЬ" (КРЕСТИК) ===== */
.cookie-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  color: #cfcfcf;
  font-size: 28px;
  font-weight: 300;
  font-family: "Helvetica Neue", "Segoe UI", "Arial", sans-serif;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.3s ease;
}
.cookie-close:hover {
  color: #fff;
}

/* Анимация появления */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ
================================ */
@media (max-width: 600px) {
  #cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    max-width: none;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    padding: 25px 20px 20px;
  }

  #cookie-banner h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  #cookie-banner p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .cookie-accept {
    width: 80%;
    max-width: 260px;
    padding: 10px 0;
    font-size: 14px;
  }

  .cookie-close {
    top: 12px;
    right: 16px;
    font-size: 28px;
  }
}