/* === Inter font for standalone wizard page === */
@font-face {
  font-family: "Inter";
  src:
    local("Inter"),
    local("Inter-Regular"),
    url("/wp-content/themes/onpress/assets/fonts/Inter-Regular.woff2") format("woff2"),
    url("/wp-content/themes/onpress/assets/fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src:
    local("Inter"),
    local("Inter-Medium"),
    url("/wp-content/themes/onpress/assets/fonts/Inter-Medium.woff2") format("woff2"),
    url("/wp-content/themes/onpress/assets/fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src:
    local("Inter"),
    local("Inter-SemiBold"),
    url("/wp-content/themes/onpress/assets/fonts/Inter-SemiBold.woff2") format("woff2"),
    url("/wp-content/themes/onpress/assets/fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src:
    local("Inter"),
    local("Inter-Bold"),
    url("/wp-content/themes/onpress/assets/fonts/Inter-Bold.woff2") format("woff2"),
    url("/wp-content/themes/onpress/assets/fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}

/* =============================================
   Block: .wizard
   ============================================= */

/* --- Layout --- */
.wizard {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  font-family: "Inter", "Inter Fallback", sans-serif;
}
.wizard-header + .wizard,
.wizard-header ~ .wizard {
  padding-top: 5rem;
}

.wizard:before,
.wizard:after {
  content: "";
  position: absolute;
  left: 27px;
  width: 1px;
  height: 100%;
  background: #ddd;
  display: block;
  top: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .wizard:before,
  .wizard:after {
    display: none;
  }
}

.wizard:after {
  right: 27px;
  left: initial;
}
@media (min-width: 768px) {
  .wizard {
    padding: 2.5rem;
  }
}
.wizard--debug {
  flex-direction: column;
  gap: 1.5rem;
}
.wizard--auth {
  flex-direction: column;
}

/* --- Card --- */

.wizard__card {
  width: 100%;
  max-width: 28rem;
  overflow: hidden;
}
.wizard__slide--channel .wizard__search-wrap {
  overflow: visible;
}
.wizard__card:has(.wizard__slide--channel) {
  overflow: visible;
}

/* --- Slide (generic content block inside card) --- */

.wizard__slide {
  padding: 2rem;
  text-align: center;
}

/* Framesuite helper wizard uses .wizard__slide-wrap as padded container;
   reset inner slide padding to avoid doubling */
.wizard__slide-wrap .wizard__slide {
  padding: 0;
}

div.wizard__slide--auth {
  padding-top: 2.5rem;
}

input.wizard__input {
  padding: 25px 15px 26px;
  font-size: 16px;
  border-radius: 4px;
  box-shadow: none;
}

input.wizard__input.--login {
  margin-top: 20px;
}

input.wizard__input.--password {
  margin-bottom: -20px;
}

/* --- Price --- */

.wizard__price-wrap {
  margin-bottom: -17px;
  margin-top: 22px;
  /* border-top: 1px solid hsl(var(--border)); */
  padding-top: 11px;
}
.wizard__price-note {
  display: block;
  margin: 2px 0 -3px;
  font-size: 12px;
  font-weight: 400;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.1px;
  text-align: left;
}
.wizard__price {
  padding: 0;
  background: none;
  position: relative;
}
.wizard__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.wizard__price-label {
  font-size: 0.875rem;
  color: #0a0a0a;
  font-weight: 500;
}
.wizard__price-value {
  font-size: 24px;
  font-weight: 700;
}
.wizard__price-amount {
  /* font-size: 1.25rem; */
  /* font-weight: 700; */
}
.wizard__price-suffix {
  /* font-size: 0.75rem; */
  /* color: #0a0a0a; */
  /* font-weight: 500; */
  margin-left: 0.25rem;
}

/* --- Footer (price + actions + legal + dots) --- */

.wizard__footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.wizard__footer .wizard__dots-wrap {
  margin-top: 0.5rem;
}

.wizard__footer .wizard__legal {
  margin-top: 0;
}

.wizard__auth-legal {
  margin: 10px 0 -7px;
}

/* --- Auth messages --- */

.wizard__auth-message {
  font-size: 0.875rem;
  text-align: center;
}
.wizard__auth-message--error {
  color: #dc2626;
}
.wizard__auth-message--success {
  color: #16a34a;
}

/* --- Debug label --- */

.wizard__debug-label {
  padding-top: 0.75rem;
  text-align: center;
  font-family: monospace;
  font-size: 0.75rem;
  display: none;
}

/* --- Image (mascot) --- */

.wizard__image {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.wizard__image img {
  height: 140px;
  width: 140px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* --- Title & description --- */

h2.wizard__title {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  line-height: 32px;
}
.wizard__desc {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #5b5b5b;
  font-weight: 500;
}

/* --- Primary action (full-width button area) --- */

button.wizard__action,
a.wizard__action {
  width: 100%;
  margin-top: 20px;
  padding: 25px 25px 26px;
  box-shadow: none;
  border-radius: 4px;
  gap: 3px;
  font-size: 16px;
}

.wizard__auth-telegram {
  margin-top: 0 !important;
}

.wizard__action svg {
  margin-right: 8px;
}

.wizard__action .lucide-arrow-right {
  top: 1px;
  position: relative;
  left: -2px;
}

/* --- Dots navigation --- */

.wizard__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.wizard__dots-wrap {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-top: 20px;
}
.wizard__dot {
  height: 0.5rem;
  border-radius: 9999px;
  transition: all 150ms ease;
}
.wizard__dot--active {
  width: 1.5rem;
}
.wizard__dot--inactive {
  width: 0.5rem;
}

/* --- Wizard icon (unified: error, success) --- */

.wizard__icon {
  margin: 0 auto 1rem;
  display: flex;
  height: 6rem;
  width: 6rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}
.wizard__icon-svg {
  height: 3rem;
  width: 3rem;
  position: relative;
  /* top: 2px; */
}

.wizard__icon--success svg {
  top: 2px;
}
.wizard__icon--error {
  background: rgb(255 26 26);
  color: #fff;
}
.wizard__icon--success {
  background: rgb(0 200 81);
  color: #ffffff;
}

/* --- Progress step --- */

.wizard__progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wizard__progress-pct {
  font-size: 1.125rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* --- Task list --- */

.wizard__tasks {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.wizard__task {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  border-radius: 0.375rem;
  transition:
    color 150ms ease,
    opacity 150ms ease;
}
.wizard__task--done {
  opacity: 0.6;
}
.wizard__task-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 9999px;
  transition:
    color 150ms ease,
    background-color 150ms ease;
}
.wizard__task-label {
  flex: 1;
  font-size: 0.875rem;
}
.wizard__task-label--done {
  text-decoration: line-through;
}

/* --- Channel preview --- */

.wizard__channel-avatar {
  display: flex;
  height: 5rem;
  width: 5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}
.wizard__channel-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-align: center;
}
.wizard__channel-handle {
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.wizard__channel-subs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.wizard__channel-desc {
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Info box --- */

.wizard__info-box {
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  text-align: center;
}

/* --- Button row (back / continue) --- */

.wizard__actions {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}
.wizard__actions > * {
  flex: 1;
}
.wizard__actions > button {
  height: auto;
  max-height: none;
  padding: 15px 25px 16px;
  border: 1px solid transparent;
}
.wizard__actions > .wizard__action--back {
  flex: 0 0 auto;
  width: 3.5rem;
  background: none;
  border-color: hsl(var(--border));
}

/* --- Form field group --- */

.wizard__field {
  display: grid;
  gap: 0.5rem;
}

/* --- Loading spinner --- */

.wizard__loading {
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
}

/* --- Auth link (switch login/register) --- */

.wizard__auth-link {
  color: #000;
  text-decoration: none;
}

.wizard__auth-link:hover {
  color: #000;
}
.wizard__auth-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  /* margin-bottom: -80px; */
}

/* --- Auth Google button --- */

.wizard__auth-google {
  width: 100%;
  gap: 0.5rem;
}

/* --- Auth Email button --- */

.wizard__auth-email {
  width: 100%;
  gap: 0.5rem;
  margin-top: 0 !important;
}

/* --- Action modifiers --- */

.wizard__action--back {
}
.wizard__action--continue {
}

/* --- Auth form --- */

.wizard__auth {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wizard__auth-header {
  text-align: center;
}

.wizard__auth-content .gap-4 {
  gap: 12px;
}
.wizard__auth-title {
  font-size: 1.25rem;
}
.wizard__auth-subtitle {
  font-size: 0.875rem;
}
.wizard__auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wizard__auth-switch {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 8px;
}
.wizard__auth-back {
  text-align: center;
  font-size: 14px;
}
.wizard__auth-back a {
  /* color: var(--muted-foreground); */
  text-decoration: none;
}
.wizard__auth-back a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* --- Auth legal text --- */

.wizard__auth-legal {
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
}
.wizard__auth-legal a {
  color: #000;
  text-decoration: none;
}
.wizard__auth-legal a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #000;
}

/* --- Wizard header --- */

.wizard-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 48px;
  border-bottom: 1px solid #dddddd;
  background: #f5f5f5;
}
.wizard-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1.5rem;
}
.wizard-header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: inherit;
}
.wizard-header__logo:hover {
  color: inherit;
}
.wizard-header__logo-icon {
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 0.125rem;
}
.wizard-header__logo-fallback {
  display: flex;
  height: 1.75rem;
  width: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.125rem;
  background: #111;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}
.wizard-header__logo-text {
  font-size: 20px;
  font-weight: 700;
  margin: -2px 0 0 -1px;
}

.wizard__action--back svg {
  margin-right: 0;
}

/* --- Channel Input slide --- */

.wizard__slide--channel {
}
.wizard__channel-image {
  max-width: 160px;
  margin: 0 auto 20px;
}
.wizard__channel-image img {
}
.wizard__channel-title {
}
.wizard__channel-form .wizard__input {
  margin-bottom: -20px;
  margin-top: 20px;
}
.wizard__channel-error {
  border-radius: 4px;
  top: 10px;
}

/* --- Channel Search Dropdown --- */

.wizard__search-wrap {
  position: relative;
}
.wizard__search-loader {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-radius: 50%;
  background: #171717;
  animation: search-pulse 1s ease-in-out infinite;
  pointer-events: none;
}
@keyframes search-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}
.wizard__search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  margin-top: 4px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-height: 400px;
  overflow-y: auto;
}
.wizard__search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.1s;
}
.wizard__search-item:hover,
.wizard__search-item.--active {
  background: #f5f5f5;
}
.wizard__search-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.wizard__search-avatar--placeholder {
  background: linear-gradient(90deg, #e5e5e5 25%, #f0f0f0 50%, #e5e5e5 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}
@keyframes skeleton-pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.wizard__search-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.wizard__search-title {
  font-size: 14px;
  font-weight: 500;
  color: #171717;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wizard__search-meta {
  font-size: 13px;
  color: #737373;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- Channel Preview slide --- */

.wizard__slide--preview {
}
.wizard__preview-heading {
  text-align: left;
  margin-bottom: 21px !important;
  margin-top: 10px;
}
.wizard__preview-channel {
  text-align: left;
}
.wizard__preview-channel-info {
}
.wizard__preview-channel-avatar {
}
.wizard__preview-channel-name {
}
.wizard__preview-channel-meta {
}
.wizard__preview-channel-desc {
}
.wizard__preview-loading {
}
.wizard__preview-loading-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: wizard-blink 2s ease-in-out infinite;
  margin-bottom: -10px;
}
@keyframes wizard-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.wizard__preview-loading-text {
  color: #000;
  font-weight: 600;
  max-width: 280px;
}
.wizard__preview-stats {
}
.wizard__preview-stat {
  /* background: none; */
  /* border: 1px solid #d4d4d4; */
  border-radius: 4px;
}
.wizard__preview-benefits-heading {
  text-align: left;
  margin-top: 45px;
  margin-bottom: 9px !important;
}
.wizard__preview-benefits {
  margin-bottom: 20px;
}

/* --- Checklist (benefits / options items) --- */

.wizard-checklist {
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  overflow: hidden;
}
.wizard-checklist__item {
  border: none;
  border-bottom: 1px solid hsl(var(--border));
  border-radius: 0;
  padding: 14px 13px 15px;
}
.wizard-checklist__item--checked {
}
.wizard-checklist__item--expanded {
}
.wizard-checklist__row {
  border: none;
  padding: 0;
  gap: 11px;
}
.wizard-checklist__check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background: hsl(var(--foreground));
  flex-shrink: 0;
}
.wizard-checklist__check-icon svg {
  width: 10px;
  height: 10px;
}
.wizard-checklist__circle-icon {
  width: 16px;
  height: 16px;
}
.wizard-checklist__check {
}
.wizard-checklist__checkbox {
}
.wizard-checklist__checkbox--checked {
}
.wizard-checklist__title {
}
.wizard-checklist__price {
}
.wizard-checklist__chevron {
}
.wizard-checklist__detail {
  padding: 0;
  margin-left: 27px;
  margin-bottom: 20px;
}
.wizard-checklist__detail-text {
  color: #0a0a0a;
  /* letter-spacing: -0.1px; */
  line-height: 22px;
  margin-top: 17px !important;
}

/* --- Channel Options slide --- */

.wizard__slide--options {
}
.wizard__options-heading {
  margin-top: -3px;
  margin-bottom: 5px !important;
}
.wizard__options-subtitle {
  margin-bottom: 26px;
  line-height: 1.5;
  max-width: 330px;
  margin: 0 auto 26px;
}
.wizard__options-list {
  margin-bottom: 50px;
}
.wizard__options-langs {
  margin-top: 23px;
  margin-bottom: 25px;
}
.wizard__options-langs-list {
  gap: 8px;
}
.wizard__options-lang {
  border-radius: 4px;
  box-shadow: none;
}
.wizard__options-lang[data-state="on"] {
}

/* --- Payment slide (tariff selection) --- */

.wizard__slide--payment {
  /* margin-bottom: 120px; */
}
.wizard__payment-title {
  margin-top: 11px;
}
.wizard__payment-subtitle {
  margin-bottom: 32px;
  margin-top: 7px;
}
.wizard__tariff-list {
  gap: 12px;
  margin-bottom: 15px;
}
.wizard__tariff {
  border-radius: 4px;
  gap: 10px;
  padding: 18px 10px;
  border-width: 1.5px;
}
.wizard__tariff--active {
}
.wizard__tariff-radio {
}
.wizard__tariff-radio-dot {
}
.wizard__tariff-info {
}
.wizard__tariff-label {
}
.wizard__tariff-name {
}
.wizard__tariff-badge {
  background: #efa000;
  padding: 1px 4px 1px;
}
.wizard__tariff-details {
}
.wizard__tariff-old-price {
}
.wizard__tariff-new-price {
}
.wizard__tariff-period {
}
.wizard__tariff-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
  font-size: 20px;
}
.wizard__tariff-price-amount {
  font-size: 18px;
}
.wizard__tariff-price-period {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

/* --- Error slide --- */

.wizard__slide--error {
}
.wizard__error-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wizard__error-retry {
}
.wizard__error-contact {
  margin-top: 0 !important;
}

/* --- Payment guarantee --- */

.wizard__guarantee {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 11px 12px;
  background: #f5f5f5;
  border-radius: 4px;
  text-align: left;
  margin: 7px 0 3px;
}
.wizard__guarantee-icon {
  width: 17px;
  height: 18px;
  flex-shrink: 0;
  color: #16a34a;
  position: relative;
  top: 1px;
}
.wizard__guarantee-text {
  font-size: 13px;
  color: #0a0a0a;
  line-height: 1.4;
  margin: 0;
}
.wizard__guarantee-title {
  color: #0a0a0a;
}

/* --- Telegram Mini App mode --- */

.wizard--tgapp,
.wizard--tgapp .wizard__card {
  background: #fff;
  border: none;
  box-shadow: none;
}

.wizard--tgapp {
  padding: 0;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
}

.wizard--tgapp:before,
.wizard--tgapp:after {
  display: none;
}

.wizard--tgapp .wizard__card {
  max-width: 100%;
  border-radius: 0;
}

.wizard--tgapp .wizard__slide {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom));
}

.wizard--tgapp .wizard__actions,
.wizard--tgapp .wizard__footer {
  margin-top: auto;
}

.wizard--tgapp .wizard__dots-wrap {
  display: none;
}

/* Force button styles in Telegram dark theme */
.wizard--tgapp button.wizard__action,
.wizard--tgapp a.wizard__action {
  background: #000 !important;
  color: #fff !important;
  border-radius: 8px;
}
.wizard--tgapp button.wizard__action[variant="outline"],
.wizard--tgapp a.wizard__action[variant="outline"],
.wizard--tgapp button.wizard__action--back,
.wizard--tgapp .wizard__error-contact {
  background: transparent !important;
  color: #000 !important;
  border: 1px solid #e5e5e5 !important;
}

/* --- Mobile: telegram wizard looks like tgapp --- */

@media (max-width: 767px) {
  button.wizard__action,
  a.wizard__action {
    margin-top: 0;
  }
  .wizard__price-wrap {
    margin-bottom: -3px;
    margin-top: -26px;
  }

  .wizard__price-note {
    margin-bottom: 2px;
    margin-top: -2px;
  }
  .wizard--telegram,
  .wizard--telegram .wizard__card {
    background: #fff;
    border: none;
    box-shadow: none;
  }

  .wizard--telegram {
    padding: 0;
    align-items: stretch;
  }
  .wizard__payment-subtitle {
    margin-top: -2px;
    margin-bottom: 30px;
  }

  .wizard--telegram .wizard__card {
    max-width: 100%;
    border-radius: 0;
  }

  .wizard--telegram .wizard__slide {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    padding-bottom: 7rem;
  }

  .wizard__slide--channel {
    margin-top: -40px;
  }

  .wizard--telegram .wizard__slide--preview {
    justify-content: flex-start;
  }

  * {
  }

  .wizard__payment-title {
    margin-top: -3px;
  }

  .wizard__channel-title {
    margin-bottom: 1px !important;
  }

  .wizard__preview-benefits {
    margin-bottom: 60px;
  }

  .wizard__slide--payment {
    /* margin-bottom: 120px; */
    margin-top: -60px;
  }

  .wizard__preview-benefits-heading {
    margin-top: 10px;
    margin-top: 0;
    font-size: 18px !important;
    margin-bottom: 6px !important;
  }

  .wizard__preview-heading {
    margin-top: 0;
    font-size: 18px !important;
    margin-bottom: 6px !important;
  }

  /* Footer fixed to bottom of viewport */
  .wizard--telegram .wizard__footer,
  .wizard--telegram .wizard__slide > .wizard__actions,
  .wizard--telegram .wizard__slide > form .wizard__actions,
  .wizard--telegram .wizard__error-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: transparent;
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
    margin: 0;
  }

  /* Container elements get white background, buttons keep their own */
  .wizard--telegram .wizard__footer,
  .wizard--telegram .wizard__slide > .wizard__actions,
  .wizard--telegram .wizard__slide > form .wizard__actions,
  .wizard--telegram .wizard__error-actions {
    background: #fff;
  }

  /* Actions inside footer should NOT be fixed ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â footer already is */
  .wizard--telegram .wizard__footer .wizard__actions {
    position: static;
    padding: 0;
    background: none;
  }

  .wizard--telegram .wizard__dots-wrap {
    display: none;
  }

  /* Hide header on mobile telegram wizard */
  body:has(.wizard--telegram) .wizard-header {
    display: none;
  }

  /* Remove header padding-top */
  .wizard-header + .wizard--telegram,
  .wizard-header ~ .wizard--telegram {
    padding-top: 0;
  }
}

/* --- Intro slide --- */

.wizard-intro__media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 380px;
  height: 250px;
  max-width: 100%;
  margin: 0 auto;
}
.wizard-intro__skeleton {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #e5e5e5 25%, #f0f0f0 50%, #e5e5e5 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}
.wizard-intro__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wizard-intro__image--hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* --- WizardImage (slide illustrations) --- */

.wizard-image {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto;
}
.wizard-image__skeleton {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #e5e5e5 25%, #f0f0f0 50%, #e5e5e5 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}
.wizard-image__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wizard-image__img--hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* --- WizardSticker --- */

.wizard-sticker {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto 0.9rem;
}
.wizard-sticker__skeleton {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(90deg, #e5e5e5 25%, #f0f0f0 50%, #e5e5e5 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}
.wizard-sticker__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wizard-sticker__img--hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* === Helper wizard === */

/* Sources list */
.helper__sources {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
  text-align: left;
}
.helper__source-card {
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  text-align: left;
  width: 100%;
  overflow: hidden;
}
.helper__source-card:hover {
  border-color: #000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.helper__source-card-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0 0.75rem 1rem;
  flex: 1;
  cursor: pointer;
  min-width: 0;
}
.helper__source-actions {
  display: flex;
  border-left: 1px solid #e5e5e5;
  flex-shrink: 0;
}
.helper__source-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  align-self: stretch;
  border: none;
  background: transparent;
  color: #999;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.helper__source-action:hover {
  color: #000;
  background: #f5f5f5;
}
.helper__source-action + .helper__source-action {
  border-left: 1px solid #f0f0f0;
}
.helper__source-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.helper__source-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.helper__source-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.helper__source-name {
  font-weight: 500;
  font-size: 14px;
  color: #000;
}
.helper__source-url {
  font-size: 12px;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.helper__create-btn {
  width: 100%;
}

/* Form elements */
.helper__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
  text-align: left;
}
.helper__label {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  margin-top: 0.5rem;
}
.helper__label:first-child {
  margin-top: 0;
}
.helper__textarea {
  font-size: 14px;
  border-radius: 8px;
  resize: vertical;
  min-height: 80px;
}
.helper__textarea--large {
  min-height: 160px;
}

/* Avatar upload row */
.helper__avatar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fafafa;
  margin: 1.5rem 0 0;
}
.helper__avatar-row-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.helper__avatar-circle {
  width: 40px;
  height: 40px;
}
.helper__avatar-row-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.helper__avatar-row-title {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.helper__avatar-row-hint {
  font-size: 12px;
  color: #999;
}

/* Done screen */
.helper__done-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.helper__done-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.helper__done-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.helper__done-link:hover {
  border-color: #000;
  background: #fafafa;
}
.helper__done-link--primary {
  background: #000;
  color: #fff;
  border-color: #000;
}
.helper__done-link--primary:hover {
  background: #222;
  color: #fff;
}
/* Quick actions */
.helper__quick-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.helper__quick-action {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.helper__quick-action-fields {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.helper__quick-action-fields .wizard__input:last-child {
  font-size: 13px;
  padding: 10px 15px;
  color: #666;
}
.helper__quick-action-remove {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #999;
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.15s, border-color 0.15s;
}
.helper__quick-action-remove:hover {
  color: #000;
  border-color: #000;
}
.helper__add-action-btn {
  align-self: flex-start;
}

/* Settings menu */
.helper__settings-list {
  display: flex;
  flex-direction: column;
  margin: 1.5rem 0;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
}
.helper__settings-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
  width: 100%;
}
.helper__settings-item + .helper__settings-item {
  border-top: 1px solid #f0f0f0;
}
.helper__settings-item:hover {
  background: #fafafa;
}
.helper__settings-item-text {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

/* Code block */
.helper__code-block {
  display: flex;
  align-items: stretch;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #f5f5f5;
  margin: 1rem 0;
  overflow: hidden;
}
.helper__code {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 12px;
  line-height: 1.5;
  word-break: break-all;
  text-align: left;
  color: #333;
}
.helper__code-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  border: none;
  border-left: 1px solid #e5e5e5;
  background: transparent;
  color: #999;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.helper__code-copy:hover {
  color: #000;
  background: #eee;
}

/* Embed CTA */
.helper__embed-cta {
  margin: 1.5rem 0 0;
  padding: 1.25rem;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fafafa;
  text-align: center;
}
.helper__embed-cta-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 0.75rem;
}

/* Instruction steps */
.helper__steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
  text-align: left;
}
.helper__step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.helper__step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.helper__step-text {
  font-size: 14px;
  color: #333;
  line-height: 24px;
}

.helper__error-text {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin: 1.5rem 0;
}

/* =============================================================
   Framesuite additions (helper wizard — standalone project)
   Below rules are shared between OnPress and Framesuite via sync.
   Project-specific differences are scoped to .wizard--helper
   (used only in Framesuite helper wizard HTML).
   ============================================================= */

/* --- Slide wrapper used in Framesuite helper wizard --- */

.wizard__slide-wrap {
  padding: 2rem;
  text-align: center;
}

/* --- Helper wizard slide-level text styling
       (Framesuite applies desc-like styles to whole slide) --- */

.wizard--helper .wizard__slide,
.wizard--helper .wizard__desc {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #333;
  font-weight: 500;
  white-space: pre-line;
}

/* --- Underline style for any link inside wizards (Framesuite) --- */

.wizard a {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #d1d1d1;
}
.wizard a:hover {
  color: #000;
  text-decoration-color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* --- Framesuite-specific slide variants --- */

.wizard__slide--openrouter .wizard__title {
  text-align: left;
  margin-bottom: -9px;
}
.wizard__slide--embed {
  text-align: left;
}
.wizard__slide--embed .helper__code-block {
  margin-top: -10px;
}
.wizard__slide--welcome .wizard__title {
  text-align: left;
}
.wizard__slide--helpers {
}
.wizard__slide--tgapp {
  text-align: left;
}
.wizard__slide--tgapp .wizard__title {
  margin-bottom: 12px;
}

/* --- Helper-scoped overrides (Framesuite look) --- */

.wizard--helper input.wizard__input {
  font-size: 14px;
}
.wizard--helper .wizard__loading {
  min-height: 200px;
}
.wizard--helper .wizard__auth-title {
  font-size: 27px;
}
.wizard--helper .wizard__auth-telegram {
  width: 100%;
  gap: 0.5rem;
  margin-top: 0 !important;
}

/* --- Wizard textarea (shared component, Framesuite-authored) --- */

.wizard__textarea {
  font-size: 0.9rem;
  border-radius: 4px;
  resize: vertical;
  min-height: 80px;
  box-shadow: none;
}
.wizard__textarea--large {
  min-height: 160px;
}

/* --- HelperCard (alternate card block used in Framesuite helpers list) --- */

.helper-card {
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  text-align: left;
  width: 100%;
  overflow: hidden;
}
.helper-card:hover {
  border-color: #000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.helper-card__main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0 0.75rem 1rem;
  flex: 1;
  cursor: pointer;
  min-width: 0;
}
.helper-card__actions {
  display: flex;
  flex-shrink: 0;
}
.helper-card__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  align-self: stretch;
  border: none;
  background: transparent;
  color: #999;
  cursor: pointer;
  transition: color 0.15s;
  text-decoration: none;
}
.helper-card__action:hover {
  color: #000;
}
.helper-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.helper-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.helper-card__avatar-letter {
  font-size: 16px;
  font-weight: 600;
  color: #888;
}
.helper-card__info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.helper-card__name {
  font-weight: 500;
  color: #000;
}
.helper-card__slug {
  font-size: 12px;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* --- Helper avatar drop zone (Framesuite upload UI) --- */

.helper__avatar-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border: 2px dashed #e5e5e5;
  border-radius: 10px;
  background: #fafafa;
  margin: 1.5rem 0 0;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.helper__avatar-drop:hover {
  border-color: #ccc;
}
.helper__avatar-drop--active {
  border-color: #000;
  background: #f0f0f0;
}
.helper__avatar-circle--large {
  width: 64px;
  height: 64px;
}
.helper__avatar-drop-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.25rem;
}
.helper__avatar-drop-title {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.helper__avatar-drop-hint {
  font-size: 12px;
  color: #999;
}

/* --- Helper avatar clickable row (Framesuite inline avatar picker) --- */

.helper__avatar-clickable-wrap {
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.helper__avatar-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.15s;
}
.helper__avatar-clickable-wrap:hover .helper__avatar-overlay {
  opacity: 1;
}
.helper__avatar-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.helper__avatar-hint {
  font-size: 13px;
  color: #888;
  margin: 0;
}
.helper__avatar-file-info {
  display: flex;
  flex-direction: column;
}
.helper__avatar-filename {
  font-size: 13px;
  font-weight: 500;
}
.helper__avatar-filesize {
  font-size: 12px;
  color: #888;
}
.helper__avatar-btn {
  width: fit-content;
  margin-top: 4px;
  border-radius: 4px;
  box-shadow: none;
}
.helper__label--inline {
  margin-bottom: 0;
}

/* --- Helper label row & variants (Framesuite) --- */

.helper__label-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.helper__label-row button {
  position: relative;
  top: -4px;
  width: 18px;
  height: 18px;
}
.helper__response-style {
  margin-bottom: 20px;
}
.helper__fast-actions-label {
  margin-top: 20px;
}
.helper__openrouter-key-label {
  margin-bottom: 0;
}

/* --- Helper image radio option --- */

.helper__image-radio-option {
}
.helper__image-radio-option button {
  border-radius: 4px !important;
  border-width: 1.5px !important;
  height: 83px;
}

/* --- Helper OpenRouter slide --- */

.helper__openrouter-steps {
  padding-left: 1.25rem;
  list-style-type: decimal;
  text-align: left;
}
.helper__openrouter-steps li {
  margin-bottom: 12px;
}
.helper__openrouter-about {
  text-align: left;
}
.helper__openrouter-verify-btn {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 6px;
  background: #f5f5f5;
  border: none;
  color: #666;
  cursor: pointer;
}
.helper__openrouter-msg {
  font-size: 13px;
}
.helper__openrouter-msg--valid {
  color: #16a34a;
}
.helper__openrouter-msg--error {
  color: #dc2626;
}

/* --- Helper quick action variants (Framesuite vertical layout) --- */

.helper__quick-action--vertical {
  flex-direction: column;
  align-items: stretch;
}
.helper__quick-action-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.helper__quick-action-row button:first-child {
  border-radius: 4px;
  box-shadow: none;
  width: 70px;
}
.helper__quick-action-row button:last-child {
  border-radius: 4px;
}
.helper__quick-action-input {
  flex: 1;
  padding: 15px 11px 16px !important;
}

/* --- Helper settings quick actions (Framesuite) --- */

.helper__settings-actions {
  display: flex;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
}
.helper__settings-action-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  flex: 1;
  justify-content: center;
}
.helper__settings-action-item:hover {
  background: #fafafa;
  border-color: #ccc;
  color: #000;
}
.helper__settings-action-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* --- Helper-scoped overrides for shared .helper__* classes --- */

.wizard--helper .helper__form {
  gap: 0;
}
.wizard--helper .helper__label {
  margin-top: 0.5rem;
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 500;
  white-space: pre-line;
}
.wizard--helper .helper__label:first-child {
  margin-top: 0;
}
.wizard--helper .helper__sources {
  margin: 30px 0 20px;
}
.wizard--helper .helper__avatar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
  margin: 2px 0 18px;
  justify-content: flex-start;
}
.wizard--helper .helper__settings-list {
  border-radius: 5px;
}
.wizard--helper .helper__settings-item svg {
  max-width: 16px;
}
.wizard--helper .helper__settings-item-text {
  font-size: inherit;
}
.wizard--helper .helper__code-block {
  border-radius: 4px;
  margin: -10px 0 0;
}
.wizard--helper .helper__step-num {
  width: 20px;
  height: 20px;
  font-size: 11px;
}
.wizard--helper .helper__step-text {
  line-height: 20px;
}
.wizard--helper .helper__steps {
  gap: 1rem;
}
.wizard--helper .helper__add-action-btn {
  border-radius: 4px;
  box-shadow: none;
  width: 100%;
}
.wizard--helper .helper__source-actions {
  border-left: none;
}
.wizard--helper .helper__source-action:hover {
  background: transparent;
}

/* --- WizardFooter component (user info + logout, Framesuite) --- */

.wizard-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-top: 14px;
}
.wizard-footer__user {
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}
.wizard-footer__logout {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
  text-decoration: underline;
  text-decoration-color: #000;
  text-decoration-thickness: 0.7px;
  text-underline-offset: 22%;
}
.wizard-footer__logout:hover {
  color: #333;
}

