.fz-shop {
    --a: #ee5f96;
    --b: #c93d74;
    --pink-soft: #fff0f6;
    --pink-mid: #ffd4e6;
    --ink: #101828;
    --muted: #667085;
    --line: #f0c4d8;
    max-width: 1180px;
    margin: 24px auto 64px;
    padding: 0 20px;
    color: var(--ink);
    font-family: Mulish, sans-serif;
}

.fz-shop *,
.fz-shop *::before,
.fz-shop *::after {
    box-sizing: border-box;
}

.fz-shop h1,
.fz-shop h2,
.fz-shop h3,
.fz-shop .fz-kicker,
.fz-shop .fz-pay,
.fz-shop .shop__boost-cta,
.fz-shop .fz-preview-tab,
.fz-shop .fz-step,
.fz-shop .fz-product strong,
.fz-shop .fz-vip-badge,
.fz-shop .fz-summary-total,
.fz-shop .fz-faq summary {
    font-family: Unbounded, sans-serif;
}

.fz-hero {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border: 1px solid var(--pink-mid);
    border-radius: 30px;
    background: linear-gradient(135deg, #fff0f6 0%, #fff 46%, #fff5f9 100%);
    box-shadow: 0 18px 55px rgba(238, 95, 150, 0.14);
}

.fz-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ee5f96, #c93d74);
}

.fz-kicker {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: #ffe8f2;
    color: #c93d74;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fz-hero h1 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    margin: 15px 0 12px;
    max-width: 850px;
    color: #101828;
}

.fz-hero p {
    max-width: 780px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.fz-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.fz-trust span {
    padding: 8px 11px;
    border: 1px solid var(--pink-mid);
    border-radius: 999px;
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    color: #c93d74;
}

.fz-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 18px 0 26px;
}

.fz-benefit {
    padding: 18px;
    border: 1px solid var(--pink-mid);
    border-radius: 18px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fz-benefit:hover {
    border-color: var(--a);
    box-shadow: 0 8px 24px rgba(238, 95, 150, 0.1);
}

.fz-benefit b {
    display: block;
    margin-bottom: 5px;
    font-family: Unbounded, sans-serif;
    font-size: 14px;
    color: #c93d74;
}

.fz-benefit small {
    color: var(--muted);
    line-height: 1.45;
}

.fz-section-head {
    margin: 32px 0 14px;
}

.fz-section-head h2 {
    margin: 0 0 6px;
    font-size: 28px;
    color: #101828;
}

.fz-section-head p {
    margin: 0;
    color: var(--muted);
}

.fz-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 28px;
}

.fz-product {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 236px;
    border: 1px solid var(--pink-mid);
    border-radius: 24px;
    padding: 22px;
    background: linear-gradient(180deg, #fff 0%, #fffbfd 100%);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 12px 30px rgba(238, 95, 150, 0.08);
    overflow: hidden;
}

.fz-product::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ee5f96, #c93d74);
    opacity: 0.35;
}

.fz-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(238, 95, 150, 0.16);
    border-color: #ee5f96;
}

.fz-product input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.fz-product:has(input:checked) {
    border-color: #ee5f96;
    box-shadow: 0 0 0 3px rgba(238, 95, 150, 0.14), 0 20px 42px rgba(201, 61, 116, 0.16);
}

.fz-product:has(input:checked)::before {
    opacity: 1;
}

.fz-product b,
.fz-product strong {
    display: block;
}

.fz-product b {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #1f2937;
}

.fz-product strong {
    margin-top: 10px;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    color: #c93d74;
    letter-spacing: -0.03em;
}

.fz-product small {
    display: block;
    margin-top: 10px;
    color: #667085;
    font-size: 12px;
    line-height: 1.55;
}

.fz-product-telegram {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    margin-top: auto !important;
    padding: 8px 10px;
    border: 1px solid #ffd4e6;
    border-radius: 999px;
    background: #fff5f9;
    color: #ee5f96 !important;
    font-size: 10.5px !important;
    font-weight: 600 !important;
    line-height: 1.2;
    width: max-content;
}

