/* Cookie Banner Styles */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0E0E0E;
  border-top: 0.5px solid rgba(201,168,76,0.3);
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9999;
  flex-wrap: wrap;
}
#cookieBanner p {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
#cookieBanner a {
  color: #C9A84C;
  text-decoration: none;
}
.cookie-btns {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
#cookieAccept {
  background: #C9A84C;
  color: #0E0E0E;
  border: none;
  padding: 0.55rem 1.25rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
#cookieDecline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 0.5px solid rgba(255,255,255,0.15);
  padding: 0.55rem 1.25rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.8125rem;
  cursor: pointer;
  white-space: nowrap;
}
#cookieDecline:hover { color: rgba(255,255,255,0.8); }
@media (max-width: 600px) {
  #cookieBanner { padding: 1rem 1.25rem; }
  .cookie-btns { width: 100%; }
  #cookieAccept, #cookieDecline { flex: 1; text-align: center; }
}
