.shrufit-a2hs {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  background: rgba(0,0,0,.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.shrufit-a2hs.is-open { display: flex; }

.shrufit-a2hs__card {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
}

.shrufit-a2hs__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(14,165,233,.14), rgba(14,165,233,0));
}

.shrufit-a2hs__title {
  font: 700 16px/1.25 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0f172a;
}

.shrufit-a2hs__close {
  appearance: none;
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  padding: 4px 8px;
  cursor: pointer;
  color: #334155;
}

.shrufit-a2hs__body { padding: 0 16px 14px 16px; }
.shrufit-a2hs__desc {
  font: 500 14px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #334155;
}

.shrufit-a2hs__actions {
  display: flex;
  gap: 10px;
  padding: 14px 16px 16px 16px;
  border-top: 1px solid rgba(0,0,0,.06);
}

.shrufit-a2hs__btn {
  flex: 1 1 auto;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(15,23,42,.14);
  background: #fff;
  color: #0f172a;
  font: 700 14px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  cursor: pointer;
}

.shrufit-a2hs__btn--primary {
  background: #0ea5e9;
  border-color: #0ea5e9;
  color: #fff;
}

.shrufit-a2hs__btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

