/* =========================
   Pricing
   ========================= */

.pricing {
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 32px;
}

.pricing h1 {
    max-width: 560px;
    margin: 0 auto;
}

.pricing-cards {
    display: flex;
    gap: 24px;
    align-items: stretch;
    justify-content: center;
}

.pricing-card {
    position: relative;
    box-sizing: content-box;
    max-width: 360px;
    width: 100%;
    flex-shrink: 0;
    border-radius: 24px;
    background: var(--bg);
    border-width: 3px;
    border-bottom-width: 6px;
    border-style: solid;
    border-color: var(--border);
    display: flex;
    flex-direction: column;
}

.pricing-card--outlined {
    border-color: #E8DAF6;
}

.pricing-card--accent {
    background: var(--orange);
    border: 0;
    color: var(--bg);
}

.pricing-card__badge {
    position: absolute;
    top: -8px;
    right: 24px;
    padding: 9px 10px;
    border-radius: 16px;
    font-family: var(--font-sf-pro-display);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    background: #F96F48;
    color: var(--bg);
    z-index: 2;
}

.pricing-card--light .pricing-card__badge,
.pricing-card--outlined .pricing-card__badge {
    background: var(--orange);
    color: var(--bg);
}

.pricing-card__container {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 24px;
    border-radius: 20px;
}

.pricing-card__flower {
    position: absolute;
    width: 75px;
    height: 75px;
    top: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.pricing-card--light .pricing-card__flower,
.pricing-card--outlined .pricing-card__flower {
    top: -16px;
    right: -16px;
}

.pricing-card--accent .pricing-card__flower {
    top: auto;
    bottom: -16px;
    right: -16px;
}

.pricing-card__header {
    gap: 4px;
    margin-bottom: 24px;
    z-index: 2;
}

.pricing-card__price-value {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.pricing-card__price-suffix {
    font-family: var(--font-onest);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.pricing-card__title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
}

.pricing-card__subtitle {
    max-width: 290px;
    font-size: 14px;
    font-weight: 400;
}

.pricing-card__actions {
    margin-bottom: 24px;
    z-index: 2;
}

.pricing-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    width: 100%;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    color: var(--bg);
    text-decoration: none;
    transition: transform .4s;
    will-change: transform;
    user-select: none;
}

@media (hover: hover) and (pointer: fine) {
    .pricing-card__btn:hover {
        transform: scale(1.04);
    }
}

.pricing-card__btn:active {
    transform: scale(0.95);
}

.pricing-card__btn.btn--outline {
    background: var(--bg);
    border: 1px solid #EBEDEF;
    color: var(--orange);
}

.pricing-card__btn.btn--filled {
    background: var(--orange);
    border: 1px solid var(--orange);
    color: var(--bg);
}

.pricing-card__btn.btn--filled-on-accent {
    background: var(--bg);
    border: 1px solid #EBEDEF;
    color: var(--orange);
}

.pricing-card__bottom {
    gap: 8px;
    overflow: hidden;
    z-index: 2;
    transition: height 0.4s;
}

.pricing-card__bottom__additional-space {
    display: none;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.pricing-card__feature {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.pricing-card__feature.is-disabled {
    color: #A3A3A3;
}

.pricing-card__chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    border: 1px solid #F97853;
    color: var(--bg);
}

.pricing-card__payments {
    gap: 4px;
}

.pricing-card__payment-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 9px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    border: 1px solid #EBEDEF;
}

.pricing-card__btn-more {
    position: relative;
    display: none;
    margin-top: 16px;
    align-items: center;
    gap: 5px;
    border: 0;
    background: transparent;
    color: var(--orange);
    font-family: var(--font-onest);
    font-size: 16px;
    font-weight: 500;
    z-index: 2;
    text-decoration: underline;
    text-underline-offset: 4px;
    -webkit-tap-highlight-color: transparent;
}

.pricing-card__btn-more svg {
    width: 17px;
    height: 9px;
    transition: transform .4s;
    will-change: transform;
}

.pricing-card__btn-more.is-open svg {
    transform: rotate(180deg);
}

.pricing-card--accent .pricing-card__btn-more {
    color: var(--bg);
}

.pricing-card--accent .pricing-card__btn-more svg path {
    stroke: var(--bg);
}

@media screen and (max-width: 768px) {
    .pricing {
        padding-top: 32px;
        padding-bottom: 32px;
        gap: 24px;
    }

    .pricing h1 {
        text-align: left;
    }

    .pricing-card__header {
        margin-bottom: 16px;
    }

    .pricing-card__actions {
        margin-bottom: 0;
    }

    .pricing-card__feature,
    .pricing-card__payment-pill {
        font-size: 14px;
    }

    .pricing-card__bottom {
        height: 0;
    }

    .pricing-card__bottom__additional-space {
        display: block;
        min-height: 8px;
        max-height: 8px;
    }

    .pricing-card__btn-more {
        display: flex;
    }
}

/* =========================
   Paywall Choose (multi-step)
   ========================= */

.paywall-choose {
    padding-top: 16px;
}

.paywall-choose__container {
    position: relative;
    align-items: center;
}

.paywall-choose__flower {
    position: absolute;
    pointer-events: none;
    user-select: none;
    width: 120px;
    height: auto;
    z-index: 0;
}

.paywall-choose__flower--left {
    top: -41px;
    left: -87px;
    width: 126.4px;
}

.paywall-choose__flower--right {
    top: 8px;
    right: -73.8px;
}

.paywall-choose__chip {
    position: relative;
    z-index: 1;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--light-orange);
    color: var(--orange);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px;
}

