.site-nav,
.why-card article {
    grid-template-columns: auto 1fr
}

.pricing-heading,
.product-body,
.section-heading,
.system-flow,
.trust-section {
    text-align: center
}

.hero-tag i,
.product-benefit-strip .material-symbols-outlined {
    grid-row: span 2
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: #fff;
    color: var(--text-body);
    font-family: var(--font-base);
    font-size: var(--fs-14);
    line-height: 1.55
}

body.menu-open {
    overflow: hidden
}

img,
svg {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

button,
input {
    font: inherit
}

.material-symbols-Rounded,
.material-symbols-outlined,
.material-symbols-rounded {
    display: inline-block;
    direction: ltr;
    font-family: "Material Symbols Outlined";
    font-feature-settings: "liga";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased
}

.billing-toggle,
.eyebrow,
.mega-feature-badge,
.product-kicker {
    text-transform: uppercase
}

.catalog-card>button:hover .material-symbols-outlined,
.material-symbols-Rounded,
.material-symbols-rounded {
    font-family: "Material Symbols Rounded";
    font-variation-settings: "FILL" 1
}

.container {
    --bs-gutter-x: var(--container-gutter);
    max-width: var(--container-max)
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 18px 0;
    background: rgb(255 255 255 / .86);
    backdrop-filter: blur(18px);
    transition: padding 220ms, box-shadow 220ms, background 220ms
}

.site-header.is-scrolled {
    padding: 12px 0;
    background: rgb(255 255 255 / .94);
    box-shadow: var(--shadow-sm)
}

.site-nav {
    display: grid;
    align-items: center;
    gap: var(--space-6)
}

.brand,
.nav-panel {
    align-items: center
}

.brand {
    display: inline-flex;
    width: 158px
}

.brand img,
.white-label-action img {
    width: 100%;
    height: auto
}

.nav-panel {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-6)
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none
}

.nav-dropdown>button,
.nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 40px;
    padding: 8px 10px;
    color: var(--text-heading);
    background: 0 0;
    border: 0;
    border-radius: var(--radius-pill);
    font-weight: var(--fontMedium);
    line-height: 1;
    cursor: pointer;
    transition: color 180ms, background 180ms
}

.nav-dropdown.is-open>button,
.nav-dropdown:focus-within>button,
.nav-dropdown:hover>button,
.nav-dropdown>button:hover,
.nav-links a:hover {
    color: var(--brand-primary);
    background: var(--brand-primary-soft)
}

.nav-dropdown {
    position: relative
}

.nav-dropdown>button .material-symbols-outlined {
    font-size: 18px;
    transition: transform 180ms
}

.nav-dropdown.is-open>button .material-symbols-outlined,
.nav-dropdown:focus-within>button .material-symbols-outlined,
.nav-dropdown:hover>button .material-symbols-outlined {
    transform: rotate(180deg)
}

.dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 210px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(8px) scale(.98);
    transform-origin: top;
    transition: opacity 180ms, transform 180ms, visibility 180ms
}

.nav-dropdown.is-open .dropdown-menu-custom,
.nav-dropdown:focus-within .dropdown-menu-custom,
.nav-dropdown:hover .dropdown-menu-custom {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1)
}

.dropdown-menu-custom a {
    display: flex;
    width: 100%;
    padding: 11px 12px;
    color: var(--text-body);
    border-radius: var(--radius-md);
    font-size: 13px
}

.catalog-card>button.is-active .material-symbols-Rounded,
.catalog-card>button.is-active .material-symbols-outlined,
.catalog-card>button:hover .material-symbols-Rounded,
.catalog-card>button:hover .material-symbols-outlined,
.catalog-card>button[aria-pressed=true] .material-symbols-Rounded,
.catalog-card>button[aria-pressed=true] .material-symbols-outlined,
.compare-table td:first-child .material-symbols-outlined,
.mega-feature-card h3 span,
.mega-menu-copy h2 span,
.plan-premium .plan-price,
.product-header-mega .product-mega-dropdown>button {
    color: var(--brand-secondary)
}

.product-header-mega .product-mega-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    display: none;
    width: min(94vw, 1320px);
    height: 18px;
    transform: translateX(-50%)
}

.product-header-mega .product-mega-menu {
    position: fixed;
    top: 82px;
    left: 50%;
    z-index: 1100;
    display: grid;
    gap: 18px;
    width: min(calc(100vw - 48px), 1280px);
    max-height: calc(100vh - 106px);
    min-width: 0;
    padding: 28px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    border: 1px solid #ece7fb;
    border-radius: var(--radius-lg);
    box-shadow: 0 22px 56px rgb(27 26 57 / .12);
    pointer-events: none;
    transform: translateX(-50%) translateY(12px) scale(.985)
}

.site-header.is-scrolled .product-mega-menu {
    top: 70px
}

.product-header-mega .product-mega-dropdown.is-open::after,
.product-header-mega .product-mega-dropdown:focus-within::after,
.product-header-mega .product-mega-dropdown:hover::after {
    display: block
}

.product-header-mega .product-mega-dropdown.is-open>button,
.product-header-mega .product-mega-dropdown:focus-within>button,
.product-header-mega .product-mega-dropdown:hover>button {
    color: var(--brand-secondary);
    background: #f7f3ff
}

.product-header-mega .product-mega-dropdown.is-open .product-mega-menu,
.product-header-mega .product-mega-dropdown:focus-within .product-mega-menu,
.product-header-mega .product-mega-dropdown:hover .product-mega-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1)
}

.product-header-mega .product-mega-dropdown:focus-within>button .material-symbols-outlined,
.product-header-mega .product-mega-dropdown:hover>button .material-symbols-outlined {
    transform: rotate(180deg)
}

.mega-menu-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
    gap: 24px
}

.mega-menu-highlights,
.mega-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    display: grid
}

.mega-menu-content,
.product-results,
.product-sidebar {
    min-width: 0
}

.mega-menu-copy h2 {
    margin: 0 0 8px;
    color: var(--text-heading);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: var(--fontMedium);
    line-height: 1.12
}

.mega-menu-copy p {
    margin: 0 0 18px;
    color: var(--text-body);
    font-size: var(--fs-16);
    line-height: 1.55
}

.mega-menu-highlights {
    gap: 12px;
    margin-bottom: 22px
}

.mega-menu-footer span,
.mega-menu-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    color: var(--text-heading);
    font-size: var(--fs-13, 13px);
    font-weight: var(--fontMedium)
}

.mega-menu-footer i,
.mega-menu-highlights i {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--brand-secondary);
    font-size: 24px;
    font-style: normal
}

.mega-product-grid {
    gap: 14px
}

.product-header-mega .mega-product-card {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 246px;
    padding: 12px 12px 14px;
    overflow: hidden;
    color: var(--text-heading);
    background: linear-gradient(145deg, #fcfaff, #f7f3ff);
    border: 1px solid #eee7ff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 24px rgb(97 49 223 / .06);
    transition: transform 180ms, border-color 180ms, box-shadow 180ms
}

.product-header-mega .mega-product-card:focus-visible,
.product-header-mega .mega-product-card:hover {
    color: var(--text-heading);
    border-color: color-mix(in srgb, var(--brand-secondary) 34%, #fff);
    box-shadow: 0 16px 30px rgb(97 49 223 / .12);
    transform: translateY(-2px)
}

.product-header-mega .mega-product-card:hover i.material-symbols-outlined {
    background: var(--brand-secondary);
    color: var(--color-surface-card)
}

.mega-product-media {
    display: grid;
    place-items: center;
    height: 100px;
    width: 100%;
    margin: -4px -4px 12px;
    overflow: hidden;
    border-radius: var(--radius-md)
}

.mega-product-media img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    mix-blend-mode: multiply
}

.mega-product-card:first-child .mega-product-media img,
.mega-product-card:nth-child(5) .mega-product-media img,
.mega-product-card:nth-child(7) .mega-product-media img,
.mega-product-card:nth-child(8) .mega-product-media img {
    object-fit: cover
}

.mega-product-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-heading);
    font-size: var(--fs-14);
    font-weight: var(--fontBold);
    line-height: 1.25
}

.mega-product-card small {
    display: inline-flex;
    width: fit-content;
    padding: 4px 9px;
    color: var(--brand-secondary);
    background: #ece5ff;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-style: normal;
    font-weight: var(--fontMedium);
    line-height: 1
}

.mega-product-card em {
    max-width: calc(100% - 36px);
    color: var(--text-body);
    font-size: var(--fs-11, 11px);
    font-style: normal;
    line-height: 1.35
}

.mega-product-card>i {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: var(--brand-secondary);
    background: #fff;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 14px rgb(97 49 223 / .14);
    font-size: 18px;
    font-style: normal
}

