/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #2D3A2E;
  color: #F5F0E8;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner p {
  margin: 0;
  max-width: 600px;
}
.cookie-banner a {
  color: #C4A35A;
  text-decoration: underline;
}
.cookie-banner a:hover {
  color: #d4b76a;
}
.cookie-btn-group {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn-accept {
  background: #C4A35A;
  color: #2D3A2E;
}
.cookie-btn-accept:hover,
.cookie-btn-dismiss:hover {
  background: #d4b76a;
}
.cookie-btn-dismiss {
  background: #C4A35A;
  color: #2D3A2E;
}
