.smk-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 9000;
  display: flex;
  width: min(900px, calc(100% - 36px));
  margin: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(244, 241, 234, 0.22);
  border-radius: 8px;
  padding: 18px;
  color: #f4f1ea;
  background: #111317;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.5);
  font-family: Manrope, Arial, sans-serif;
}

.smk-consent strong,
.smk-consent p {
  margin: 0;
}

.smk-consent strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.smk-consent p {
  max-width: 620px;
  color: rgba(244, 241, 234, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}

.smk-consent a {
  color: #f4f1ea;
}

.smk-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.smk-consent button {
  min-height: 44px;
  border: 1px solid rgba(244, 241, 234, 0.22);
  border-radius: 6px;
  padding: 0 14px;
  color: #f4f1ea;
  background: transparent;
  cursor: pointer;
  font: 800 0.78rem/1 Manrope, Arial, sans-serif;
}

.smk-consent [data-smk-consent-accept] {
  color: #090909;
  background: #f4f1ea;
}

@media (max-width: 680px) {
  .smk-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    width: auto;
    gap: 14px;
    padding: 15px;
  }

  .smk-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