.mega-feature-card {
    position: relative;
    min-width: 0;
    min-height: 100%;
    padding: 30px 28px;
    overflow: hidden;
    background: linear-gradient(130deg, rgb(255 255 255 / .72), rgb(237 229 255 / .7)), url("../assets/images/bg-stars-2.png") center/cover;
    border: 1px solid #eee7ff;
    border-radius: var(--radius-lg)
}

.mega-feature-badge,
.mega-feature-card li::before {
    color: #fff;
    background: var(--brand-secondary);
    font-weight: var(--fontBold)
}

.mega-feature-card>:not(img) {
    position: relative;
    z-index: 2
}

.mega-feature-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-bottom: 22px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-10)
}

.mega-feature-card h3 {
    max-width: 280px;
    margin: 0 0 16px;
    color: var(--text-heading);
    font-size: clamp(26px, 2.5vw, 34px);
    font-weight: var(--fontBold);
    line-height: 1.18
}

.mega-feature-card p {
    max-width: 260px;
    margin: 0 0 18px;
    color: var(--text-heading);
    font-size: var(--fs-14);
    line-height: 1.7
}

.mega-feature-card ul {
    display: grid;
    gap: 12px;
    max-width: 250px;
    margin: 0 0 26px;
    padding: 0;
    color: var(--text-heading);
    font-size: var(--fs-13, 13px);
    font-weight: var(--fontBold);
    list-style: none
}

.mega-feature-card li {
    display: flex;
    align-items: center;
    gap: 9px
}

.mega-feature-card li::before {
    content: "check";
    display: inline-grid;
    place-items: center;
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    border-radius: var(--radius-pill);
    font-family: "Material Symbols Outlined";
    font-size: 13px;
    line-height: 1
}

.mega-feature-card .btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: var(--fs-12);
    justify-content: normal;
    color: var(--btn-primary-text);
    background: var(--btn-secondary-bg);
    border-color: var(--btn-secondary-bg);
    width: fit-content
}

.footer-bottom .material-symbols-outlined,
.mega-feature-card .btn .material-symbols-outlined,
.product-chips .material-symbols-outlined {
    font-size: 18px
}

.mega-feature-card img {
    position: absolute;
    right: -76px;
    bottom: -48px;
    z-index: 1;
    width: min(78%, 360px);
    height: auto;
    filter: drop-shadow(0 24px 34px rgb(27 26 57 / .2))
}

.menu-close span,
.menu-toggle span {
    height: 2px;
    background: var(--text-heading)
}

.mega-menu-footer {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    overflow: hidden;
    background: #f7f3ff;
    border: 1px solid #eee7ff;
    border-radius: var(--radius-lg)
}

.mega-menu-footer span {
    justify-content: center;
    min-height: 72px;
    padding: 12px 18px;
    border-right: 1px solid #e8e1ff;
    font-weight: var(--fontBold)
}

.feature-strip-card article:last-child,
.mega-menu-footer span:last-child,
.pricing-benefits article:last-child,
.product-benefit-strip article:last-child,
.product-benefits-band article:last-child,
.steps-card article:last-child,
.why-card article:last-child {
    border-right: 0
}

.product-header-mega .mega-view-more {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 280px;
    min-height: 44px;
    padding: 0 22px;
    color: var(--brand-secondary);
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--brand-secondary) 42%, #fff);
    border-radius: var(--radius-md);
    font-size: var(--fs-14);
    font-weight: var(--fontSemibold);
    width: fit-content
}

.btn-brand,
.btn-brand:hover,
.btnSecondary,
.btnSecondary:hover {
    color: var(--btn-primary-text)
}

.product-header-mega .mega-view-more:focus-visible,
.product-header-mega .mega-view-more:hover {
    color: var(--brand-secondary);
    background: #f7f3ff
}

.catalog-card>a .material-symbols-outlined,
.mega-view-more .material-symbols-outlined {
    font-size: 20px
}

@media (max-width:1280px) {
    .product-header-mega .product-mega-menu {
        width: min(calc(100vw - 32px), 1180px);
        max-height: calc(100vh - 96px);
        padding: 22px
    }

    .mega-menu-main {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
        gap: 18px
    }

    .product-header-mega .mega-product-card {
        min-height: 212px
    }

    .mega-feature-card img {
        right: -94px;
        width: min(78%, 320px)
    }
}

@media (max-width:1199.98px) {
    .product-header-mega .product-mega-menu {
        gap: 14px;
        width: calc(100vw - 28px);
        padding: 18px
    }

    .mega-menu-copy h2 {
        font-size: 30px
    }

    .mega-menu-copy p {
        margin-bottom: 14px;
        font-size: var(--fs-14)
    }

    .mega-menu-main {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 16px
    }

    .mega-menu-footer,
    .mega-product-grid,
    body .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .mega-product-grid {
        gap: 12px
    }

    .mega-menu-footer span:nth-child(3) {
        border-right: 0
    }

    .mega-menu-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-bottom: 16px
    }

    .mega-menu-footer span,
    .mega-menu-highlights span {
        font-size: var(--fs-12)
    }

    .mega-product-media {
        aspect-ratio: 1/0.58;
        margin-bottom: 10px
    }

    .product-header-mega .mega-product-card {
        min-height: 190px;
        padding: 10px 10px 12px
    }

    .mega-product-card strong {
        margin-bottom: 5px;
        font-size: var(--fs-13, 13px)
    }

    .mega-product-card em {
        display: none
    }

    .mega-feature-card {
        padding: 22px
    }

    .mega-feature-badge {
        margin-bottom: 16px
    }

    .mega-feature-card h3 {
        max-width: 240px;
        font-size: 26px
    }

    .mega-feature-card p {
        max-width: 220px;
        font-size: var(--fs-12)
    }

    .mega-feature-card ul {
        gap: 9px;
        margin-bottom: 18px;
        font-size: var(--fs-12)
    }

    .mega-feature-card img {
        right: -78px;
        bottom: -70px;
        width: 305px
    }

    body .product-hero-card {
        grid-template-columns: 1fr;
        padding-bottom: 96px
    }

    body .product-shop-layout {
        grid-template-columns: 220px minmax(0, 1fr)
    }

    body .product-benefit-strip,
    body .product-benefits-band {
        grid-template-columns: repeat(2, 1fr)
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 22px;
    border-radius: var(--radius-md);
    font-size: var(--fs-14);
    font-weight: var(--fontMedium);
    line-height: 1;
    transition: transform 180ms, box-shadow 180ms, background 180ms, border-color 180ms
}

.filter-panel-backdrop,
.filter-panel-head,
.hero-actions.mobile-action,
.menu-toggle,
.mobile-filter-toggle,
.mobile-panel-head,
.sort-tools .mobile-filter-toggle,
.steps-card article:last-child::after,
.txMobile {
    display: none
}

.btn-brand {
    background: var(--btn-primary-bg);
    border: 1px solid var(--btn-primary-bg)
}

.btn-brand:hover {
    background: var(--btn-primary-hover-bg);
    border-color: var(--btn-primary-hover-bg)
}

.btnSecondary {
    background: var(--btn-secondary-bg);
    border-color: var(--btn-secondary-bg)
}

.btnSecondary:hover {
    background: var(--btn-secondary-hover-bg);
    border-color: var(--btn-secondary-hover-bg)
}

.btn-outline-brand {
    color: var(--brand-primary);
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--brand-primary) 40%, #fff)
}

.btn-outline-brand:hover {
    color: var(--brand-primary-hover);
    background: var(--brand-primary-soft)
}

.btn-success-brand {
    color: #fff;
    background: var(--color-success-500);
    border: 1px solid var(--color-success-500)
}

.btn-success-brand:hover {
    color: #fff;
    background: #16803d;
    border-color: #16803d
}

.btn-orange {
    color: #fff;
    background: #ff6b22;
    border: 1px solid #ff6b22
}

.btn-video {
    color: var(--brand-primary);
    background: #fff;
    border: 1px solid var(--brand-primary)
}

.eyebrow,
.platform {
    color: var(--text-heading)
}

.btn-video:hover {
    color: var(--brand-primary);
    background: var(--brand-primary-soft);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-sm)
}

.btn-lg-brand {
    min-height: 48px;
    padding: 0 26px
}

.menu-close,
.menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0
}

.menu-toggle {
    justify-self: end;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md)
}

.menu-toggle span {
    display: block;
    width: 18px;
    margin: 4px auto;
    border-radius: var(--radius-pill);
    transition: transform 220ms, opacity 220ms
}

.menu-toggle.is-active span:first-child {
    transform: translateY(6px) rotate(45deg)
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg)
}

.menu-close {
    position: relative;
    display: grid;
    place-items: center;
    background: #f4f4f4;
    border: 0;
    border-radius: var(--radius-pill)
}

.menu-close span {
    position: absolute;
    width: 20px;
    border-radius: var(--radius-pill);
    transform: scaleX(0) rotate(0);
    transition: transform 260ms
}

.nav-panel.is-open .menu-close span:first-child {
    transform: scaleX(1) rotate(45deg)
}

