/* Cookie Consent Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: #f2f2f2;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.25);
  font-family: inherit;
  font-size: 14px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

#cookie-banner.cookie-banner-visible {
  transform: translateY(0);
}

#cookie-banner p {
  margin: 0;
  max-width: 700px;
  line-height: 1.5;
}

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

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

.cookie-banner-actions button {
  padding: 9px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.cookie-banner-actions button:hover {
  opacity: 0.85;
}

#cookie-accept {
  background: #f2b544;
  color: #1a1a1a;
}

#cookie-reject {
  background: transparent;
  color: #f2f2f2;
  border-color: #555;
}

@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-banner-actions button {
    flex: 1;
  }
}