#cookie-consent-banner {
  display: none;
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 19999;
  width: 320px;
  max-width: calc(100vw - 40px);
  background: #2d3042;
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
  font-family: "Raleway", sans-serif;
}

#cookie-consent-banner.active {
  display: block;
}

#cookie-consent-banner p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 14px 0;
}

#cookie-consent-banner a {
  color: #dcc698;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-consent-actions button {
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-consent-actions button:hover {
  opacity: 0.85;
}

.cookie-decline-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.cookie-accept-btn {
  background: #dcc698;
  color: #2d3042;
}

@media (max-width: 480px) {
  #cookie-consent-banner {
    right: 12px;
    left: 12px;
    bottom: 95px;
    width: auto;
  }
}
