.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9999;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__panel {
  pointer-events: auto;
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(28, 25, 23, 0.1);
  background: #fff;
  box-shadow: 0 4px 14px rgba(49, 188, 131, 0.12), 0 20px 50px rgba(28, 25, 23, 0.08);
}

.cookie-banner__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1c1917;
}

.cookie-banner__text {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #78716c;
  line-height: 1.5;
}

.cookie-banner__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}

.cookie-banner__option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  color: #44403c;
}

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

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
}

.cookie-banner__btn--ghost {
  background: transparent;
  border-color: rgba(28, 25, 23, 0.1);
  color: #44403c;
}

.cookie-banner__btn--primary {
  background: #31bc83;
  color: #fff;
}

.cookie-banner__btn--primary:hover {
  background: #279a6b;
}

.cookie-banner__legal {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
}

.cookie-banner__legal a {
  color: #279a6b;
  text-decoration: underline;
  text-underline-offset: 2px;
}
