/* Cookie consent banner – website */
.tf-cookie-consent {
  position: fixed;
  inset-inline: 16px;
  bottom: 16px;
  z-index: 2147483600;
  max-width: 560px;
  margin-inline: auto;
  left: 0;
  right: 0;
}

.tf-cookie-consent__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--bg-card, #fff);
  color: var(--text-main, #0f172a);
  border: 1px solid var(--border-soft, #e2e8f0);
  box-shadow: var(--shadow-card, 0 10px 30px rgba(2, 6, 23, 0.12));
}

.tf-cookie-consent__text strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.tf-cookie-consent__text p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted, #475569);
}

.tf-cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.tf-cookie-consent__btn {
  appearance: none;
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  border: 1px solid transparent;
}

.tf-cookie-consent__btn--primary {
  background: var(--primary, #20c997);
  color: var(--primary-contrast, #fff);
}

.tf-cookie-consent__btn--ghost {
  background: transparent;
  color: var(--text-main, #0f172a);
  border-color: var(--border-soft, #e2e8f0);
}

@media (max-width: 560px) {
  .tf-cookie-consent {
    inset-inline: 10px;
    bottom: 10px;
  }
  .tf-cookie-consent__actions {
    justify-content: stretch;
  }
  .tf-cookie-consent__btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