.nav-panel.is-open .menu-close span:last-child {
    transform: scaleX(1) rotate(-45deg)
}

.connect-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 24px;
    min-height: 150px;
    padding: 20px 26px;
    overflow: hidden;
    background: #fbf8ff;
    border: 1px solid color-mix(in srgb, var(--brand-primary) 20%, #fff);
    border-radius: var(--radius-xl)
}

.connect-mascot {
    width: 145px;
    margin: auto;
    mix-blend-mode: multiply
}

.eyebrow {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0
}

.platform-strip {
    display: flex;
    align-items: stretch;
    min-height: 76px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #edf0f8;
    border-radius: 13px;
    box-shadow: 0 16px 32px rgb(31 41 55 / .06)
}

.platform {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    padding: 10px 18px;
    border-right: 1px solid #eef1f6
}

.platform img {
    width: auto;
    height: 34px;
    max-width: 136px;
    object-fit: contain
}

.shopify {
    color: #20a83a
}

.amazon,
.tiktok {
    color: #111827
}

.ebay {
    color: #0064d2
}

.insta {
    color: #e1306c
}

.meta {
    color: #1267ff
}

.google {
    color: #4285f4
}

.connect-note {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 12px 0 0;
    color: var(--text-body);
    font-weight: 500
}

.connect-note .material-symbols-outlined,
.connect-note strong,
.green-card h2 span {
    color: var(--color-success-500)
}

.hero-section {
    padding: 24px 0 28px
}

.hero-copy h1,
.pricing-hero-copy h1,
.product-hero-copy h1 {
    margin: 0 0 18px;
    color: var(--text-heading);
    font-size: 44px;
    font-weight: var(--fontSemibold);
    line-height: 1.08
}

.hero-copy h1 span,
.launch-card h2 span,
.pricing-hero-copy h1 span,
.product-hero-copy h1 span,
.section-heading span,
.white-label-content h2 span {
    color: var(--brand-primary)
}

.hero-copy p {
    max-width: 510px;
    margin: var(--space-4) 0;
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.7
}

.check-list {
    gap: 10px;
    margin: 0 0 var(--space-4);
    padding: 0;
    list-style: none;
    color: var(--text-heading);
    font-weight: 600
}

.check-item,
.check-list li {
    display: flex;
    align-items: center;
    gap: 10px
}

.check-item {
    margin-bottom: 10px
}

.check-item::before,
.check-list li::before {
    content: "check";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: #fff;
    background: var(--brand-secondary);
    border-radius: var(--radius-pill);
    font-family: "Material Symbols Outlined";
    font-size: 14px;
    line-height: 1
}

.green-checks .check-item::before,
.green-checks li::before {
    background: var(--color-success-500)
}

.hero-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
    max-width: 560px
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px
}

.feature-strip-card article,
.img-Pop {
    display: flex;
    align-items: center;
    gap: 12px
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: -6% 27% -8% 0%;
    background: linear-gradient(135deg, #efe7ff, #fff);
    border-radius: 50%;
    z-index: -1
}

.img-Pop {
    background: var(--color-background);
    border-radius: var(--radius-lg);
    box-shadow: 1px 1px 9px 7px rgb(15 23 42 / .12);
    position: absolute;
    left: -90px;
    z-index: 1;
    bottom: 100px;
    padding: 14px
}

.launch-card,
.price-card,
.product-card,
.product-hero-card,
.white-label-card {
    box-shadow: var(--shadow-sm)
}

.img-Pop h6 {
    margin-bottom: 2px
}

.img-Pop p {
    margin-bottom: 0
}

.img-Pop span.material-symbols-outlined {
    color: #fff;
    background: var(--color-success-500);
    border-radius: var(--radius-pill);
    font-weight: var(--fontBold);
    height: 2.5rem;
    width: 2.5rem;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 2px var(--color-success-500)
}

.hero-illustration {
    width: min(100%, 760px);
    height: auto;
    filter: drop-shadow(0 28px 52px rgb(15 23 42 / .1))
}

.feature-strip-card,
.steps-card,
.why-card {
    display: grid;
    background: #fff;
    border: 1px solid #edf0f8;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm)
}

.feature-strip-card {
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    padding: 24px 26px
}

section.connect-banner.boxSpace {
    margin-top: 10px
}

.feature-strip-card article {
    border-right: 1px solid #edf0f8;
    margin-right: 12px
}

.icon-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex: 0 0 auto;
    border-radius: var(--radius-pill);
    font-size: 34px
}

.icon-bubble.purple {
    color: var(--brand-primary);
    background: var(--brand-primary-soft)
}

.icon-bubble.green {
    color: var(--color-success-500);
    background: #eaf8ee
}

.icon-bubble.orange {
    color: #ff6b22;
    background: #fff0e8
}

.icon-bubble.blue {
    color: #3677ff;
    background: #eaf1ff
}

.price-card h3,
.product-card h3 {
    margin: 0 0 6px;
    color: var(--text-heading);
    font-size: var(--fs-18);
    font-weight: var(--fontSemibold)
}

.feature-strip-card h3,
.steps-card h3,
.why-card h3 {
    margin: 0 0 6px;
    color: var(--text-heading);
    font-size: var(--fs-14);
    font-weight: var(--fontSemibold)
}

.feature-strip-card p,
.price-card p,
.product-benefit-strip p,
.product-card p,
.steps-card p,
.why-card p {
    margin: 0;
    color: var(--text-body);
    font-size: var(--fs-12)
}

.business-cards,
.pricing-section,
.products-section,
.steps-section,
.trust-section,
.white-label-system,
.why-section {
    padding: 16px 0
}

.launch-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 360px;
    height: 100%;
    overflow: hidden;
    padding: 34px;
    border: 1px solid #edf0f8;
    border-radius: var(--radius-lg)
}

.box-visual,
.product-cluster,
.product-media {
    display: flex;
    align-items: center;
    position: relative
}

.purple-card {
    background: linear-gradient(135deg, #fbf7ff, #f0e6ff)
}

.green-card {
    background: linear-gradient(135deg, #f7fff8, #e9f8ec)
}

.compare-heading h2,
.launch-card h2,
.pricing-heading h2 {
    margin: 0 0 12px;
    color: var(--text-heading);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: var(--fontMedium);
    line-height: 1.18
}

.launch-card p {
    margin: 0 0 18px;
    color: var(--text-body);
    line-height: 1.7
}

.box-visual,
.product-cluster {
    justify-content: center;
    min-height: 260px
}

.box-visual img,
.product-cluster img {
    width: min(100%, 330px);
    height: 100%;
    max-height: 320px;
    object-fit: contain;
    mix-blend-mode: multiply
}

.section-heading {
    margin-bottom: 18px
}

.section-heading.compact {
    margin-bottom: 14px
}

.section-heading h2 {
    margin: 0 0 var(--space-5);
    color: var(--text-heading);
    font-size: var(--fs-28);
    font-weight: var(--fontMedium);
    line-height: 1.2
}

h2.brandHead {
    font-size: var(--fs-18);
    font-weight: var(--fontSemibold)
}

.product-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #edf0f8;
    border-radius: var(--radius-lg)
}

.product-media {
    justify-content: center;
    min-height: 176px;
    overflow: hidden
}

.product-media .icon-bubble {
    position: absolute;
    top: 14px;
    left: 14px
}

.product-media img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    mix-blend-mode: multiply
}

.product-purple .product-media {
    background: #f0e6ff
}

.product-orange .product-media {
    background: #fff0df
}

.product-green .product-media {
    background: #effbea
}

.product-body {
    padding: 22px 24px 24px
}

.product-body p {
    margin: 0 auto 16px
}

.steps-card {
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden
}

.steps-card article {
    position: relative;
    min-height: 132px;
    padding: 26px 10px 22px 20px
}

.steps-card article::after {
    content: "arrow_forward";
    position: absolute;
    right: -14px;
    top: 44%;
    z-index: 2;
    color: var(--brand-primary);
    font-family: "Material Symbols Outlined";
    font-size: 24px
}

.white-label-card {
    display: grid;
    grid-template-columns: 1.05fr 1.25fr 0.72fr;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
    min-height: 300px;
    padding: clamp(26px, 4vw, 42px);
    overflow: hidden;
    background: radial-gradient(circle at 14% 20%, rgb(176 139 254 / .18), transparent 19rem), radial-gradient(circle at 84% 24%, rgb(176 139 254 / .12), transparent 14rem), linear-gradient(135deg, #fbf8ff 0, #fff 49%, #f4edff 100%);
    border: 1px solid color-mix(in srgb, var(--brand-primary) 20%, #edf0f8);
    border-radius: var(--radius-lg)
}

.white-label-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 220px
}

.white-label-monitor-img {
    width: 100%;
    max-width: 390px;
    height: auto
}

.white-label-content h2 {
    max-width: 520px;
    margin: 0 0 12px;
    color: var(--text-heading);
    font-size: clamp(28px, 3.2vw, var(--fs-40));
    font-weight: var(--fontMedium);
    line-height: 1.12
}

.txMobile-none {
    display: block
}

.white-label-content p {
    max-width: 560px;
    margin: 0 0 26px;
    color: var(--text-body);
    font-size: var(--fs-16);
    line-height: 1.7
}

.system-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 8px
}

