.tracking-consent {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  width: min(520px, calc(100% - 40px));
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(16, 17, 18, 0.14);
  border-radius: 18px;
  background: #fff;
  color: #101112;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
}

.tracking-consent strong {
  display: block;
  margin-bottom: 3px;
}

.tracking-consent p {
  margin: 0;
  color: #676a6d;
  font-size: 14px;
  line-height: 1.45;
}

.tracking-consent-actions {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}

.tracking-consent button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #d1d2d3;
  border-radius: 999px;
  background: transparent;
  color: #101112;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.tracking-consent button.accept {
  border-color: #f36d26;
  background: #f36d26;
  color: #fff;
}

@media (max-width: 680px) {
  .tracking-consent {
    right: 14px;
    bottom: 82px;
    left: 14px;
    width: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .tracking-consent-actions {
    justify-content: flex-end;
  }
}