.paywall-choose__title {
    max-width: 650px;
    position: relative;
    z-index: 1;
    margin: 0;
    margin-bottom: 32px;
}

/* Stepper */
.paywall-stepper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 40rem;
    padding-bottom: 28px;
    margin-bottom: 32px;
}

.paywall-stepper__bar {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    height: 4px;
    background-color: #FFDAD1;
    border-radius: 999px;
}

.paywall-stepper__progress {
    height: 100%;
    background-color: var(--orange);
    border-radius: 999px;
}

.paywall-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 32px;
    flex-shrink: 0;
    cursor: default;
}

.paywall-step.is-done {
    cursor: pointer;
}

.paywall-step__dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--bg);
    border: 2px solid #FFDAD1;
    color: #C9A79C;
    font-family: var(--font-onest);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.paywall-step.is-active .paywall-step__dot,
.paywall-step.is-done .paywall-step__dot {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--bg);
}

.paywall-step__label {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: var(--font-onest);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: #A7A8A8;
}

.paywall-step.is-active .paywall-step__label {
    color: var(--orange);
    font-weight: 600;
}

.paywall-stepper-actions {
    margin-bottom: 16px;
    padding: 4px;
    background: var(--gray-15);
    border-radius: 72px;
    display: flex;
    gap: 4px;
}

.paywall-stepper-actions:last-child {
    margin-bottom: 48px;
}

.paywall-stepper-actions__option {
    position: relative;
}

.paywall-stepper-actions__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.paywall-stepper-actions__btn {
    width: auto;
    padding: 5px 40px;
    border-radius: 100px;
    border: 1px solid #27AE60;
    height: 52px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-onest);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    transition: .4s ease;
    text-align: center;
    cursor: pointer;
}

.paywall-stepper-actions__btn small {
    margin-top: 2px;
    color: currentColor;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.15;
}

/* active */
.paywall-stepper-actions__input:checked+.paywall-stepper-actions__btn {
    background: #D5F5E3;
}

@media (hover: hover) and (pointer: fine) {
    .paywall-stepper-actions__btn:hover {
        background: #D5F5E3;
    }
}

/* Level cards */
.paywall-levels {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.paywall-level-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    width: 220px;
    min-height: 136px;
    border-radius: 24px;
    background: var(--bg);
    border-width: 3px 3px 6px 3px;
    border-style: solid;
    border-color: #F2F2F2;
    text-align: left;
    font-family: var(--font-onest);
    color: inherit;
    cursor: pointer;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
    .paywall-level-card:hover {
        border-color: var(--orange);
    }

    .paywall-level-card:hover .paywall-level-card__btn,
    .paywall-provider-card:hover .paywall-level-card__btn {
        background: var(--orange);
        border-color: var(--orange);
        color: var(--bg);
    }
}

.paywall-level-card:active,
.paywall-provider-card:active {
    transform: scale(0.95);
}

.paywall-level-card:focus-visible,
.paywall-provider-card:focus-visible {
    border-color: var(--orange);
    outline: 3px solid rgba(248, 86, 40, 0.2);
    outline-offset: 3px;
}

.paywall-level-card__title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 4px;
}

.paywall-level-card__subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: #666667;
    margin-bottom: 12px;
}

.paywall-level-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    border-radius: 999px;
    background: var(--bg);
    border: 1px solid #EBEDEF;
    color: var(--orange);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: auto;
    transition: background .4s ease, border-color .4s ease, color .4s ease, transform .25s ease;
    font-family: var(--font-onest);
}

/* Providers grid (step 2) */
.paywall-providers {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 1050px;
}