.flow-step {
    display: grid;
    justify-items: center;
    gap: 6px
}

.flow-step>.material-symbols-outlined {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--brand-secondary);
    font-size: 36px
}

.flow-step strong {
    color: var(--text-heading);
    font-size: var(--fs-12);
    font-weight: var(--fontBold);
    line-height: 1.25
}

.flow-step small {
    color: var(--text-body);
    font-size: var(--fs-10);
    font-weight: var(--fontMedium);
    line-height: 1.45
}

.price-card strong,
.trust-section p {
    color: var(--text-heading);
    font-weight: 800
}

.flow-arrow {
    margin-top: 8px;
    color: var(--brand-primary);
    font-size: 22px
}

.white-label-action {
    display: grid;
    justify-items: center;
    width: 100%;
    max-width: 230px;
    transition: transform 180ms;
    gap: 30px
}

.step-number {
    top: 14px;
    left: 18px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: #fff;
    background: var(--brand-secondary);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800
}

.steps-card .material-symbols-outlined {
    margin: 30px 0 20px;
    color: var(--brand-secondary);
    font-size: 44px
}

.why-card {
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    padding: 25px 22px;
    grid-column-gap: 14px
}

.why-card article {
    display: grid;
    align-items: center;
    grid-column-gap: 14px;
    padding-right: 8px;
    border-right: 1px solid #edf0f8
}

.why-card h3,
.why-card p {
    grid-column: 2
}

.why-card p {
    font-size: var(--fs-12)
}

.why-card .icon-bubble {
    grid-row: span 2;
    width: 60px;
    height: 60px
}

.price-card {
    display: grid;
    grid-template-columns: 0.78fr 1fr;
    align-items: center;
    min-height: 310px;
    height: 100%;
    padding: 36px;
    overflow: hidden;
    border: 1px solid #edf0f8;
    border-radius: var(--radius-lg)
}

.price-purple {
    background: linear-gradient(135deg, #fbf7ff, #f1e7ff)
}

.price-green {
    background: linear-gradient(135deg, #fcfffb, #eff9ea)
}

.price-card img {
    width: 90%;
    max-height: 250px;
    object-fit: contain
}

.price-card strong {
    display: block;
    margin: 4px 0 14px;
    font-size: 34px
}

.price-card strong span {
    color: var(--text-muted);
    font-size: 15px
}

.trust-section p {
    margin: 0 0 16px
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 5vw, 72px)
}

.trust-logos img {
    width: auto;
    height: 40px;
    max-width: 140px;
    object-fit: contain
}

.site-footer {
    position: relative;
    padding: 34px 22px;
    overflow: hidden;
    color: #fff;
    background: #070b24
}

/* .site-footer::after {
    content: "";
    position: absolute;
    right: 30px;
    bottom: -6px;
    width: 118px;
    height: 118px;
    background: url("../assets/images/footer-alfie.gif") center/contain no-repeat
} */

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr) 1.35fr;
    gap: 30px
}

.footer-brand img {
    width: 138px;
    filter: brightness(0) invert(1)
}

.footer-brand p,
.newsletter p {
    margin: 14px 0;
    color: rgb(255 255 255 / .78);
    font-size: 13px
}

.footer-grid h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: var(--fs-16);
    font-weight: var(--fontMedium)
}

.footer-bottom,
.footer-grid a {
    color: rgb(255 255 255 / .78);
    font-size: var(--fs-14)
}

.footer-grid a {
    display: block;
    margin-bottom: 8px;
    transition: color 180ms
}

.footer-grid a:hover,
.pricing-cta-card:hover>.material-symbols-outlined {
    color: #fff
}

.newsletter form,
.social-links {
    display: flex;
    gap: 8px
}

.social-links a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 0;
    color: #fff;
    border: 1px solid;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800
}

.newsletter input {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    border: 0;
    border-radius: var(--radius-sm)
}

.newsletter button {
    min-height: 42px;
    padding: 0 16px;
    color: #fff;
    background: var(--brand-primary);
    border: 0;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 44px;
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid
}

.footer-bottom p {
    margin: 0 auto 0 0
}

.footer-bottom span {
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.pricing-page,
.product-page {
    background: #fff
}

.product-hero-shell {
    padding: 18px 0 14px
}

.product-hero-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
    align-items: center;
    min-height: 390px;
    overflow: hidden;
    padding: 4px 0 16px 40px;
    background: #f5f1fe;
    border: 1px solid #eee7ff;
    border-radius: var(--radius-xl)
}

.hero-proof-card span,
.product-kicker {
    align-items: center;
    font-weight: var(--fontBold)
}

.product-kicker {
    display: inline-flex;
    justify-content: center;
    min-height: 28px;
    margin-bottom: 22px;
    padding: 0 16px;
    color: var(--brand-secondary);
    background: #fff;
    border: 1px solid var(--brand-primary);
    border-radius: var(--radius-pill);
    font-size: var(--fs-12)
}

.product-hero-copy p {
    max-width: 390px;
    margin: 0 0 28px;
    color: var(--text-heading);
    font-size: var(--fs-18);
    line-height: 1.55
}

.product-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px
}

.product-hero-actions .material-symbols-outlined {
    font-size: 21px
}

.product-hero-art {
    position: relative;
    display: grid;
    place-items: end;
    min-height: 310px
}

.product-hero-image {
    width: min(100%, 650px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 22px 42px rgb(15 23 42 / .12))
}

.hero-proof-card {
    position: absolute;
    right: 20px;
    bottom: 5px;
    z-index: 4;
    display: grid;
    gap: 14px;
    width: 180px;
    padding: 18px;
    background: #fff;
    border: 1px solid #e6ddff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md)
}

.hero-proof-card span {
    display: flex;
    gap: 8px;
    color: var(--text-heading);
    font-size: var(--fs-13, 13px)
}

.hero-proof-card i {
    color: var(--brand-secondary);
    font-size: 18px;
    font-style: normal
}

.product-benefits-band {
    position: absolute;
    bottom: 0;
    left: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: hidden;
    background: rgb(255 255 255 / .92);
    border: 1px solid #e8e1ff;
    border-bottom: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -8px 24px rgb(15 23 42 / .06);
    backdrop-filter: blur(12px)
}

.product-benefit-strip article,
.product-benefits-band article {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 20px;
    border-right: 1px solid #e8e1ff
}

.product-benefit-strip .material-symbols-outlined,
.product-benefits-band .material-symbols-outlined {
    color: var(--brand-secondary);
    font-size: 30px
}

.product-benefit-strip strong,
.product-benefits-band strong {
    color: var(--text-heading);
    font-size: var(--fs-14);
    font-weight: var(--fontBold)
}

.product-shop-section {
    padding: 18px 0 28px
}

.product-shop-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 22px;
    align-items: start
}

.product-sidebar {
    position: sticky;
    top: 94px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7eaf3;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm)
}

.category-list,
.filter-block {
    border-bottom: 1px solid #edf0f8
}

.filter-head,
.filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 10px
}

.filter-head strong,
.filter-title strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-heading);
    font-size: var(--fs-14)
}

.filter-head .material-symbols-outlined {
    color: var(--brand-secondary);
    font-size: 18px
}

.filter-head a,
.filter-title a {
    color: var(--brand-secondary);
    font-size: var(--fs-12);
    font-weight: var(--fontBold)
}

.category-list {
    display: grid;
    gap: 2px;
    padding: 0 10px 12px
}

.category-list a {
    display: grid;
    grid-template-columns: 22px 1fr auto;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 8px;
    color: var(--text-heading);
    border-radius: var(--radius-md);
    font-size: var(--fs-12);
    font-weight: var(--fontMedium);
    transition: color 180ms, background 180ms, box-shadow 180ms, transform 180ms
}

.category-list small,
.range-line {
    border-radius: var(--radius-pill)
}

