#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #1c2b47;
  border-top: 1px solid #a6873c;
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
}
#cookie-consent-banner .cc-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}
#cookie-consent-banner .cc-text {
  flex: 1 1 480px;
  margin: 0;
  color: #f1ede5;
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
}
#cookie-consent-banner .cc-text a {
  color: #c7ab6e;
  text-decoration: underline;
}
#cookie-consent-banner .cc-actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}
#cookie-consent-banner .cc-btn {
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid #a6873c;
  transition: background .15s ease, color .15s ease;
}
#cookie-consent-banner .cc-accept {
  background: #a6873c;
  color: #1c2b47;
  font-weight: 500;
}
#cookie-consent-banner .cc-accept:hover { background: #c7ab6e; }
#cookie-consent-banner .cc-refuse {
  background: transparent;
  color: #f1ede5;
}
#cookie-consent-banner .cc-refuse:hover { background: rgba(255,255,255,.08); }

footer .cc-manage {
  margin: 8px 0 0;
}
footer .cc-manage a {
  color: inherit;
  opacity: .7;
  text-decoration: underline;
  font-size: 0.85rem;
}
footer .cc-manage a:hover { opacity: 1; }

@media (max-width: 640px) {
  #cookie-consent-banner .cc-inner { flex-direction: column; align-items: stretch; }
  #cookie-consent-banner .cc-actions { justify-content: flex-end; }
}