.paywall-provider-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    width: 220px;
    min-height: 136px;
    border-radius: 16px;
    background: var(--bg);
    border-width: 3px 3px 6px 3px;
    border-style: solid;
    border-color: #F2F2F2;
    text-align: left;
    font-family: var(--font-onest);
    color: inherit;
    cursor: pointer;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
    .paywall-provider-card:hover {
        border-color: var(--orange);
    }
}

.paywall-provider-card__title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 4px;
}

.paywall-provider-card__dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    flex-shrink: 0;
}

.paywall-provider-card__dot--green {
    background: #A9E0B8;
}

.paywall-provider-card__dot--yellow {
    background: #FFE18A;
}

.paywall-provider-card__dot--violet {
    background: #C7A6E3;
}

.paywall-provider-card__dot--orange {
    background: #FFB995;
}

.paywall-provider-card__dot--pink {
    background: #F4B8C6;
}

.paywall-provider-card__dot--blue {
    background: #B7D7FF;
}

.paywall-provider-card__subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--light-gray);
    margin-bottom: 12px;
}

/* Plan cards (step 3) */
.paywall-plans {
    --card-padding: 24px;
    --card-border-width: 3px;
    --card-border-bottom-width: 6px;

    width: 100%;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 360px));
    justify-content: center;
    gap: 24px;
}

.paywall-plan-card {
    --plan-color: #E8DAF6;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--card-padding, 24px);
    width: 100%;
    border-radius: 24px;
    background: var(--bg);
    border-width: var(--card-border-width, 3px);
    border-bottom-width: var(--card-border-bottom-width, 6px);
    border-style: solid;
    border-color: var(--plan-color);
    color: var(--plan-color);
    font-family: var(--font-onest);
    overflow: hidden;
}

.paywall-plan-card--skeleton {
    min-height: 520px;
    background: #FFFFFF;
    border-color: #EBEDEF;
    box-shadow: none;
    pointer-events: none;
}

.paywall-skeleton {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #EEF0F2;
}

.paywall-skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
    animation: paywall-skeleton-shimmer 1.25s ease-in-out infinite;
}

.paywall-skeleton--media {
    height: 148px;
    margin-bottom: 24px;
    border-radius: 16px;
}

.paywall-skeleton--price {
    width: 42%;
    height: 38px;
    margin-bottom: 12px;
}

.paywall-skeleton--title {
    width: 64%;
    height: 32px;
    margin-bottom: 10px;
}

.paywall-skeleton--text {
    width: 88%;
    height: 18px;
    margin-bottom: 24px;
}

.paywall-skeleton--button {
    width: 100%;
    height: 48px;
    margin-bottom: 24px;
    border-radius: 999px;
}

.paywall-skeleton--line {
    width: 82%;
    height: 18px;
    margin-bottom: 10px;
}

.paywall-skeleton--short {
    width: 58%;
}

@keyframes paywall-skeleton-shimmer {
    100% {
        transform: translateX(100%);
    }
}

.paywall-plan-card__flower {
    position: absolute;
    top: -20px;
    right: -20px;
    border-radius: 20px;
    user-select: none;
    pointer-events: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: start;
    justify-content: end;
}

.paywall-plan-card__flower svg {
    color: var(--plan-color);
}

.paywall-plan-card__flower-img {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.paywall-plan-card__flower--accent {
    align-items: end;
    justify-content: end;
}

.paywall-plan-card--accent {
    background: var(--orange);
    border: none;
    color: var(--bg);
}

.paywall-plan-card--style-violet {
    --plan-color: #E8DAF6;
}

.paywall-plan-card--style-green {
    --plan-color: #D5F5E3;
}

.paywall-plan-card--style-yellow {
    --plan-color: #FFF5CC;
}

.paywall-plan-card--style-pink {
    --plan-color: #FEDDD4;
}

.paywall-plan-card--style-blue {
    --plan-color: #D6E4FF;
}

.paywall-plan-card--style-orange {
    --plan-color: #FFD6B5;
}

.paywall-plan-card__badge {
    display: block;
    position: absolute;
    top: -16px;
    right: 24px;
    padding: 9px 10px;
    border-radius: 999px;
    background: #F96F48;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    font-family: var(--font-sf-pro-display);
    z-index: 2;
}

.paywall-plan-card__badge--accent {
    background: #F96F48;
    color: #FFFFFF;
}

.paywall-plan-card__media {
    position: relative;
    width: 100%;
    height: 148px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 3px solid var(--plan-color);
}

.paywall-plan-card__media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.paywall-plan-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #FFFFFF;
    border: none;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: transform .25s ease, background .25s ease;
}

