.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 600px;
  background-color: #333;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
}

.cookie-popup-inner {
  text-align: center;
  max-width: 100%;
}

.cookie-popup p {
  margin: 0 0 15px;
  line-height: 1.5;
}

.cookie-popup a {
  color: #ffd700;
  text-decoration: underline;
}

.cookie-popup button {
  background-color: #ffd700;
  color: #000;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 15px;
  transition: background-color 0.2s ease;
}

.cookie-popup button:hover {
  background-color: #e6c200;
}

/* Адаптация под мобильные */
@media (max-width: 480px) {
  .cookie-popup {
    padding: 15px 10px;
    font-size: 13px;
    flex-direction: column;
  }

  .cookie-popup p {
    margin-bottom: 10px;
  }

  .cookie-popup button {
    font-size: 14px;
    padding: 8px 16px;
    width: 100%;
  }
}

