.mib-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  width: min(440px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid rgba(23, 21, 18, 0.14);
  border-radius: 8px;
  background: #fffdf8;
  color: #171512;
  box-shadow: 0 22px 70px rgba(31, 25, 15, 0.2);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.mib-consent[hidden] {
  display: none;
}

.mib-consent p {
  margin: 0 0 14px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.mib-consent a {
  color: #171512;
  font-weight: 700;
  text-decoration: underline;
}

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

.mib-consent button {
  min-height: 42px;
  border: 1px solid rgba(23, 21, 18, 0.16);
  border-radius: 999px;
  padding: 0 16px;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
}

.mib-consent button[data-consent-accept] {
  border-color: #d8b45c;
  background: #d8b45c;
  color: #171512;
}

.mib-consent button[data-consent-deny] {
  background: #ffffff;
  color: #171512;
}

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

  .mib-consent button {
    flex: 1 1 100%;
  }
}