.paywall-plan-card__play:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.paywall-plan-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.paywall-plan-card__price-value {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.05;
    color: #191919;
}

.paywall-plan-card--accent .paywall-plan-card__price-value {
    color: var(--bg);
}

.paywall-plan-card__price-suffix {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: #191919;
    white-space: nowrap;
}

.paywall-plan-card--accent .paywall-plan-card__price-suffix {
    color: rgba(255, 255, 255);
}

.paywall-plan-card__title {
    display: block;
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin: 0 0 4px;
}

.paywall-plan-card--accent .paywall-plan-card__title {
    color: var(--bg);
}

.paywall-plan-card__subtitle {
    max-width: 30ch;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    color: #191919;
    margin: 0 0 28px;
}

.paywall-plan-card--accent .paywall-plan-card__subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.paywall-plan-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border: 1px solid transparent;
    margin-bottom: 24px;
    font-family: var(--font-onest);
    transition: background .3s ease, border-color .3s ease, color .3s ease, transform .2s ease;
}

.paywall-plan-card__btn:active {
    transform: scale(0.97);
}

.paywall-plan-card__btn.is-loading {
    opacity: 0.75;
    pointer-events: none;
}

.paywall-plan-card__btn--outline {
    background: var(--orange);
    color: var(--bg);
    border-color: var(--orange);
}

.paywall-plan-card__btn--outline:hover {
    background: #e04d23;
    border-color: #e04d23;
}

.paywall-plan-card__btn--filled {
    background: var(--orange);
    color: var(--bg);
    border-color: var(--orange);
}

.paywall-plan-card__btn--filled:hover {
    background: #e04d23;
    border-color: #e04d23;
}

.paywall-plan-card__btn--filled-on-accent {
    background: var(--bg);
    color: var(--orange);
    border-color: var(--bg);
}

.paywall-plan-card__btn--filled-on-accent:hover {
    background: rgba(255, 255, 255, 0.9);
}

.paywall-plan-card__features {
    list-style: disc;
    list-style-position: outside;
    padding: 0 0 0 22px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.paywall-plan-card__feature {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text);
    padding-left: 4px;
}

.paywall-plan-card__feature::marker {
    color: #FF7A00;
    font-size: 20px;
}

.paywall-plan-card--accent .paywall-plan-card__feature::marker {
    color: var(--bg);
}

.paywall-plan-card--accent .paywall-plan-card__feature {
    color: var(--bg);
}

.paywall-plan-card__feature.is-disabled {
    color: #A3A3A3;
}

.paywall-plan-card--accent .paywall-plan-card__feature.is-disabled {
    color: rgba(255, 255, 255, 0.55);
}

.paywall-plan-card__feature.is-chip {
    margin-top: 4px;
}

.paywall-plan-card__feature-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: var(--bg);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
}

.paywall-plan-card--default .paywall-plan-card__feature-chip {
    border-color: #EBEDEF;
    color: var(--text);
}

.paywall-plan-card__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.paywall-plan-card__access {
    margin-bottom: 20px;
}

