.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  padding: 0.9rem 1.25rem;
  background: #052b1c;
  color: #f5f0e6;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 0.92rem;
  line-height: 1.4;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

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

.cookie-banner p {
  margin: 0;
  max-width: 46rem;
}

.cookie-banner a {
  color: #d4af37;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-banner button {
  cursor: pointer;
  border-radius: 6px;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid transparent;
}

.cookie-btn-reject {
  background: transparent;
  border-color: rgba(245, 240, 230, 0.35);
  color: #f5f0e6;
}

.cookie-btn-reject:hover {
  border-color: #f5f0e6;
}

.cookie-btn-accept {
  background: #0e5c3f;
  color: #f5f0e6;
}

.cookie-btn-accept:hover {
  background: #12734f;
}

@media (max-width: 480px) {
  .cookie-banner {
    justify-content: flex-start;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-banner-actions button {
    flex: 1;
  }
}
