.sc-upgrade-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px 16px 16px;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
  max-width: 340px;
  transform: translateX(calc(100% + 40px));
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.sc-upgrade-toast.is-visible {
  transform: translateX(0);
  opacity: 1;
}
@media (max-width: 480px) {
  .sc-upgrade-toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    transform: translateY(calc(100% + 40px));
  }
  .sc-upgrade-toast.is-visible {
    transform: translateY(0);
  }
}
.sc-upgrade-toast__close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 24px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: none;
  color: #4F4D4E;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
}
.sc-upgrade-toast__close:hover {
  background-color: #f3f4f6;
  color: #222222;
}
.sc-upgrade-toast__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: rgba(138, 42, 107, 0.12);
  border-radius: 50%;
}
.sc-upgrade-toast__body {
  flex: 1;
  min-width: 0;
}
.sc-upgrade-toast__title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #222222;
}
.sc-upgrade-toast__text {
  margin: 0 0 8px;
  font-size: 13px;
  color: #4F4D4E;
  line-height: 1.4;
}
.sc-upgrade-toast__cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #8A2A6B;
  text-decoration: none;
}
.sc-upgrade-toast__cta:hover {
  color: #6e2256;
  text-decoration: underline;
}