.paywall-plan-card__section-title {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.paywall-plan-card--accent .paywall-plan-card__section-title {
    color: var(--bg);
}

.paywall-plan-card__access-items {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.paywall-plan-card__access-item {
    display: inline-flex;
    align-items: center;
    padding: 6px 9px;
    border: 1px solid #EBEDEF;
    border-radius: 999px;
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.paywall-plan-card--accent .paywall-plan-card__access-item {
    border-color: #F97853;
    color: var(--bg);
}

.paywall-plan-card__payments-group {
    display: flex;
    flex-direction: column;
}

.paywall-plan-card__payment {
    display: inline-flex;
    align-items: center;
    padding: 6px 9px;
    border-radius: 999px;
    border: 1px solid #EBEDEF;
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.paywall-plan-card--accent .paywall-plan-card__payment {
    border-color: #F97853;
    color: var(--bg);
}

.paywall-plan-card__bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.paywall-plan-card__btn-more {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--orange);
    font-family: var(--font-onest);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
}

.paywall-plan-card__btn-more svg {
    transition: transform .25s ease;
}

.paywall-plan-card__btn-more.is-open svg {
    transform: rotate(180deg);
}

.paywall-plan-card--accent .paywall-plan-card__btn-more {
    color: var(--bg);
}

@media screen and (max-width: 1024px) {
    .paywall-choose__flower {
        width: 80px;
    }

    .paywall-plans {
        grid-template-columns: repeat(2, minmax(0, 360px));
        justify-content: center;
        gap: 20px;
    }

    .paywall-plan-card {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {

    .paywall-levels,
    .paywall-providers {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        gap: 8px;
    }

    .paywall-choose {
        padding-top: 8px;
        padding-bottom: 32px;
    }

    .paywall-choose__container {
        align-items: stretch;
    }

    .paywall-choose__flower {
        display: none;
    }

    .paywall-choose__chip {
        display: none;
    }

    .paywall-choose__title {
        text-align: left;
        margin-bottom: 24px;
    }

    .paywall-stepper {
        max-width: 100%;
        margin-bottom: 24px;
        padding-right: 6px;
        padding-left: 6px;
    }

    .paywall-stepper-actions {
        margin-bottom: 16px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    }

    .paywall-stepper-actions:last-child {
        margin-bottom: 32px;
    }

    .paywall-stepper-actions__btn {
        padding: 0 15px;
    }

    .paywall-level-card,
    .paywall-provider-card {
        padding: 12px;
        width: 100%;
        min-height: 120px;
    }

    .paywall-level-card__title,
    .paywall-provider-card__title {
        font-size: 18px;
    }

    .paywall-level-card__btn {
        height: 36px;
        background-color: var(--orange);
        color: #fff;
        font-size: 12px;
    }

    .paywall-provider-card--skeleton .paywall-skeleton--title {
        height: 22px;
        margin-bottom: 6px;
    }

    .paywall-provider-card--skeleton .paywall-skeleton--text {
        height: 14px;
        margin-bottom: 12px;
    }

    .paywall-provider-card--skeleton .paywall-skeleton--button {
        height: 36px;
        margin-top: auto;
        margin-bottom: 0;
    }

    .paywall-plans {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-self: center;
        gap: 24px;
        max-width: max-content;
    }

    .paywall-plan-card {
        width: 100%;
        max-width: 100%;
    }

    .paywall-plan-card--skeleton {
        width: auto;
        max-width: none;
        display: grid;
        grid-template-columns: minmax(0, calc(382px - (var(--card-padding) * 2) - (var(--card-border-width) * 2)));
    }

    .paywall-plan-card__media {
        margin-bottom: 16px;
        border-width: 2px;
    }

    .paywall-plan-card__play {
        width: 44px;
        height: 44px;
    }

    .paywall-plan-card__price {
        margin-bottom: 4px;
    }

    .paywall-plan-card__subtitle {
        max-width: none;
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .paywall-plan-card__btn {
        margin-bottom: 16px;
    }

    .paywall-plan-card__payments {
        padding-bottom: 16px;
    }

    .paywall-plan-card__bottom {
        height: 0;
        overflow: hidden;
        transition: height .3s ease;
        gap: 6px;
    }

    .paywall-plan-card__btn-more {
        display: inline-flex;
    }
}

.paywall-legacy-pricing {
    display: none !important;
}

/* =========================
   Detail Information
   ========================= */

.detail-information__container {
    padding-top: 48px;
    padding-bottom: 48px;
}

@media screen and (max-width: 768px) {
    .detail-information__container {
        padding-top: 0;
        padding-bottom: 0;
    }
}

/* =========================
   FAQ
   ========================= */

[data-page="paywall"] .faq__container {
    padding-top: 48px;
    padding-bottom: 48px;
}

@media screen and (max-width: 768px) {
    [data-page="paywall"] .faq__container {
        padding-top: 0;
        padding-bottom: 0;
    }
}

/* =========================
   Video modal
   ========================= */

.paywall-video-modal__dialog {
    max-width: 800px !important;
    padding: 32px !important;
    border-radius: 16px !important;
}

.paywall-video-modal__title {
    font-family: var(--font-onest);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    color: #191919;
    margin: 0 40px 14px 0;
}

.paywall-video-modal__languages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.paywall-video-modal__language {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 38px;
    margin: 0;
    padding: 7px 10px;
    border: 1px solid #DDDDDD;
    border-radius: 12px;
    background: #fff;
    color: var(--sub-black);
    font-family: var(--font-onest);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: border-color .25s, color .25s, background-color .25s;
}

.paywall-video-modal__language:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.paywall-video-modal__language.is-active {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
}

.paywall-video-modal__language:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
}

.paywall-video-modal__code {
    color: inherit;
}

.paywall-video-modal__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #000;
}

.paywall-video-modal__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.paywall-video-modal__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: #ffffff;
    border: none;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: transform .25s ease;
}

.paywall-video-modal__play:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.paywall-video-modal__close {
    width: 100%;
    height: 48px;
}

.paywall-video-modal__media {
    cursor: pointer;
}

.paywall-video-modal__media.is-playing {
    cursor: default;
}

.paywall-video-modal__video,
.paywall-video-modal__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
    border: none;
}

.paywall-video-modal__media.is-playing .paywall-video-modal__poster,
.paywall-video-modal__media.is-playing .paywall-video-modal__play {
    opacity: 0;
    pointer-events: none;
}

.paywall-video-modal__media.is-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    border: 3px solid rgba(255, 255, 255, 0.35);
    border-top-color: var(--orange, #F85628);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: paywallVideoLoader 0.8s linear infinite;
    z-index: 3;
}

@keyframes paywallVideoLoader {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.paywall-video-modal__play svg {
    width: 28px;
    height: 28px;
}

@media screen and (max-width: 768px) {
    .paywall-video-modal__dialog {
        max-width: none !important;
        padding: 24px 16px !important;
    }

    .paywall-video-modal__title {
        margin: 0 38px 24px 0;
    }

    .paywall-video-modal__media {
        margin-bottom: 24px;
    }

    .paywall-video-modal__play {
        width: 40px;
        height: 40px;
    }

    .paywall-video-modal__play svg {
        width: 20px;
        height: 20px;
    }

    .paywall-video-modal__media.is-loading::after {
        width: 32px;
        height: 32px;
    }
}

/* =========================
   Auth modal
   ========================= */

.paywall-auth-modal__dialog {
    max-width: 520px;
}

.paywall-auth-modal__title {
    display: block;
    padding-right: 36px;
    margin-bottom: 14px;
    line-height: 1.2;
}

.paywall-auth-modal__text {
    margin-bottom: 24px;
    color: var(--dark-gray);
}

.paywall-auth-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.paywall-auth-modal__actions .primary-btn {
    --btn-width: 100%;
    --btn-height: 48px;
    --btn-max-width: none;
    --btn-padding: 0 20px;
}

.paywall-auth-modal__secondary {
    background: var(--bg);
    color: var(--orange);
    border: 1px solid var(--orange);
    box-shadow: none;
}

/* =========================
   Limit modal (free exercises used up)
   ========================= */

#paywall-limit-modal .modal__backdrop {
    backdrop-filter: blur(8px);
}

.paywall-limit-modal__dialog {
    max-width: 420px;
    padding: 24px;
    background: #ffffff;
    border-radius: 24px;
}

.paywall-limit-modal__title {
    font-family: var(--font-onest);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    color: #191919;
    margin: 0 32px 14px 0;
}

.paywall-limit-modal__text {
    font-family: var(--font-onest);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #A7A8A8;
    margin: 0 0 16px;
}

.paywall-limit-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.paywall-limit-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-family: var(--font-onest);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.paywall-limit-modal__btn--primary {
    background: var(--orange);
    border: 1px solid var(--orange);
    color: #ffffff;
}

.paywall-limit-modal__btn--secondary {
    background: transparent;
    border: 1px solid #EBEDEF;
    color: var(--orange);
    font-size: 14px;
}

.paywall-limit-modal__btn:hover {
    transform: scale(1.02);
}

@media screen and (max-width: 768px) {
    .paywall-limit-modal__dialog {
        max-width: none;
        padding: 20px 16px;
    }

    .paywall-limit-modal__title {
        font-size: 18px;
    }
}

/* =========================
   Invoice modal (billing data)
   ========================= */

.paywall-invoice-modal__dialog {
    max-width: 592px !important;
}

.paywall-invoice-modal__title {
    font-family: var(--font-onest);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    color: #2A1C14;
    margin: 0 40px 24px 0;
}

.paywall-invoice-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.paywall-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.paywall-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.paywall-form-field__label {
    font-family: var(--font-onest);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #191919;
}

.paywall-form-field__req {
    color: #191919;
}

.paywall-form-field__input {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #EBEDEF;
    background: var(--bg);
    font-family: var(--font-onest);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    color: #191919;
    box-sizing: border-box;
    transition: border-color .2s ease;
    -webkit-tap-highlight-color: transparent;
}

.paywall-form-field__input::placeholder {
    color: #A7A8A8;
}

.paywall-form-field__input:focus {
    outline: none;
    border-color: var(--orange);
}

.paywall-form-field__select {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    cursor: pointer;
    color: #A7A8A8;
}

.paywall-form-field__select.is-filled {
    color: #191919;
}

.paywall-form-field__select-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.paywall-form-field__select-flag:empty {
    display: none;
}

.paywall-form-field__select-flag img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.paywall-form-field__select-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.paywall-form-field__select-caret {
    flex-shrink: 0;
    transition: transform .2s ease;
}

.paywall-invoice-form__total {
    font-family: var(--font-onest);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #323232;
    text-align: right;
    margin-top: 4px;
    margin-bottom: 4px;
}

.paywall-invoice-form__total strong {
    font-weight: 600;
}

.paywall-payment-modal__dialog {
    max-width: 480px !important;
}

.paywall-payment-modal__title {
    margin: 0 40px 20px 0;
    color: #191919;
    font-family: var(--font-onest);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
}

.paywall-payment-modal__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.paywall-payment-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.paywall-payment-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid #EBEDEF;
    border-radius: 999px;
    background: #FFFFFF;
    color: #191919;
    text-align: left;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, opacity .2s ease, transform .2s ease;
}

.paywall-payment-option--with-description {
    min-height: 68px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 28px;
}

.paywall-payment-option:hover {
    border-color: #F85628;
}

.paywall-payment-option:active {
    transform: scale(0.99);
}

.paywall-payment-option.is-loading,
.paywall-payment-option:disabled {
    opacity: 0.75;
    pointer-events: none;
}

.paywall-payment-option__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.paywall-payment-option__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.paywall-payment-option__title {
    font-family: var(--font-onest);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.paywall-payment-option__description {
    color: #747575;
    font-family: var(--font-onest);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
}

.paywall-payment-option:has(.paywall-payment-option__input:checked) {
    border-color: #F85628;
}

.paywall-payment-option .custom-radio {
    width: 1.25rem;
    height: 1.25rem;
    box-sizing: border-box;
    border-radius: 50%;
    border: .0625rem solid var(--gray-200);
    background-color: #F85628;
    overflow: hidden;
    transition: border .1s ease-in-out;
    flex-shrink: 0;
}

.paywall-payment-option .custom-radio>span {
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 50%;
    border: .6rem solid #FFFFFF;
    transition: border .1s ease-in-out;
}

.paywall-payment-option:hover .custom-radio {
    border-color: var(--gray-600);
}

.paywall-payment-option__input:checked+.custom-radio {
    border-color: #F85628;
}

.paywall-payment-option__input:checked+.custom-radio>span {
    border: .25rem solid #FFFFFF;
}

.paywall-payment-option__icon-slot {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border: 1px #BDBEBE solid;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paywall-payment-option__icon-slot img {
    width: 18px;
    height: 18px;
}

.paywall-payment-modal__promo {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: -2px;
}

.paywall-payment-modal__promo[hidden] {
    display: none;
}

.paywall-payment-modal__promo-label {
    font-family: var(--font-onest);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    color: #2A1C14;
}

.paywall-payment-modal__promo-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.paywall-payment-modal__promo-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #EBEDEF;
    background: #FFFFFF;
    color: #191919;
    font-family: var(--font-onest);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    outline: none;
    transition: border-color .2s ease;
}

.paywall-payment-modal__promo-input::placeholder {
    color: #A7A8A8;
}

.paywall-payment-modal__promo-input:focus {
    border-color: #F85628;
}

.paywall-payment-modal__promo-apply {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 18px;
    border: 1px solid #F85628;
    border-radius: 999px;
    background: #F85628;
    color: #FFFFFF;
    font-family: var(--font-onest);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.paywall-payment-modal__promo-apply[hidden] {
    display: none;
}

.paywall-payment-modal__promo-apply:hover {
    background: #e04d23;
    border-color: #e04d23;
}

.paywall-payment-modal__promo-apply:active {
    transform: scale(0.97);
}

.paywall-payment-modal__promo-apply:disabled,
.paywall-payment-modal__promo-apply.is-loading {
    opacity: 0.75;
    cursor: not-allowed;
    pointer-events: none;
}

.paywall-payment-modal__promo-input.is-applied {
    border-color: #58B338;
}

.paywall-payment-modal__promo-message {
    margin: 2px 0 0;
    font-family: var(--font-onest);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
}

.paywall-payment-modal__promo-message.is-success {
    color: #58B338;
}

.paywall-payment-modal__promo-message.is-error {
    color: #FF1D1D;
}

.paywall-payment-modal__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border-radius: 999px;
    border: 1px solid var(--orange);
    background: var(--orange);
    color: #FFFFFF;
    font-family: var(--font-onest);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, opacity .2s ease, transform .2s ease;
}

.paywall-payment-modal__submit:hover:not(:disabled) {
    background: #e04d23;
    border-color: #e04d23;
}

.paywall-payment-modal__submit:active:not(:disabled) {
    transform: scale(0.98);
}

.paywall-payment-modal__submit:disabled {
    background: #FBD9CE;
    border-color: #FBD9CE;
    color: #FFFFFF;
    cursor: not-allowed;
}

.paywall-payment-modal__promo-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border-radius: 999px;
    border: 1px solid #EBEDEF;
    background: #FFFFFF;
    color: #F85628;
    font-family: var(--font-onest);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.paywall-payment-modal__promo-toggle:hover {
    border-color: #F85628;
}

.paywall-payment-modal__promo-toggle:active {
    transform: scale(0.98);
}

.paywall-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.paywall-payment-method {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 14px;
    border: 1px solid #EBEDEF;
    border-radius: 999px;
    background: #fff;
    color: #191919;
    font-family: var(--font-onest);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.paywall-payment-method input {
    accent-color: var(--orange);
}

.paywall-invoice-form__error,
.paywall-plans__empty,
.paywall-payment-modal__error {
    margin: 0;
    color: #D63A19;
    font-family: var(--font-onest);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.paywall-plans__empty {
    grid-column: 1 / -1;
    text-align: center;
}

.paywall-invoice-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    border-radius: 999px;
    border: 1px solid var(--orange);
    background: var(--orange);
    color: #ffffff;
    font-family: var(--font-onest);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, opacity .2s ease, transform .2s ease;
    -webkit-tap-highlight-color: transparent;
}

.paywall-invoice-form__submit:hover:not(:disabled) {
    background: #e04d23;
    border-color: #e04d23;
}

.paywall-invoice-form__submit:active:not(:disabled) {
    transform: scale(0.98);
}

.paywall-invoice-form__submit:disabled {
    background: #FBD9CE;
    border-color: #FBD9CE;
    color: #ffffff;
    cursor: not-allowed;
}

.paywall-invoice-form__submit.is-loading {
    opacity: 0.75;
    pointer-events: none;
}

.paywall-invoice-form__hint {
    font-family: var(--font-onest);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: #919292;
    text-align: center;
    margin: 0;
}

@media screen and (max-width: 768px) {

    .paywall-payment-modal__dialog,
    .paywall-invoice-modal__dialog {
        max-width: none !important;
        padding: 24px 16px !important;
    }

    .paywall-payment-modal__promo-row {
        flex-direction: column;
    }

    .paywall-payment-modal__promo-apply {
        width: 100%;
    }
}

/* =========================
   Country modal (searchable list)
   ========================= */

.paywall-country-modal__dialog {
    max-width: 480px !important;
    display: flex;
    flex-direction: column;
    height: 80vh;
}

.paywall-country-modal__title {
    font-family: var(--font-onest);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    color: #191919;
    margin: 0 40px 24px 0;
}

.paywall-country-modal__search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 43px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #EBEDEF;
    background: var(--bg);
    margin-bottom: 24px;
}

.paywall-country-modal__search svg {
    flex-shrink: 0;
}

.paywall-country-modal__search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-onest);
    font-size: 15px;
    color: #191919;
    height: 100%;
}