.category-list a:focus-visible,
.category-list a:hover {
    color: var(--brand-secondary);
    background: color-mix(in srgb, var(--brand-primary-soft) 78%, #fff)
}

.category-list a.active {
    color: var(--brand-secondary);
    background: var(--brand-primary-soft)
}

.category-list a.active:focus-visible,
.category-list a.active:hover {
    background: var(--brand-primary-soft)
}

.category-list .material-symbols-outlined {
    color: currentColor;
    font-size: 18px;
    transition: transform 180ms
}

.category-list a:focus-visible .material-symbols-outlined,
.category-list a:hover .material-symbols-outlined {
    transform: scale(1.08)
}

.category-list small {
    display: inline-grid;
    place-items: center;
    min-width: 24px;
    height: 20px;
    padding: 0 6px;
    background: #f4f6fb;
    color: var(--text-body);
    font-size: 10px;
    transition: color 180ms, background 180ms
}

.category-list a.active small,
.category-list a:focus-visible small,
.category-list a:hover small {
    color: var(--brand-secondary);
    background: #fff
}

.filter-block {
    padding: 14px 16px
}

.filter-block label {
    display: block;
    margin-bottom: 12px;
    color: var(--text-heading);
    font-size: var(--fs-13, 13px);
    font-weight: var(--fontBold)
}

.price-inputs input,
.size-pills button {
    color: var(--text-heading);
    font-size: var(--fs-12)
}

.price-range {
    position: relative;
    height: 32px;
    margin: 10px 0 14px
}

.range-line {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 5px;
    background: #ece8ff;
    transform: translateY(-50%)
}

.range-line span {
    position: absolute;
    inset: 0;
    background: var(--brand-secondary);
    border-radius: inherit
}

.price-range input[type=range] {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 32px;
    margin: 0;
    background: 0 0;
    pointer-events: none;
    transform: translateY(-70%);
    appearance: none;
    -webkit-appearance: none
}

.price-range input[type=range]::-webkit-slider-runnable-track {
    height: 5px;
    background: 0 0;
    border: 0
}

.price-range input[type=range]::-moz-range-track {
    height: 5px;
    background: 0 0;
    border: 0
}

.price-range input[type=range]::-webkit-slider-thumb {
    width: 17px;
    height: 17px;
    background: var(--brand-secondary);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgb(97 49 223 / .32);
    cursor: grab;
    pointer-events: auto;
    appearance: none;
    -webkit-appearance: none
}

.price-range input[type=range]::-moz-range-thumb {
    width: 17px;
    height: 17px;
    background: var(--brand-secondary);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgb(97 49 223 / .32);
    cursor: grab;
    pointer-events: auto
}

.price-range input[type=range]:active::-webkit-slider-thumb {
    cursor: grabbing;
    transform: scale(1.08)
}

.price-range input[type=range]:active::-moz-range-thumb {
    cursor: grabbing;
    transform: scale(1.08)
}

.price-inputs {
    flex-wrap: nowrap !important
}

.color-dots,
.price-inputs,
.size-pills {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px
}

.price-inputs input {
    display: grid;
    place-items: center;
    min-width: 82px;
    height: 38px;
    border: 1px solid #dfe4ef;
    border-radius: var(--radius-sm);
    background: #fff;
    font-weight: var(--fontMedium);
    text-align: center;
    outline: 0
}

.price-inputs input:focus {
    border-color: var(--brand-secondary);
    box-shadow: 0 0 0 3px rgb(97 49 223 / .12)
}

.color-dots button,
.size-pills button {
    display: grid;
    place-items: center;
    padding: 0;
    background: #fff;
    border: 1px solid #dfe4ef;
    cursor: pointer;
    transition: border-color 180ms, box-shadow 180ms, color 180ms, background 180ms
}

.color-dots button {
    position: relative;
    width: 20px;
    height: 20px;
    background: var(--dot);
    border-color: #d9deeb;
    border-radius: 50%
}

.color-dots button[style*="#ffffff"] {
    box-shadow: inset 0 0 0 1px #fff
}

.color-dots button.is-selected,
.color-dots button[aria-pressed=true] {
    border-color: var(--brand-secondary);
    box-shadow: 0 0 0 3px rgb(97 49 223 / .16)
}

.color-dots button.is-selected::after,
.color-dots button[aria-pressed=true]::after {
    content: "";
    width: 7px;
    height: 7px;
    background: #fff;
    border: 1px solid;
    border-radius: 50%
}

.size-pills button {
    min-width: 34px;
    height: 30px;
    border-radius: var(--radius-sm);
    font-weight: var(--fontMedium)
}

.size-pills button.is-selected,
.size-pills button[aria-pressed=true] {
    color: #fff;
    background: var(--brand-secondary);
    border-color: var(--brand-secondary);
    box-shadow: 0 8px 16px rgb(97 49 223 / .16)
}

.check-filter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.check-filter>label:first-child {
    grid-column: 1/-1;
    margin-bottom: 0
}

.filter-check {
    display: inline-flex !important;
    grid-column: auto !important;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    color: var(--text-body) !important;
    font-size: var(--fs-12) !important;
    font-weight: var(--fontMedium) !important;
    cursor: pointer
}

.catalog-card h3,
.product-chips button,
.product-label,
.product-toolbar h2 {
    font-weight: var(--fontBold)
}

.filter-check input {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: var(--brand-secondary);
    cursor: pointer
}

.filter-check span {
    color: inherit
}

.apply-filter {
    width: calc(100% - 32px);
    margin: 16px
}

.product-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px
}

.product-toolbar h2 {
    margin: 0;
    color: var(--text-heading);
    font-size: var(--fs-20)
}

.product-toolbar h2 span {
    position: relative;
    margin-left: 10px;
    padding-left: 18px;
    font-size: var(--fs-16)
}

.product-toolbar h2 span::before {
    content: ">";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--text-muted)
}

.product-toolbar p {
    margin: 4px 0 0;
    color: var(--text-muted);
    font-size: var(--fs-13, 13px)
}

.sort-tools {
    display: flex;
    align-items: center;
    gap: 8px
}

.sort-tools label,
.sort-tools-label {
    color: var(--text-heading);
    font-size: var(--fs-12);
    font-weight: var(--fontBold)
}

.sort-tools button {
    min-height: 40px;
    border: 1px solid #dfe4ef;
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--text-heading);
    display: grid;
    place-items: center;
    width: 40px;
    color: var(--brand-secondary)
}

.product-chips button,
.sort-tools .sort-select-button {
    display: inline-flex;
    align-items: center;
    font-size: var(--fs-12)
}

.catalog-card h3,
.catalog-card p,
.catalog-card strong,
.catalog-card>button,
.product-chips button,
.sort-tools .sort-select-button {
    color: var(--text-heading)
}

.sort-native-select {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none
}

.custom-sort {
    position: relative;
    min-width: 148px
}

.sort-tools .sort-select-button {
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    min-width: 148px;
    padding: 0 10px 0 12px;
    font-weight: var(--fontMedium)
}

.sort-select-button .material-symbols-outlined {
    color: var(--brand-secondary);
    font-size: 18px;
    transition: transform 160ms
}

.custom-sort.is-open .sort-select-button .material-symbols-outlined {
    transform: rotate(180deg)
}

.sort-options {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 20;
    display: grid;
    min-width: 100%;
    padding: 6px;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    border: 1px solid #dfe4ef;
    border-radius: var(--radius-md);
    box-shadow: 0 14px 32px rgb(15 23 42 / .14);
    transform: translateY(6px);
    transition: opacity 160ms, transform 160ms, visibility 160ms
}

.catalog-card>button,
.product-label {
    top: 12px;
    z-index: 2;
    position: absolute
}

.elite-ribbon,
.faq-item.is-open button i {
    transform: rotate(45deg)
}

.custom-sort.is-open .sort-options {
    visibility: visible;
    opacity: 1;
    transform: translateY(0)
}

.sort-tools .sort-options button {
    justify-content: flex-start;
    width: 100%;
    min-height: 34px;
    padding: 0 10px;
    color: var(--text-heading);
    background: 0 0;
    border: 0;
    border-radius: var(--radius-sm);
    font-size: var(--fs-12);
    font-weight: var(--fontMedium);
    text-align: left
}

.sort-tools .sort-options button:hover,
.sort-tools .sort-options button[aria-selected=true] {
    color: var(--brand-secondary);
    background: #f7f3ff
}

.product-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px
}

.product-chips button {
    gap: 7px;
    min-height: 38px;
    padding: 0 14px;
    background: #fff;
    border: 1px solid #dfe4ef;
    border-radius: var(--radius-pill)
}

.product-chips button.active {
    color: var(--brand-secondary);
    border-color: var(--brand-secondary);
    box-shadow: 0 8px 18px rgb(97 49 223 / .12)
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px
}

.catalog-card {
    position: relative;
    display: grid;
    min-width: 0;
    padding: 8px 8px 14px;
    background: #fff;
    border: 1px solid #e7eaf3;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm)
}

.catalog-card>button {
    right: 12px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    padding: 0;
    background: #fff;
    border: 1px solid #e7eaf3;
    border-radius: 50%;
    transition: border-color 180ms, color 180ms, background 180ms, box-shadow 180ms
}

