.shf-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #ffffff;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  padding: 16px;
}

.shf-consent-banner[hidden] {
  display: none;
}

.shf-consent-banner__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.shf-consent-banner__text {
  flex: 1 1 480px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.shf-consent-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shf-consent-banner__accept:focus,
.shf-consent-banner__accept:hover {
  box-shadow: 0 4px 10px -6px #fcbc00 !important;
}

.shf-consent-banner__decline {
  background: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 18px;
  cursor: pointer;
}

body.dark-mode .shf-consent-banner {
  background: #1f1f1f;
  color: #f1f1f1;
}

body.dark-mode .shf-consent-banner__decline {
  color: #f1f1f1;
  border-color: #555;
}
