/* Основные стили для десктоп */
#cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: auto;
  max-width: 50%;
  padding: 15px 20px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  z-index: 9999;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}

#cookie-banner p {
  margin: 10px;
}

#cookie-banner a {
  color: #007bff;
  text-decoration: none;
}

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

.close-button {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 18px;
  color: #6c757d;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.close-button:hover {
  color: #343a40;
  transform: scale(1.2);
}

#accept-button {
  background-color: #D90419;
  border-radius: 5px;
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

#accept-button:hover {
  transform: scale(1.05);
}

/* Адаптация под планшеты (ширина экрана до 992px) */
@media (max-width: 992px) {
  #cookie-banner {
    width: 90%;
    padding: 12px 16px;
    font-size: 13px;
    max-width: 80%;
  }

  .close-button {
    top: 6px;
    right: 10px;
    font-size: 16px;
  }
}

/* Адаптация под маленькие планшеты и большие телефоны (до 768px) */
@media (max-width: 768px) {
  #cookie-banner {
    width: 90%;
    bottom: 15px;
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 6px;
  }

  .close-button {
    top: 5px;
    right: 8px;
    font-size: 14px;
  }
}

/* Адаптация под мобильные телефоны (до 576px) */
@media (max-width: 576px) {
  #cookie-banner {
    width: 90%;
    bottom: 10px;
    padding: 8px 12px;
    font-size: 11px;
    border-radius: 4px;
  }

  .close-button {
    top: 4px;
    right: 6px;
    font-size: 12px;
  }

  #cookie-banner p {
    line-height: 1.3;
  }
}