.catalog-card>button.is-active,
.catalog-card>button:hover,
.catalog-card>button[aria-pressed=true] {
    color: var(--brand-secondary);
    background: var(--brand-primary-soft);
    border-color: color-mix(in srgb, var(--brand-secondary) 42%, #fff);
    box-shadow: 0 8px 18px rgb(97 49 223 / .14)
}

.catalog-card>a:hover,
.product-label {
    background: var(--brand-secondary);
    color: #fff
}

.catalog-card>button .material-symbols-Rounded,
.catalog-card>button .material-symbols-outlined {
    font-size: 18px;
    transition: color 180ms, transform 180ms
}

.catalog-card>button.is-active .material-symbols-Rounded,
.catalog-card>button[aria-pressed=true] .material-symbols-Rounded {
    transform: scale(1.04)
}

.product-label {
    left: 12px;
    padding: 5px 8px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-10)
}

.product-label.new {
    background: #6d28d9
}

.product-label.popular {
    background: #7c3aed
}

.catalog-media {
    display: grid;
    place-items: center;
    aspect-ratio: 1/1.05;
    margin-bottom: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #faf7ff, #f3f5fa);
    border-radius: var(--radius-md)
}

.catalog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    mix-blend-mode: multiply
}

.catalog-card h3 {
    margin: 0 8px 2px;
    font-size: var(--fs-13, 13px);
    line-height: 1.25
}

.catalog-card p {
    margin: 0 8px 9px;
    font-size: var(--fs-12);
    font-weight: var(--fontMedium)
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0 8px 10px;
    color: var(--brand-secondary);
    font-size: var(--fs-12);
    font-weight: var(--fontBold)
}

.rating .material-symbols-outlined {
    font-size: 16px;
    font-variation-settings: "FILL" 1
}

.catalog-card strong {
    margin: 0 8px;
    font-size: var(--fs-16);
    font-weight: var(--fontBold)
}

.catalog-card del {
    margin-left: 5px;
    color: var(--text-muted);
    font-size: var(--fs-11, 11px);
    font-weight: var(--fontMedium)
}

.catalog-card small,
.faq-item button,
.faq-panel h2,
.hero-tag {
    font-weight: var(--fontBold)
}

.catalog-card small {
    width: fit-content;
    margin: 6px 8px 0;
    padding: 3px 7px;
    color: var(--color-success-500);
    background: #eaf8ee;
    border-radius: var(--radius-sm);
    font-size: 10px
}

.catalog-card>a {
    position: absolute;
    right: 12px;
    bottom: 13px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--brand-secondary);
    border: 1px solid var(--brand-secondary);
    border-radius: var(--radius-sm)
}

.billing-toggle [data-billing-label].is-active,
.faq-item button,
.faq-item button span,
.faq-panel h2 {
    color: var(--text-heading)
}

.catalog-card>a:hover {
    transition: background 180ms, color 180ms
}

.product-benefit-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 22px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #fbf8ff, #fff);
    border: 1px solid #e8e1ff;
    border-radius: var(--radius-lg)
}

.product-benefit-strip article {
    padding: 18px;
    display: flex;
    align-items: center
}

.product-faq-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 26px;
    align-items: center
}

.faq-panel h2 {
    margin: 0 0 16px;
    font-size: var(--fs-24)
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px
}

.faq-item {
    overflow: hidden;
    background: #fff;
    border: 1px solid #dfe4ef;
    border-radius: var(--radius-md);
    transition: border-color 180ms, box-shadow 180ms
}

.faq-item.is-open {
    border-color: color-mix(in srgb, var(--brand-secondary) 42%, #dfe4ef);
    box-shadow: 0 10px 24px rgb(97 49 223 / .08)
}

.faq-item button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    background: #fff;
    border: 0;
    font-size: var(--fs-13, 13px);
    text-align: left
}

.faq-item button i {
    flex: 0 0 auto;
    color: var(--brand-secondary);
    font-size: var(--fs-24);
    font-style: normal;
    font-weight: var(--fontExtraBold);
    line-height: 1;
    transition: transform 180ms
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 240ms
}

.faq-answer p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--text-body);
    font-size: var(--fs-12);
    line-height: 1.65
}

@media (max-width:991.98px) {
    .product-header-mega .nav-panel {
        top: 0;
        height: 100dvh;
        min-height: 100vh;
        align-content: stretch;
        justify-items: stretch;
        justify-content: stretch;
        grid-template-rows: auto 1fr auto;
        gap: 18px;
        padding: 18px 20px 24px;
        background: #fff;
        z-index: 1200;
        align-items: self-start
    }

    .product-header-mega .mobile-panel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%
    }

    .product-header-mega .mobile-panel-brand {
        width: 142px
    }

    .product-header-mega .mega-feature-card,
    .product-header-mega .mega-menu-copy,
    .product-header-mega .mega-menu-footer,
    .product-header-mega .mega-menu-highlights,
    .product-header-mega .mega-view-more,
    .product-header-mega .mobile-panel-cta,
    .product-header-mega .product-mega-dropdown::after {
        display: none
    }

    .product-header-mega .menu-close {
        width: 40px;
        height: 40px;
        background: 0 0
    }

    .product-header-mega .nav-links {
        align-content: start;
        justify-items: stretch;
        gap: 0;
        width: 100%;
        min-width: 0;
        margin-top: 4px
    }

    .product-header-mega .nav-links>li {
        justify-items: stretch;
        min-width: 0
    }

    .product-header-mega .nav-dropdown>button,
    .product-header-mega .nav-links>li>a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 58px;
        width: 100%;
        padding: 0;
        color: var(--text-heading);
        background: 0 0;
        border: 0;
        border-radius: 0;
        font-size: var(--fs-16);
        font-weight: var(--fontMedium);
        line-height: 1.15;
        text-align: left
    }

    .product-header-mega .dropdown-menu-custom,
    .product-header-mega .product-mega-menu {
        visibility: visible;
        opacity: 1;
        border: 0;
        display: none;
        box-shadow: none;
        transform: none;
        padding: 0;
        width: 100%;
        background: 0 0
    }

    .product-header-mega .nav-dropdown.is-open>button,
    .product-header-mega .nav-dropdown>button:hover,
    .product-header-mega .nav-links>li>a:hover {
        color: var(--brand-primary);
        background: 0 0
    }

    .product-header-mega .nav-dropdown>button .material-symbols-outlined {
        margin-left: auto;
        color: var(--text-heading);
        font-size: 30px;
        font-weight: 300;
        transform: rotate(-90deg)
    }

    .product-header-mega .product-mega-menu {
        position: static;
        max-height: none;
        overflow: visible;
        pointer-events: auto
    }

    .product-header-mega .dropdown-menu-custom {
        border-radius: 0
    }

    .product-header-mega .nav-dropdown:focus-within .dropdown-menu-custom,
    .product-header-mega .nav-dropdown:hover .dropdown-menu-custom {
        display: none
    }

    .product-header-mega .nav-dropdown.is-open .dropdown-menu-custom,
    .product-header-mega .nav-dropdown.is-open .product-mega-menu,
    body .product-toolbar {
        display: grid
    }

    .product-header-mega .product-mega-dropdown.is-open .product-mega-menu,
    .product-header-mega .product-mega-dropdown:focus-within .product-mega-menu,
    .product-header-mega .product-mega-dropdown:hover .product-mega-menu {
        transform: none
    }

    .product-header-mega .mega-product-card em,
    .product-header-mega .mega-product-card>i,
    .product-header-mega .mega-product-media,
    .product-header-mega .nav-panel.is-drilldown .nav-links>li:not(.is-open),
    body .faq-art {
        display: none
    }

    .product-header-mega .nav-panel.is-drilldown .nav-dropdown.is-open>button {
        justify-content: flex-start;
        gap: 8px;
        min-height: 52px;
        color: var(--brand-secondary);
        text-transform: none
    }

    .product-header-mega .nav-panel.is-drilldown .nav-dropdown.is-open>button .material-symbols-outlined {
        order: -1;
        margin-left: 0;
        color: var(--brand-secondary);
        transform: rotate(90deg)
    }

    .product-header-mega .mega-menu-content {
        display: grid;
        gap: 10px;
        width: 100%
    }

    .product-header-mega .mega-menu-main {
        display: block;
        width: 100%
    }

    .product-header-mega .mega-product-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%
    }

    .product-header-mega .mega-product-card {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 10px;
        min-height: 0;
        padding: 13px 0;
        text-align: left;
        background: 0 0;
        border: 0;
        border-bottom: 1px solid;
        border-radius: 0;
        box-shadow: none
    }

    .product-header-mega .mega-product-card:focus-visible,
    .product-header-mega .mega-product-card:hover {
        box-shadow: none;
        transform: none
    }

    .product-header-mega .mega-product-card strong {
        margin: 0;
        color: var(--text-heading);
        font-size: var(--fs-16);
        font-weight: var(--fontMedium);
        text-align: left
    }

    .product-header-mega .mega-product-card small {
        justify-self: end;
        margin: 0;
        padding: 4px 8px;
        font-size: 10px
    }

    .product-header-mega .nav-dropdown:not(.product-mega-dropdown) .dropdown-menu-custom {
        gap: 0
    }

    .product-header-mega .nav-dropdown:not(.product-mega-dropdown).is-open .dropdown-menu-custom a {
        justify-content: flex-start;
        min-height: 48px;
        padding: 0;
        color: var(--text-heading);
        border-bottom: 1px solid;
        font-size: var(--fs-16);
        font-weight: var(--fontSemibold);
        text-align: left
    }

    .product-header-mega .nav-actions {
        align-self: end;
        justify-items: center;
        gap: 16px;
        width: 100%;
        min-width: 0;
        margin-top: auto
    }

    .product-header-mega .nav-actions .btn {
        width: min(100%, 340px);
        min-height: 42px;
        padding: 0 22px;
        border-radius: var(--radius-md);
        font-size: var(--fs-12);
        font-weight: var(--fontMedium);
        text-transform: uppercase
    }

    .product-header-mega .nav-actions .btn-outline-brand {
        width: auto;
        min-height: 24px;
        padding: 0;
        color: var(--text-heading);
        background: 0 0;
        border: 0;
        border-radius: 0
    }

    .product-header-mega .nav-actions .btnSecondary {
        color: #fff;
        background: var(--brand-secondary);
        border-color: var(--brand-secondary)
    }

    body .filter-panel-backdrop,
    body .product-sidebar {
        position: fixed;
        visibility: hidden;
        pointer-events: none
    }

    body .faq-grid,
    body .product-faq-row,
    body .product-shop-layout,
    body .product-toolbar {
        grid-template-columns: 1fr
    }

    body .product-sidebar {
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 1310;
        width: min(88vw, 390px);
        max-width: 100%;
        height: 100dvh;
        overflow-y: auto;
        background: #fff;
        border: 0;
        border-radius: var(--radius-lg) 0 0 var(--radius-lg);
        box-shadow: -24px 0 48px rgb(15 23 42 / .18);
        overscroll-behavior: contain;
        transform: translateX(104%);
        transition: transform 260ms, visibility 260ms
    }

    body.product-filter-open .product-sidebar {
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0)
    }

    body.product-filter-open {
        overflow: hidden
    }

    body .filter-panel-backdrop {
        inset: 0;
        z-index: 1300;
        display: block;
        padding: 0;
        opacity: 0;
        background: rgb(15 23 42 / .46);
        border: 0;
        transition: opacity 220ms, visibility 220ms
    }

    body.product-filter-open .filter-panel-backdrop {
        visibility: visible;
        opacity: 1;
        pointer-events: auto
    }

    body .filter-panel-head {
        position: sticky;
        top: 0;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 62px;
        padding: 0 16px;
        background: #fff;
        border-bottom: 1px solid #edf0f8
    }

    body .filter-panel-head strong {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--text-heading);
        font-size: var(--fs-16);
        font-weight: var(--fontBold)
    }

    body .filter-panel-head strong .material-symbols-outlined {
        color: var(--brand-secondary);
        font-size: 21px
    }

    body .filter-panel-head button {
        display: grid;
        place-items: center;
        width: 36px;
        height: 36px;
        padding: 0;
        color: var(--text-heading);
        background: #f7f3ff;
        border: 1px solid #eee7ff;
        border-radius: var(--radius-pill)
    }

    body .filter-panel-head button .material-symbols-outlined {
        font-size: 20px
    }

    body .sort-tools .mobile-filter-toggle {
        display: inline-flex;
        width: auto;
        min-width: 96px;
        padding: 0 14px;
        gap: 7px;
        color: #fff;
        background: var(--brand-secondary);
        border-color: var(--brand-secondary);
        font-weight: var(--fontMedium);
        border-radius: var(--radius-md)
    }

    body .sort-tools .mobile-filter-toggle .material-symbols-outlined {
        color: inherit;
        font-size: 18px
    }

    body .category-list {
        grid-template-columns: repeat(2, 1fr)
    }

    body .filter-head {
        padding-top: 14px
    }

    body .apply-filter {
        position: sticky;
        bottom: 0;
        z-index: 2;
        width: auto;
        margin: 0;
        min-height: 52px;
        color: #fff;
        background: var(--brand-secondary);
        border: 0;
        border-radius: 0;
        box-shadow: 0 -10px 24px rgb(15 23 42 / .08)
    }
}

