.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: none;
  width: min(calc(100% - 40px), 520px);
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  color: #111827;
}

.cookie-consent.is-visible {
  display: block;
}

.cookie-consent__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
}

.cookie-consent__text {
  margin: 0 0 14px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-consent__button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  background: #ffffff;
  color: #111827;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cookie-consent__button--primary {
  border-color: #0f63d8;
  background: #0f63d8;
  color: #ffffff;
}

.cookie-consent__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #0f63d8;
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 560px) {
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .cookie-consent__actions {
    flex-direction: column;
  }
}
