.cookie-consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1085;
  display: grid;
  gap: 1rem;
  padding: 1rem 1.125rem;
  border: 1px solid rgba(19, 31, 46, 0.12);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(247, 249, 252, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(14px);
}

.cookie-consent-banner__eyebrow {
  margin: 0 0 0.35rem;
  color: #9a3412;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent-banner__title {
  margin: 0 0 0.45rem;
  color: #111827;
  font-size: 1.05rem;
  font-weight: 700;
}

.cookie-consent-banner__text {
  margin: 0;
  color: #334155;
  font-size: 0.94rem;
  line-height: 1.6;
}

.cookie-consent-banner__link {
  color: #0f766e;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cookie-consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-consent-banner__button {
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.94rem;
}

.cookie-consent-banner__button--secondary {
  background: #ffffff;
  border-color: rgba(15, 118, 110, 0.22);
  color: #134e4a;
}

.cookie-consent-banner__button--primary {
  background: #0f766e;
  color: #ffffff;
}

@media (min-width: 768px) {
  .cookie-consent-banner {
    left: auto;
    max-width: 40rem;
  }

  .cookie-consent-banner__actions {
    justify-content: flex-end;
  }
}