.paywall-country-modal__search-input::placeholder {
    color: #A7A8A8;
}

.paywall-country-modal__list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    margin-left: -8px;
    margin-right: -8px;

    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
        display: none;
    }
}

.paywall-country-modal__item[hidden] {
    display: none;
}

.paywall-country-modal__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background .15s ease;
    -webkit-tap-highlight-color: transparent;
}

.paywall-country-modal__item:hover,
.paywall-country-modal__item:focus-visible {
    background: #F7F8FA;
    outline: none;
}

.paywall-country-modal__item.is-selected {
    background: #F7F8FA;
}

.paywall-country-modal__flag {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.paywall-country-modal__name {
    flex: 1;
    font-family: var(--font-onest);
    font-size: 16px;
    font-weight: 500;
    color: #242526;
}

.paywall-country-modal__check {
    flex-shrink: 0;
    opacity: 0;
}

.paywall-country-modal__item.is-selected .paywall-country-modal__check {
    opacity: 1;
}

.paywall-country-modal__empty,
.paywall-country-modal__loading {
    padding: 16px;
    text-align: center;
    font-family: var(--font-onest);
    font-size: 14px;
    color: #A7A8A8;
    list-style: none;
}

body[data-page="payment"] .faq__container {
    margin-top: 48px;
    padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
    body[data-page="payment"] .faq__container {
        margin-top: 0;
    }

    .paywall-country-modal__dialog {
        max-width: none !important;
        padding: 24px 16px !important;
        height: 90vh;
    }

    .paywall-country-modal__list {
        margin-left: -16px;
        margin-right: -16px;
    }

    .paywall-country-modal__item {
        border-radius: 0;
    }
}
