.consent-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9999;
  padding: 1rem;
  background: rgba(26, 77, 50, 0.97);
  color: #f5f5f5;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
}

.consent-banner-inner {
  max-width: 52rem;
  margin: 0 auto;
}

.consent-banner-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.consent-banner-text {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.consent-banner-text a {
  color: #fff;
  text-decoration: underline;
}

.consent-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.consent-banner .consent-btn {
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.consent-banner .btn-primary {
  background: #fff;
  color: #1a4d32;
  font-weight: 600;
}

.consent-banner .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

@media (max-width: 640px) {
  .consent-banner-actions {
    flex-direction: column;
  }

  .consent-banner .consent-btn {
    width: 100%;
  }
}
