#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem;
  transform: translateY(110%);
  transition: transform 0.35s ease;
  pointer-events: none;
}
#cookie-consent-banner.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
#cookie-consent-banner .cookie-inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(180, 83, 9, 0.25);
  background: rgba(255, 251, 245, 0.97);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}
.dark #cookie-consent-banner .cookie-inner {
  background: rgba(28, 25, 23, 0.97);
  border-color: rgba(217, 119, 6, 0.35);
}
#cookie-consent-banner p {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #57534e;
}
.dark #cookie-consent-banner p {
  color: #d6d3d1;
}
#cookie-consent-banner a {
  color: #b45309;
  text-decoration: underline;
  font-weight: 600;
}
.dark #cookie-consent-banner a {
  color: #fbbf24;
}
#cookie-consent-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#cookie-consent-banner button {
  cursor: pointer;
  border: none;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
#cookie-consent-banner .btn-essential {
  background: transparent;
  color: #57534e;
  border: 1px solid #d6d3d1;
}
.dark #cookie-consent-banner .btn-essential {
  color: #d6d3d1;
  border-color: #57534e;
}
#cookie-consent-banner .btn-essential:hover {
  background: rgba(0, 0, 0, 0.05);
}
#cookie-consent-banner .btn-accept {
  background: #b45309;
  color: #fff;
}
#cookie-consent-banner .btn-accept:hover {
  background: #d97706;
}
