.oson-consent {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 10000;
  max-width: 520px;
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(8, 17, 13, 0.12);
  background: #fff;
  box-shadow: 0 24px 64px rgba(8, 17, 13, 0.18);
  font-family: Inter, system-ui, sans-serif;
  color: #08110d;
  line-height: 1.5;
}

.oson-consent[hidden] {
  display: none !important;
}

.oson-consent__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
}

.oson-consent__text {
  margin: 0 0 16px;
  font-size: 14px;
  color: #5c6b62;
}

.oson-consent__text a {
  color: #00a800;
  font-weight: 700;
}

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

.oson-consent__btn {
  flex: 1 1 auto;
  min-width: 140px;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.15s ease;
}

.oson-consent__btn--primary {
  background: linear-gradient(135deg, #00e600, #00c800);
  color: #fff;
}

.oson-consent__btn--primary:hover {
  filter: brightness(1.05);
}

.oson-consent__btn--secondary {
  background: #f4f8f5;
  border-color: rgba(8, 17, 13, 0.12);
  color: #08110d;
}

.oson-consent__btn--secondary:hover {
  background: #eef4ef;
}

@media (max-width: 480px) {
  .oson-consent {
    inset: auto 12px 12px 12px;
    padding: 16px 18px;
  }

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

  .oson-consent__btn {
    width: 100%;
  }
}