.pricing-hero-section {
    padding: 20px 0 18px
}

.pricing-hero-card {
    display: grid;
    grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1.14fr);
    align-items: center;
    min-height: 360px;
    overflow: hidden;
    padding: 50px 44px;
    background: radial-gradient(circle at 84% 20%, rgb(97 49 223 / .12), transparent 18rem), linear-gradient(135deg, #fbf8ff 0, #fff 48%, #f1e8ff 100%);
    border: 1px solid #efe7ff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm)
}

.pricing-hero-copy p {
    max-width: 430px;
    margin: 0 0 30px;
    color: var(--text-heading);
    font-size: var(--fs-18);
    line-height: 1.55
}

.pricing-hero-art {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 300px
}

.pricing-hero-art img {
    width: min(100%, 590px);
    height: auto;
    filter: drop-shadow(0 22px 44px rgb(15 23 42 / .14))
}

.hero-tag {
    position: absolute;
    z-index: 2;
    display: inline-grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    padding: 16px 18px;
    color: var(--text-heading);
    background: rgb(255 255 255 / .9);
    border: 1px solid #eee7ff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    font-size: var(--fs-12);
    line-height: 1.25
}

.billing-toggle,
.plan-title-row {
    align-items: center;
    margin-bottom: 24px
}

.billing-toggle,
.elite-ribbon,
.plan-ribbon,
.plan-title-row h3 {
    font-weight: var(--fontSemibold)
}

.hero-tag i {
    color: var(--brand-secondary);
    font-size: 30px;
    font-style: normal
}

.tag-shipping {
    top: 6px;
    left: 18px
}

.tag-ai {
    top: 118px;
    left: -20px
}

.tag-pack {
    top: 48px;
    right: 26px
}

.tag-store {
    right: -18px;
    bottom: 72px
}

.pricing-heading p {
    margin: 0 auto 20px;
    color: var(--text-body)
}

.billing-toggle {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-muted);
    font-size: var(--fs-14)
}

.billing-toggle>button {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--brand-secondary);
    background: #fff;
    border: 1px solid #e0d7ff;
    border-radius: 50%;
    transition: color .2s, background .2s, border-color .2s, transform .2s
}

.billing-toggle>button.is-active,
.billing-toggle>button:hover {
    color: #fff;
    background: var(--brand-primary);
    border-color: var(--brand-primary)
}

.billing-switch span::after,
.plan-card {
    background: #fff;
    box-shadow: var(--shadow-sm)
}

.billing-toggle>button:active {
    transform: scale(.94)
}

.billing-toggle [data-billing-label] {
    transition: color .2s
}

.billing-switch {
    position: relative;
    display: inline-grid;
    cursor: pointer
}

.billing-switch input {
    position: absolute;
    opacity: 0
}

.billing-switch span {
    position: relative;
    display: block;
    width: 74px;
    height: 34px;
    background: #efe9fd;
    border: 1px solid #e0d7ff;
    border-radius: var(--radius-pill);
    transition: background .25s, border-color .25s
}

.billing-switch span::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    transition: transform .25s
}

.billing-switch input:checked+span {
    background: var(--brand-secondary);
    border-color: var(--brand-secondary)
}

.billing-switch input:checked+span::after {
    transform: translateX(40px)
}

.billing-switch input:focus-visible+span {
    outline: 3px solid var(--brand-primary-soft);
    outline-offset: 3px
}

.billing-toggle small {
    display: inline-grid;
    place-items: center;
    min-height: 24px;
    margin-left: 6px;
    padding: 0 9px;
    color: #fff;
    background: var(--brand-secondary);
    border-radius: var(--radius-md);
    font-size: var(--fs-10);
    text-transform: none
}

.pricing-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px
}

.plan-card {
    position: relative;
    min-height: 620px;
    padding: 28px 20px;
    overflow: hidden;
    border: 1px solid #dfe4ef;
    border-radius: var(--radius-xl)
}

.plan-free {
    border-color: #7ec59a
}

.plan-standard {
    border-color: #8ec5ff
}

.plan-premium {
    border-color: var(--brand-secondary)
}

.plan-elite {
    border-color: #c69a42;
    background: linear-gradient(135deg, #fffaf1, #fff)
}

.elite-ribbon,
.plan-ribbon {
    position: absolute;
    top: 0;
    right: 26px;
    padding: 4px 10px;
    color: #fff;
    background: var(--brand-secondary);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: var(--fs-10);
    text-transform: uppercase
}

.elite-ribbon {
    top: 18px;
    right: -40px;
    min-width: 170px;
    background: #b78322;
    text-align: center
}

.plan-title-row {
    display: flex;
    gap: 10px
}

.plan-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: var(--brand-secondary);
    background: var(--brand-primary-soft);
    border-radius: 50%;
    font-size: 30px
}