.fz-product.is-vip {
    grid-column: 1 / -1;
    border-color: #f0d5a8;
    background: linear-gradient(135deg, #fffaf1 0%, #fff 58%, #fff5f9 100%);
    box-shadow: 0 16px 38px rgba(238, 95, 150, 0.12);
}

.fz-product.is-vip::before {
    height: 5px;
    opacity: 1;
    background: linear-gradient(90deg, #f59e0b, #ee5f96);
}

.fz-product.is-vip strong {
    color: #8a4b0f;
}

.fz-vip-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #fff4d8;
    border: 1px solid #f2d39b;
    color: #8a4b0f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fz-vip-badge::before {
    content: '★';
    font-size: 9px;
}

.fz-telegram-highlight {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin: 18px 0 24px;
    padding: 15px 17px;
    border: 1px solid var(--pink-mid);
    border-radius: 16px;
    background: linear-gradient(135deg, #fff0f6 0%, #fff 100%);
}

.fz-telegram-highlight__icon {
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #ffe8f2;
    color: #ee5f96;
    font-size: 18px;
}

.fz-telegram-highlight b {
    display: block;
    margin: 0 0 3px;
    font-size: 13px;
    font-weight: 600;
    font-family: Unbounded, sans-serif;
    color: #c93d74;
}

.fz-telegram-highlight p {
    margin: 0;
    color: #667085;
    font-size: 12px;
    line-height: 1.55;
}

.fz-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.fz-step {
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--pink-soft);
    border: 1px solid var(--pink-mid);
    font-size: 13px;
    font-weight: 600;
}

.fz-step i {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 7px;
    background: #ee5f96;
    color: #fff;
    font-style: normal;
    font-family: Unbounded, sans-serif;
    font-size: 11px;
}

.fz-shop-grid {
    display: block;
}

.fz-form-column {
    display: grid;
    gap: 18px;
}

.fz-preview-column {
    position: static;
    margin-top: 18px;
}

.fz-preview {
    border: 1px solid var(--pink-mid);
    border-radius: 24px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(238, 95, 150, 0.1);
}

.fz-preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.fz-preview-head h2 {
    margin: 0;
    font-size: 19px;
    color: #c93d74;
}

.fz-preview-head small {
    color: var(--muted);
}

.fz-preview-tabs {
    display: flex;
    gap: 7px;
    margin-bottom: 14px;
}

.fz-preview-tab {
    flex: 1;
    border: 1px solid var(--pink-mid);
    background: var(--pink-soft);
    border-radius: 10px;
    padding: 9px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.fz-preview-tab.is-active {
    background: #ee5f96;
    color: #fff;
    border-color: #ee5f96;
}

.fz-preview-pane {
    display: none;
}

.fz-preview-pane.is-active {
    display: block;
}

.fz-live-card {
    overflow: hidden;
    border: 1px solid var(--pink-mid);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(238, 95, 150, 0.1);
}

.fz-live-card-media {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: linear-gradient(135deg, #fff0f6, #ffe8f2);
}

.fz-live-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.fz-live-card-platform {
    position: absolute;
    z-index: 3;
    top: 12px;
    left: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 4px 16px rgba(238, 95, 150, 0.15);
    font-size: 12px;
    font-weight: 700;
    font-family: Unbounded, sans-serif;
    color: #c93d74;
}

.fz-live-card-copy {
    padding: 15px 15px 16px;
    min-height: 116px;
}

.fz-live-card-copy h3,
.fz-preview-name {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    font-family: Unbounded, sans-serif;
}

.fz-live-handle {
    margin-top: 5px;
    color: #718096;
    font-size: 13px;
}

.fz-live-card-access {
    position: absolute;
    z-index: 3;
    top: 10px;
    right: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #182235;
    color: #fff;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.16);
    font-size: 11px;
    font-weight: 700;
    font-family: Unbounded, sans-serif;
    letter-spacing: 0.02em;
}

.fz-live-card-access.is-free {
    background: linear-gradient(135deg, #ee5f96, #c93d74);
}

.fz-live-card-cta {
    width: 100%;
    margin-top: 14px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(115deg, #ee5f96, #c93d74);
    color: #fff;
    padding: 11px 12px;
    font-size: 12px;
    font-weight: 700;
    font-family: Unbounded, sans-serif;
    cursor: default;
}

.fz-access-choice {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.fz-access-choice label {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
}

.fz-access-choice input[type=radio] {
    width: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    padding: 0 !important;
    margin: 2px 0 0 !important;
    flex: 0 0 18px;
    border-radius: 50%;
    box-shadow: none;
    accent-color: #ee5f96;
}

.fz-access-choice label:has(input:checked) {
    border-color: #ee5f96;
    box-shadow: 0 0 0 3px rgba(238, 95, 150, 0.12);
    background: var(--pink-soft);
}

.fz-access-choice b {
    display: block;
    font-size: 13px;
    font-family: Unbounded, sans-serif;
}

.fz-access-choice small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}

.fz-price-input {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 100px;
    gap: 8px;
}

.fz-profile-preview {
    overflow: hidden;
    border: 1px solid var(--pink-mid);
    border-radius: 20px;
    background: #fff;
}

.fz-profile-cover {
    aspect-ratio: 16/7;
    background: linear-gradient(135deg, #fff0f6, #ffe8f2);
    overflow: hidden;
}

.fz-profile-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fz-profile-bar {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: end;
    margin-top: -34px;
    padding: 0 14px 16px;
}

.fz-profile-avatar {
    width: 74px;
    height: 74px;
    border: 4px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    background: #fff0f6;
    box-shadow: 0 8px 20px rgba(238, 95, 150, 0.2);
}

.fz-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fz-profile-ident {
    padding-top: 35px;
    min-width: 0;
}

.fz-profile-ident h3,
.fz-preview-profile-name {
    margin: 0;
    font-size: 21px;
    font-weight: 700;
    font-family: Unbounded, sans-serif;
}

.fz-profile-ident span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.fz-profile-body {
    padding: 0 14px 16px;
    color: #667085;
    font-size: 12px;
    line-height: 1.55;
}

.fz-preview-note {
    margin: 12px 2px 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.fz-panel {
    border: 1px solid var(--pink-mid);
    border-radius: 24px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(238, 95, 150, 0.08);
}

.fz-panel h2 {
    margin: 0 0 5px;
    font-size: 22px;
    color: #c93d74;
}

.fz-panel-intro {
    margin: 0 0 17px;
    color: var(--muted);
    font-size: 13px;
}

.fz-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    align-items: start;
}

.fz-field {
    display: grid;
    gap: 6px;
    align-content: start;
    min-width: 0;
}

.fz-field.full {
    grid-column: 1 / -1;
}

.fz-field label {
    font-size: 13px;
    font-weight: 700;
    font-family: Unbounded, sans-serif;
    color: #344054;
}

.fz-field small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
    min-height: 0;
}

.fz-field input:not([type=checkbox]):not([type=radio]),
.fz-field select,
.fz-field textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--pink-mid);
    border-radius: 12px;
    padding: 10px 12px;
    background: #fff;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fz-field input:not([type=checkbox]):not([type=radio]):focus,
.fz-field select:focus,
.fz-field textarea:focus {
    outline: none;
    border-color: #ee5f96;
    box-shadow: 0 0 0 3px rgba(238, 95, 150, 0.12);
}

.fz-field input[type=file] {
    min-height: auto;
    padding: 8px 10px;
    font-size: 13px;
}

.fz-field textarea {
    min-height: 100px;
    resize: vertical;
}

.fz-summary {
    margin-top: 18px;
    padding: 22px;
    border: 1px solid var(--pink-mid);
    border-radius: 22px;
    background: linear-gradient(135deg, #fff0f6, #fff5f9);
    box-shadow: 0 8px 28px rgba(238, 95, 150, 0.1);
}

.fz-summary h2 {
    margin: 0 0 14px;
    color: #c93d74;
}

.fz-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    border-bottom: 1px solid #f5d4e3;
}

.fz-summary-row:last-child {
    border: 0;
}

.fz-summary-total {
    font-size: 20px;
    font-weight: 700;
    color: #c93d74;
}

.fz-legal-checks {
    margin-top: 16px;
    padding: 18px 20px;
    border: 1px solid var(--pink-mid);
    border-radius: 16px;
    background: var(--pink-soft);
    text-align: left;
}

.fz-legal-kicker {
    display: block;
    margin-bottom: 4px;
    color: #c93d74;
    font-size: 12px;
    font-weight: 700;
    font-family: Unbounded, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.fz-legal-note {
    margin: 0 0 12px;
    color: #667085;
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
}

.fz-consent {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin: 10px 0 0;
    padding: 0;
    color: #344054;
    font-size: 13px;
    line-height: 1.55;
    text-align: left;
    cursor: pointer;
    width: 100%;
}

.fz-consent input[type=checkbox] {
    flex: 0 0 18px;
    width: 18px !important;
    min-width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    accent-color: #ee5f96;
    cursor: pointer;
}

.fz-consent span {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.fz-consent a {
    color: #ee5f96;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fz-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #f5d4e3;
    justify-content: flex-start;
}

.fz-legal-links a {
    color: #667085;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}

.fz-legal-links a:hover {
    color: #ee5f96;
}

.fz-checkout-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.fz-pay {
    border: 0;
    border-radius: 14px;
    min-height: 52px;
    padding: 0 28px;
    background: linear-gradient(115deg, #ee5f96, #e94e8a 45%, #c93d74);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(238, 95, 150, 0.3);
}

.fz-pay:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(238, 95, 150, 0.38);
}

.fz-pay[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.fz-secure {
    font-size: 12px;
    color: var(--muted);
}

.fz-message {
    display: none;
    margin-top: 16px;
    padding: 13px 15px;
    border-radius: 12px;
    background: #fff8fb;
    border: 1px solid var(--pink-mid);
    font-size: 14px;
}

.fz-message.show {
    display: block;
}

.fz-message.ok {
    background: #fff0f6;
    border-color: #ffd4e6;
    color: #c93d74;
}

/* SEO section */
.fz-seo {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 2px solid var(--pink-mid);
}

.fz-seo > .fz-section-head h2 {
    color: #c93d74;
}

.fz-seo-intro {
    max-width: 900px;
    margin: 0 0 24px;
    padding: 20px 24px;
    border: 1px solid var(--pink-mid);
    border-radius: 18px;
    background: linear-gradient(135deg, #fff0f6 0%, #fff 100%);
}

.fz-seo-intro p {
    margin: 0;
    color: #344054;
    font-size: 16px;
    line-height: 1.75;
}

.fz-seo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.fz-seo-grid article {
    position: relative;
    border: 1px solid var(--pink-mid);
    border-radius: 18px;
    background: #fff;
    padding: 22px 22px 22px 26px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fz-seo-grid article::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(180deg, #ee5f96, #c93d74);
}

.fz-seo-grid article:hover {
    border-color: #ee5f96;
    box-shadow: 0 10px 28px rgba(238, 95, 150, 0.12);
}

.fz-seo h2 {
    font-size: 30px;
}

.fz-seo h3 {
    margin: 0 0 8px;
    font-family: Unbounded, sans-serif;
    font-size: 15px;
    color: #c93d74;
    line-height: 1.35;
}

.fz-seo p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.fz-faq {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.fz-faq details {
    border: 1px solid var(--pink-mid);
    border-radius: 16px;
    background: #fff;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.fz-faq details[open] {
    border-color: #ee5f96;
    box-shadow: 0 6px 20px rgba(238, 95, 150, 0.1);
}

.fz-faq summary {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 14px;
    color: #344054;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fz-faq summary::-webkit-details-marker {
    display: none;
}

.fz-faq summary::after {
    content: '+';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pink-soft);
    color: #ee5f96;
    font-family: Unbounded, sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.fz-faq details[open] summary::after {
    content: '−';
    background: #ee5f96;
    color: #fff;
}

.fz-faq details p {
    margin: 0;
    padding: 0 20px 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.fz-vip-day {
    border: 1px solid var(--pink-mid);
    border-radius: 16px;
    padding: 16px;
    margin: 12px 0;
    background: var(--pink-soft);
}

.fz-vip-day h3 {
    margin: 0 0 12px;
    font-family: Unbounded, sans-serif;
    font-size: 15px;
    color: #c93d74;
}

.shop__boost {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 28px;
    padding: 24px 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff 0%, #fff0f6 100%);
    border: 1px solid var(--pink-mid);
    box-shadow: 0 12px 30px rgba(238, 95, 150, 0.12);
}

.shop__boost-title {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 700;
    font-family: Unbounded, sans-serif;
    color: #101828;
}

.shop__boost-text {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.5;
}

.shop__boost-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    background: linear-gradient(115deg, #ee5f96, #e94e8a 45%, #c93d74);
    color: #fff;
    font-weight: 700;
    font-family: Unbounded, sans-serif;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(238, 95, 150, 0.28);
}

.shop__boost-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(238, 95, 150, 0.38);
    color: #fff;
}

@media (min-width: 1024px) {
    .fz-shop-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 24px;
        align-items: start;
    }

    .fz-preview-column {
        margin-top: 0;
        position: sticky;
        top: 20px;
    }
}

@media (max-width: 900px) {
    .fz-products,
    .fz-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .fz-seo-grid {
        grid-template-columns: 1fr;
    }

    .shop__boost {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop__boost-cta {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .fz-product.is-vip {
        grid-column: auto;
    }

    .fz-shop {
        padding: 0 12px;
    }

    .fz-hero {
        padding: 28px 20px;
    }

    .fz-products,
    .fz-benefits,
    .fz-steps {
        grid-template-columns: 1fr;
    }

    .fz-fields {
        grid-template-columns: 1fr;
    }

    .fz-field.full {
        grid-column: auto;
    }

    .fz-access-choice {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .fz-price-input {
        grid-template-columns: minmax(0, 1fr) 88px;
    }

    .fz-checkout-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .fz-pay,
    .shop__boost-cta {
        width: 100%;
    }

    .fz-seo-intro {
        padding: 16px 18px;
    }
}

@media (max-width: 380px) {
    .fz-price-input {
        grid-template-columns: 1fr;
    }
}

.fz-shop-result {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fz-result-card {
    width: min(100%, 560px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 18px 50px rgba(233, 78, 138, 0.12);
}

.fz-result-card.is-success .fz-result-icon {
    background: linear-gradient(135deg, var(--a), var(--b));
}

.fz-result-card.is-error .fz-result-icon {
    background: #d92d20;
}

.fz-result-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 700;
}

.fz-result-card h1 {
    margin: 0 0 12px;
    font-size: 28px;
}

.fz-result-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.fz-result-order {
    margin-top: 16px !important;
    font-weight: 700;
    color: var(--ink) !important;
}

.fz-result-link {
    display: inline-flex;
    margin-top: 24px;
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--a), var(--b));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}
