.snt-share-modal-open { overflow: hidden; }
.snt-share-floating-button {
  position: fixed;
  right: 46px;
  bottom: 112px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #6f58a7;
  color: #fff;
  font-size: 20px;
  line-height: 48px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(77, 38, 140, 0.2);
  z-index: 101;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.snt-share-floating-button:hover {
  background: #5b4692;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(77, 38, 140, 0.28);
}
.snt-share-floating-button:focus-visible,
.snt-share-modal button:focus-visible {
  outline: 3px solid #d9c17c;
  outline-offset: 3px;
}
.snt-share-floating-button .fa { line-height: 48px; }
.snt-share-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 22, 33, 0.58);
  z-index: 9999;
}
.snt-share-modal[hidden] { display: none; }
.snt-share-dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 34px 26px 30px;
  border: 1px solid #eadfff;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(77, 38, 140, 0.12);
  text-align: center;
}
.snt-share-close {
  position: absolute;
  top: 11px;
  right: 11px;
  width: 32px;
  height: 32px;
  border: 1px solid #eadfff;
  border-radius: 50%;
  background: #fff;
  color: #171322;
  font-size: 22px;
  line-height: 28px;
  cursor: pointer;
}
.snt-share-close:hover { border-color: #d9c17c; color: #8f1d22; }
.snt-share-title {
  margin: 0 28px 14px;
  color: #171322;
  font-family: 'Gordita', 'Rubik', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.18;
}
.snt-share-text {
  margin: 0 0 24px;
  color: #6b687a;
  font-size: 14px;
  line-height: 1.7;
}
.snt-share-actions { display: grid; gap: 10px; }
.snt-share-action {
  width: 100%;
  min-height: 42px;
  border-radius: 0;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 500;
}
.snt-share-primary {
  border: 2px solid #6f58a7;
  background: #6f58a7;
  color: #fff;
}
.snt-share-primary:hover { background: #5b4692; border-color: #5b4692; }
.snt-share-secondary {
  border: 1px solid #6f58a7;
  background: #fff;
  color: #6f58a7;
}
.snt-share-secondary:hover { background: #6f58a7; color: #fff; }
.snt-share-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #6b687a;
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .snt-share-floating-button { right: 46px; bottom: 112px; width: 46px; height: 46px; font-size: 19px; line-height: 46px; }
  .snt-share-floating-button .fa { line-height: 46px; }
  .snt-share-modal { padding: 20px 4%; }
  .snt-share-dialog { max-width: 92vw; padding: 32px 22px 24px; }
  .snt-share-title { font-size: 24px; }
}