/* --- Helper wizard mobile (Framesuite) --- */

@media (max-width: 767px) {
  .wizard--helper,
  .wizard--helper .wizard__card {
    background: #fff;
    border: none;
    box-shadow: none;
  }

  .wizard--helper {
    padding: 0;
    align-items: stretch;
  }

  .wizard--helper .wizard__card {
    max-width: 100%;
    border-radius: 0;
  }

  .wizard--helper .wizard__slide-wrap {
    padding: 0 17px;
  }

  .wizard--helper .wizard__slide--welcome .wizard__title {
    margin-bottom: -6px;
  }

  .wizard--helper .wizard__slide {
    min-height: calc(100svh - 7rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
    padding-bottom: 7rem;
    box-sizing: border-box;
  }

  .wizard--helper .helper__form,
  .wizard--helper .helper__sources {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /* Actions fixed to bottom */
  .wizard--helper .wizard__slide > .wizard__actions,
  .wizard--helper .wizard__slide > .wizard__actions-wrap,
  .wizard--helper .wizard__error-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: #fff;
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
    margin: 0;
  }

  .wizard--helper:before,
  .wizard--helper:after {
    display: none;
  }
}


/* ─── Paywall dialog (moved from custom.css) ────────────────────────────── */

.paywall-dialog {
  gap: 0;
}

.paywall-dialog__content {
}

.paywall-dialog__header {
  text-align: center;
}

.paywall-dialog__title {font-size: 25px;margin-bottom: -4px;}

.paywall-dialog__subtitle {font-size: 14px;color: #000;font-weight: 500;line-height: 20px;}

.paywall-dialog__error {
}

.paywall-dialog__plans {
}

.paywall-dialog__plans-list {
}

.paywall-dialog__empty {
}

.paywall-dialog__plan {
  padding: 8px 10px;
  gap: 10px;
}

.paywall-dialog__plan--selected {
}

.paywall-dialog__plan-check svg {
  position: relative;
  top: 0.5px;
}

.paywall-dialog__plan-radio {
}

.paywall-dialog__plan-radio-dot {
}

.paywall-dialog__plan-info {
}

.paywall-dialog__plan-name {
  font-weight: 500;
}

.paywall-dialog__plan-label {
  font-size: 11px;
  font-weight: bold;
  background: #ff6900;
  line-height: 17px;
  padding: 0 7px;
  margin-left: -3px;
}

.paywall-dialog__plan-description {
}

.paywall-dialog__plan-price {
}

.paywall-dialog__plan-old-price {
}

.paywall-dialog__plan-discount {
  border-radius: 4px;
  font-size: 10px;
  padding: 0px 2px;
  line-height: 12px;
  font-weight: bold;
}

.paywall-dialog__plan-current-price {
  font-size: 19px;
  letter-spacing: -0.5px;
  font-weight: bold;
}

.paywall-dialog__features {margin-bottom: 0;}

.paywall-dialog__features-list {
}

.paywall-dialog__feature {
}

.paywall-dialog__feature-icon {
  border-radius: 8px;
  width: 30px;
  height: 30px;
  margin-top: 3px;
}

.paywall-dialog__feature-content {
  padding: 0;
  text-align: left;
}

.paywall-dialog__feature-title {
}

.paywall-dialog__feature-description {
}

.paywall-dialog__footer {
  padding: 0px 20px 10px;
  border: none;
  position: relative;
  z-index: 1;
}

.paywall-dialog__footer:after {
  content: '';
  background: linear-gradient(0deg, #ffffff, transparent);
  width: 100%;
  height: 28px;
  position: absolute;
  top: -27px;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.paywall-dialog__button {
  position: relative !important;
  z-index: 2;
  padding: 22px 32px !important;
  font-size: 15px;
  overflow: hidden !important;
  background: linear-gradient(145deg, #f98533 0%, #ff6a00 35%, #ff6a00 100%) !important;
  border: none !important;
}

.paywall-dialog__button::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 90%;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  ) !important;
  transform: translateX(-100%) skewX(-20deg);
  animation: paywall-shimmer 3s ease-in-out infinite !important;
  pointer-events: none;
}

@keyframes paywall-shimmer {
  0% {
    transform: translateX(-100%) skewX(-20deg);
  }
  50%, 100% {
    transform: translateX(250%) skewX(-20deg);
  }
}

.paywall-dialog__footer-text {
  margin: 5px 0 0;
}
