.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
  margin-right: 20px;
  font-family: Roboto;
}

.cookie-text a {
  color:#ffffff;
}

.cookie-text p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.accept-btn {
  border: none;
  padding: 8px 20px;
  font-size: 12px;
  transition: background 0.3s ease;
  color: #ffffff;
  background-color: #13ce66;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  font-family: Roboto;
}

.accept-btn:hover {
  background: #219a52;
}

.close-btn {
  background: none;
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.close-btn:hover {
  opacity: 0.7;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .cookie-text {
    margin-right: 0;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

