.site-notifications {
  position: fixed;
  top: 96px;
  right: 20px;
  z-index: 2500;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(360px, calc(100vw - 40px));
  pointer-events: none;
}

.site-notification {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 42px 16px 18px;
  border: 1px solid #d6dde2;
  border-left: 4px solid #4ABBAD;
  border-radius: 8px;
  background: #ffffff;
  color: #222222;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: auto;
}

.site-notification.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-notification-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.site-notification-content strong {
  font-size: 15px;
  line-height: 1.3;
}

.site-notification-content span {
  font-size: 14px;
  line-height: 1.45;
  color: #4d5359;
}

.site-notification-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #4ABBAD;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-notification-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: #555555;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 700px) {
  .site-notifications {
    top: 76px;
    right: 12px;
    width: calc(100vw - 24px);
  }

  .site-notification {
    grid-template-columns: 1fr;
  }

  .site-notification-button {
    width: 100%;
  }
}
