.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
  color: #fffce1;
  padding: 20px;
  border-top: 1px solid rgba(187, 136, 49, 0.3);
  font-family: Avenir, sans-serif;
  display: flex;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.5s ease-in-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.cookie-banner-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-title {
  font-size: 1.1em;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #BB8831;
}

.cookie-banner-message {
  margin: 0;
  font-size: 0.95em;
  line-height: 1.4;
  opacity: 0.9;
}

.cookie-banner-link {
  color: #BB8831;
  text-decoration: none;
  border-bottom: 1px solid #BB8831;
  transition: opacity 0.3s ease;
}

.cookie-banner-link:hover {
  opacity: 0.8;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95em;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: Avenir, sans-serif;
}

.cookie-banner-btn-reject {
  background: transparent;
  color: #fffce1;
  border: 1px solid rgba(255, 252, 225, 0.3);
}

.cookie-banner-btn-reject:hover {
  border-color: #fffce1;
  background: rgba(255, 252, 225, 0.1);
}

.cookie-banner-btn-accept {
  background: #BB8831;
  color: #0b0b0b;
}

.cookie-banner-btn-accept:hover {
  background: #d4a654;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(187, 136, 49, 0.3);
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-btn {
    flex: 1;
  }

  .cookie-banner-message {
    font-size: 0.9em;
  }
}