.plan-free .plan-icon {
    color: #2f8b54;
    background: #e8f7ed
}

.plan-standard .plan-icon {
    color: #2176d8;
    background: #eaf3ff
}

.plan-elite .plan-icon {
    color: #9b6b19;
    background: #f8edd8
}

.plan-title-row h3 {
    margin: 0;
    color: var(--text-heading);
    font-size: var(--fs-16)
}

.plan-note,
.plan-title-row p {
    margin: 0;
    color: var(--text-heading);
    font-size: var(--fs-14);
    font-weight: var(--fontBold)
}

.plan-card>.btn,
.plan-price span {
    font-size: var(--fs-16)
}

.plan-note {
    min-height: 38px;
    margin-bottom: 18px;
    color: var(--text-body);
    font-weight: var(--font-base);
    font-size: var(--fs-14)
}

.plan-price {
    display: block;
    margin-bottom: 16px;
    color: var(--text-heading);
    font-size: var(--fs-40);
    font-weight: var(--fontSemibold)
}

.plan-card>.btn {
    width: 100%;
    min-height: 48px;
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    font-weight: var(--fontMedium)
}

.btn-dark {
    color: #fff;
    background: #1f2027;
    border-color: #1f2027
}

.compare-table,
.compare-table th,
.plan-features li {
    color: var(--text-heading)
}

.plan-features {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none
}

.plan-features li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 8px;
    font-size: var(--fs-12);
    line-height: 1.4
}

.plan-features span.material-symbols-outlined {
    color: var(--brand-secondary);
    font-size: 17px;
    font-variation-settings: "FILL" 1
}

.plan-free .plan-features .material-symbols-outlined,
.plan-standard .plan-features .material-symbols-outlined {
    color: #2f8b54
}

.plan-standard .plan-features .material-symbols-outlined {
    color: #2176d8
}

.plan-standard .btn-brand {
    background: #2176d8 !important;
    border-color: #2176d8 !important
}

.plan-elite .plan-features .material-symbols-outlined {
    color: #a5721c
}

.compare-section {
    padding: 24px 0
}

.compare-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px
}

.compare-heading span {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-secondary), transparent)
}

.compare-table-wrap {
    overflow-x: auto;
    border: 1px solid #ded8f2;
    border-radius: var(--radius-lg)
}

.compare-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    background: #fff;
    font-size: var(--fs-12)
}

.compare-table td,
.compare-table th {
    padding: 12px 14px;
    border: 1px solid #e8e5f4;
    text-align: center;
    vertical-align: middle
}

.compare-table th {
    background: #f7f2ff;
    font-weight: var(--fontExtraBold);
    text-transform: uppercase
}

.compare-table th small {
    text-transform: capitalize
}

.compare-table td:first-child,
.compare-table th:first-child {
    width: 31%;
    text-align: left
}

.compare-table td:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    font-weight: var(--fontBold)
}

.compare-table .no,
.compare-table .yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: var(--fontBold)
}

.compare-table .yes i {
    color: #2f8b54;
    font-size: 16px;
    font-variation-settings: "FILL" 1
}

.compare-table .no i {
    color: #ef233c;
    font-size: 16px;
    font-weight: var(--fontBold)
}

.pricing-benefits-section {
    padding: 4px 0 18px
}

.pricing-benefits {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e9e4f6;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm)
}

.pricing-benefits article {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 16px 18px;
    border-right: 1px solid #eee8ff
}

.pricing-benefits span {
    color: var(--brand-secondary);
    font-size: 34px
}

.pricing-benefits strong {
    color: var(--text-heading);
    font-size: var(--fs-14);
    line-height: 1.2
}

.pricing-cta-section {
    padding: 0 0 28px
}

.pricing-cta-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 22px;
    min-height: 90px;
    padding: 22px 42px;
    overflow: hidden;
    color: #fff;
    background: url("../assets/images/bg-stars.png") center/cover no-repeat, linear-gradient(135deg, #4c1bbd, #8727e8) center/cover no-repeat;
    border-radius: var(--radius-xl);
    box-shadow: 0 18px 38px rgb(97 49 223 / .24);
    transition: transform .28s, box-shadow .28s, background-position .28s
}

.pricing-cta-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 0 34%, rgb(255 255 255 / .22) 48%, transparent 62% 100%);
    transform: translateX(-110%);
    transition: transform .55s
}

.pricing-cta-card>* {
    position: relative;
    z-index: 1
}

.pricing-cta-card>.material-symbols-outlined {
    padding-right: 28px;
    border-right: 1px solid;
    font-size: 48px;
    transition: transform .28s, color .28s
}

.pricing-cta-card .btn,
.pricing-cta-card .btn-outline-light:hover {
    color: var(--brand-secondary);
    background: #fff;
    border-color: #fff
}

.pricing-cta-card h2,
.pricing-cta-card p {
    margin: 0
}

.pricing-cta-card h2 {
    font-size: var(--fs-24);
    font-weight: var(--fontMedium)
}

.pricing-cta-card p {
    color: rgb(255 255 255 / .88)
}

.pricing-cta-card .btn {
    min-width: 160px;
    font-weight: var(--fontBold);
    text-transform: uppercase;
    transition: transform .22s, box-shadow .22s, background .22s, color .22s, border-color .22s
}

.pricing-cta-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgb(22 12 72 / .22)
}

.pricing-cta-card .btn-outline-light {
    color: #fff;
    background: 0 0;
    border: 1px solid
}

@media (max-width:1199.98px) {
    body .pricing-plan-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    body .pricing-benefits {
        grid-template-columns: repeat(3, 1fr)
    }

    body .pricing-hero-card {
        grid-template-columns: 1fr;
        text-align: center
    }

    body .pricing-hero-copy h1,
    body .pricing-hero-copy p {
        margin-right: auto;
        margin-left: auto
    }

    body .pricing-hero-copy .btn {
        margin: 0 auto
    }
}

@media (max-width:767.98px) {
    body .product-hero-card {
        padding: 30px 20px 0;
        text-align: center
    }

    body .product-hero-copy h1 {
        margin-right: auto;
        margin-left: auto;
        font-size: var(--fs-40)
    }

    body .product-hero-copy p {
        margin-right: auto;
        margin-left: auto;
        font-size: var(--fs-16)
    }

    body .product-hero-actions,
    body .sort-tools {
        justify-content: center
    }

    body .product-hero-art {
        min-height: 260px
    }

    body .product-hero-image {
        width: min(100%, 520px)
    }

    body .product-benefits-band {
        position: static;
        grid-template-columns: 1fr;
        margin: 0 -20px;
        border-right: 0;
        border-left: 0;
        border-radius: 0
    }

    body .product-benefit-strip article,
    body .product-benefits-band article {
        border-right: 0;
        border-bottom: 1px solid #e8e1ff
    }

    body .product-benefit-strip article:last-child,
    body .product-benefits-band article:last-child {
        border-bottom: 0
    }

    body .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    body .pricing-benefits,
    body .pricing-cta-card,
    body .pricing-plan-grid,
    body .product-benefit-strip {
        grid-template-columns: 1fr
    }

    body .pricing-hero-card {
        padding: 32px 22px
    }

    body .pricing-hero-copy h1 {
        font-size: var(--fs-40)
    }

    body .pricing-hero-art {
        min-height: 250px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    body .hero-tag {
        position: static;
        width: 100%;
        min-width: 0
    }

    body .pricing-hero-art img {
        grid-column: 1/-1;
        grid-row: 1
    }

    body .plan-card {
        min-height: auto
    }

    body .pricing-benefits article {
        border-right: 0;
        border-bottom: 1px solid #eee8ff
    }

    body .pricing-cta-card {
        padding: 24px;
        text-align: center
    }

    body .pricing-cta-card>.material-symbols-outlined {
        padding: 0 0 16px;
        border-right: 0;
        border-bottom: 1px solid
    }
}

@media (max-width:575.98px) {
    .product-header-mega .nav-panel {
        justify-content: stretch;
        padding-right: 18px;
        padding-left: 18px
    }

    .product-header-mega .nav-links {
        gap: 0
    }

    .product-header-mega .mega-product-grid {
        grid-template-columns: 1fr;
        gap: 8px
    }

    .product-header-mega .product-mega-menu {
        width: 100%
    }

    .product-header-mega .mega-product-card {
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 8px;
        padding: 12px 0
    }

    .product-header-mega .mega-product-card small {
        justify-self: end;
        margin: 0
    }

    body .product-page {
        margin: 0 -10px
    }

    body .product-toolbar h2 span {
        display: block;
        margin: 6px 0 0;
        padding-left: 0
    }

    body .product-toolbar h2 span::before {
        display: none
    }

    body .product-hero-art {
        min-height: 220px
    }

    body .billing-toggle {
        display: grid;
        grid-template-columns: auto auto auto
    }

    body .billing-toggle>span {
        grid-column: 1/-1;
        text-align: center
    }
}