.tla-consent {
  position: fixed;
  z-index: 99999;
  right: 18px;
  bottom: 18px;
  width: min(620px, calc(100vw - 36px));
  background: #fbfcf8;
  color: #18201d;
  border: 1px solid rgba(24, 32, 29, 0.16);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  padding: 20px;
  font-family: "Kumbh Sans", Arial, sans-serif;
}

.tla-consent[hidden],
.tla-consent-settings[hidden] {
  display: none !important;
}

.tla-consent__title {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.tla-consent p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.tla-consent a {
  color: #0f5f6b;
  font-weight: 700;
  text-decoration: underline;
}

.tla-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tla-consent__button,
.tla-consent-settings {
  min-height: 42px;
  border: 1px solid #18201d;
  background: #ffffff;
  color: #18201d;
  padding: 10px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.tla-consent__button:hover,
.tla-consent__button:focus,
.tla-consent-settings:hover,
.tla-consent-settings:focus {
  outline: 2px solid #d6a84f;
  outline-offset: 2px;
}

.tla-consent__button--primary {
  background: #0f5f6b;
  border-color: #0f5f6b;
  color: #ffffff;
}

.tla-consent__button--muted {
  border-color: rgba(24, 32, 29, 0.28);
}

.tla-consent__prefs {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(24, 32, 29, 0.14);
}

.tla-consent__option {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 12px;
}

.tla-consent__option input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #0f5f6b;
}

.tla-consent__option span {
  display: block;
  color: #4c5752;
  font-size: 13px;
  line-height: 1.5;
}

.tla-consent-settings {
  position: fixed;
  z-index: 99998;
  left: 16px;
  bottom: 16px;
  min-height: 38px;
  padding: 8px 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

@media (max-width: 640px) {
  .tla-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 16px;
  }

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

  .tla-consent__button {
    width: 100%;
  }
}
