

/* Cart drawer + WEBINANE header cart control (no Tailwind dependency). */

.webinane-header__cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border: 1px solid rgba(16, 43, 64, 0.12);
    border-radius: 999px;
    background: #fff;
    color: var(--ink-900, #11141a);
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
} 

.webinane-header__cart:hover {
    border-color: rgba(16, 43, 64, 0.28);
    background: var(--paper, #f8f7f3);
}

.webinane-header__cart svg,
.webinane-header__search svg {
    display: block;
    width: 1rem;
    height: 1rem;
}

.webinane-header__cart svg {
    width: 1.15rem;
    height: 1.15rem;
}

.webinane-header__cart-badge {
    position: absolute;
    top: -0.15rem;
    right: -0.15rem;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: var(--blue-600, #2456e8);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.15rem;
    text-align: center;
}

.webinane-header__cart-badge[hidden] {
    display: none !important;
}

.cart-drawer-root {
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
}

.cart-drawer-root.is-open {
    pointer-events: auto;
}

.cart-overlay {
    position: absolute;
    inset: 0;
    background: rgb(10 12 16 / 48%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cart-drawer-root.is-open .cart-overlay {
    opacity: 1;
}

.cart-drawer {
    position: fixed;
    inset-block: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(100%, 26rem);
    height: 100%;
    border-left: 1px solid #e5e2da;
    background: #fbfaf7;
    box-shadow: -18px 0 48px rgb(16 43 64 / 14%);
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer-root.is-open .cart-drawer {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    flex-shrink: 0;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.35rem 1.1rem;
    border-bottom: 1px solid #e5e2da;
    background: #fff;
}

.cart-drawer-header__eyebrow {
    margin: 0 0 0.2rem;
    color: #ed684e;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cart-drawer-header h2 {
    margin: 0;
    color: #102b40;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.cart-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid #e5e2da;
    border-radius: 999px;
    background: #fff;
    color: #18364a;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.cart-drawer-close:hover {
    border-color: #102b40;
    background: #f3efe6;
}

.cart-drawer-close svg {
    width: 1.05rem;
    height: 1.05rem;
}

.mini-cart {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
}

.cart-drawer-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 1.15rem 1.25rem;
}

.cart-drawer-footer {
    flex-shrink: 0;
    padding: 1.15rem 1.25rem 1.4rem;
    border-top: 1px solid #e5e2da;
    background: #fff;
}

.mini-cart__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 16rem;
    padding: 2rem 1rem;
    text-align: center;
}

.mini-cart__empty svg {
    width: 3rem;
    height: 3rem;
    color: #a5a6a4;
}

.mini-cart__empty p {
    margin: 1rem 0 0;
    color: #667783;
    font-size: 0.95rem;
}

.mini-cart__list {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mini-cart__item {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: start;
    padding: 0.85rem;
    border: 1px solid #e5e2da;
    border-radius: 0.9rem;
    background: #fff;
}

.mini-cart__thumb {
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    overflow: hidden;
    border-radius: 0.65rem;
    background: #f3efe6;
    color: #102b40;
    font-size: 1rem;
    font-weight: 700;
}

.mini-cart__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart__meta {
    min-width: 0;
}

.mini-cart__name {
    display: block;
    overflow: hidden;
    color: #102b40;
    font-size: 0.92rem;
    font-weight: 650;
    line-height: 1.3;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-cart__name:hover {
    color: #2456e8;
}

.mini-cart__variant {
    margin: 0.2rem 0 0;
    color: #667783;
    font-size: 0.78rem;
}

.mini-cart__price {
    margin: 0.45rem 0 0;
    color: #102b40;
    font-size: 0.95rem;
    font-weight: 700;
}

.mini-cart__qty {
    margin-left: 0.3rem;
    color: #5d697a;
    font-size: 0.82rem;
    font-weight: 600;
}

.mini-cart__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid #e5e2da;
    border-radius: 999px;
    background: #fbfaf7;
    color: #667783;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.mini-cart__remove:hover {
    border-color: #c63e3e;
    background: #fff;
    color: #c63e3e;
}

.mini-cart__remove:disabled {
    opacity: 0.5;
    cursor: wait;
}

.mini-cart__remove svg {
    width: 0.9rem;
    height: 0.9rem;
}

.mini-cart__totals {
    display: grid;
    gap: 0.55rem;
    margin: 0 0 1.1rem;
}

.mini-cart__totals > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.mini-cart__totals dt,
.mini-cart__totals dd {
    margin: 0;
}

.mini-cart__totals dt {
    color: #667783;
    font-size: 0.9rem;
}

.mini-cart__totals dd {
    color: #102b40;
    font-size: 0.95rem;
    font-weight: 650;
}

.mini-cart__totals--discount dt,
.mini-cart__totals--discount dd {
    color: #27584d;
}

.mini-cart__totals--grand {
    padding-top: 0.65rem;
    border-top: 1px solid #e5e2da;
}

.mini-cart__totals--grand dt,
.mini-cart__totals--grand dd {
    color: #102b40;
    font-size: 1.05rem;
    font-weight: 750;
}

.mini-cart__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0 1.1rem;
    border-radius: 0.85rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.mini-cart__btn--primary {
    width: 100%;
    border: 0;
    background: #2456e8;
    color: #fff;
}

.mini-cart__btn--primary:hover {
    background: #1643c9;
    transform: translateY(-1px);
}

.mini-cart__btn--ghost {
    margin-top: 1rem;
    border: 1px solid #deddd7;
    background: #fff;
    color: #102b40;
}

.mini-cart__btn--ghost:hover {
    border-color: #102b40;
}

.mini-cart__link {
    display: block;
    margin-top: 0.85rem;
    color: #2456e8;
    font-size: 0.88rem;
    font-weight: 650;
    text-align: center;
    text-decoration: none;
}

.mini-cart__link:hover {
    text-decoration: underline;
}

.header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 0.5rem;
    background: transparent;
    cursor: pointer;
}

body.overflow-hidden {
    overflow: hidden;
}

/* Lifeline license switcher */
.lf-sidebar__plans {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    gap: 0.45rem;
    margin: 1.15rem 0 1.35rem;
    padding: 0.45rem;
    border-radius: 0.85rem;
    background: var(--warm, #f3efe6);
    border: 1px solid var(--line, rgba(16, 43, 64, 0.14));
}

.lf-sidebar__plans button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-height: 3.35rem;
    padding: 0.45rem 0.35rem;
    border: 1px solid transparent;
    border-radius: 0.65rem;
    background: transparent;
    color: var(--muted, #667783);
    font: inherit;
    font-size: 0.72rem;
    font-weight: 650;
    line-height: 1.2;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.lf-sidebar__plans button span {
    display: block;
}

.lf-sidebar__plans button small {
    font-size: 0.78rem;
    font-weight: 750;
    color: var(--navy, #102b40);
}

.lf-sidebar__plans button.is-active {
    border-color: rgba(237, 104, 78, 0.45);
    background: #fff;
    color: var(--navy, #102b40);
    box-shadow: 0 6px 18px rgb(16 43 64 / 8%);
}

.lf-sidebar__plans button.is-active small {
    color: var(--coral, #ed684e);
}

.lf-btn .lf-btn__spinner {
    display: none;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgb(255 255 255 / 35%);
    border-top-color: #fff;
    border-radius: 50%;
    animation: lf-spin 0.65s linear infinite;
}

.lf-btn.is-loading .lf-btn__spinner {
    display: inline-block;
}

.lf-btn.is-loading .lf-btn__label {
    opacity: 0.85;
}

.lf-btn.lf-btn--light .lf-btn__spinner {
    border-color: rgb(16 43 64 / 15%);
    border-top-color: var(--navy, #102b40);
}

@keyframes lf-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 420px) {
    .lf-sidebar__plans {
        grid-auto-flow: row;
        grid-auto-columns: auto;
    }
}

.lf-sidebar__options {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.lf-sidebar__options label {
    font-size: 0.78rem;
    font-weight: 650;
}

.lf-sidebar__options select {
    width: 100%;
    padding: 0.5rem 0.65rem;
    border: 1px solid rgba(16, 43, 64, 0.14);
    border-radius: 0.5rem;
    font: inherit;
}

.lf-options__note {
    margin: 0.75rem 0 0;
    color: #667783;
    font-size: 0.82rem;
}


.hero__layout {
    padding-top: 2.5rem;
}

/* Homepage hero capability strip */
.hero__trust {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0 !important;
    margin-top: 1.85rem !important;
    padding: 1.15rem 0 1.5rem !important;
    border-top: 1px solid rgba(16, 43, 64, 0.12) !important;
    border-bottom: 0 !important;
}

.hero__trust-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.75rem;
    row-gap: 0.15rem;
    align-items: start;
    padding: 0.35rem 1.15rem 0.35rem 10px;
    border: 0;
    border-right: 1px solid rgba(16, 43, 64, 0.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hero__trust-item:last-child {
    border-right: 0;
    padding-right: 0;
}

.hero__trust-item:first-child {
    padding-left: 0;
}

.hero__trust-index {
    grid-column: 1 / -1;
    margin-bottom: 0.35rem;
    color: #8a93a1;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    line-height: 1;
}

.hero__trust-icon {
    display: inline-grid;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    margin-top: 0.1rem;
    border-radius: 0.7rem;
    background: #eef2ff;
    color: #2456e8;
}

.hero__trust-icon svg {
    width: 1.05rem;
    height: 1.05rem;
}

.hero__trust-item strong {
    display: block;
    color: #102b40;
    font-size: 0.95rem;
    font-weight: 750;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.hero__trust-item small {
    display: block;
    margin-top: 0.25rem;
    color: #667783;
    font-size: 0.8rem;
    line-height: 1.4;
}

@media (max-width: 980px) {
    .hero__trust {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1rem 0 !important;
    }

    .hero__trust-item {
        padding: 0.55rem 1rem 0.55rem 0;
    }

    .hero__trust-item:nth-child(2n) {
        border-right: 0;
        padding-right: 0;
        padding-left: 1rem;
    }

    .hero__trust-item:nth-child(n + 3) {
        border-top: 1px solid rgba(16, 43, 64, 0.08);
        padding-top: 1rem;
    }
}

@media (max-width: 560px) {
    .hero__trust {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .hero__trust-item,
    .hero__trust-item:nth-child(2n) {
        border-right: 0;
        border-bottom: 1px solid rgba(16, 43, 64, 0.08);
        padding: 0.95rem 0;
    }

    .hero__trust-item:last-child {
        border-bottom: 0;
        padding-bottom: 0.2rem;
    }

    .hero__trust-item:nth-child(n + 3) {
        border-top: 0;
    }
}

/* Footer CTA actions — keep Explore + Start side by side */
.legacy-luxe-footer__headline {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1.5rem !important;
    align-items: start !important;
}

.legacy-luxe-footer__actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem;
    width: max-content;
    max-width: 100%;
    margin-top: 0.25rem;
}

.legacy-luxe-footer__actions .button {
    flex: 0 0 auto;
    white-space: nowrap;
}

@media (max-width: 560px) {
    .legacy-luxe-footer__actions {
        flex-wrap: wrap;
        width: 100%;
    }
}

/* Product page: Buy now + proof spacing */
.lf-btn.lf-btn--buy-now {
    border: 1.5px solid rgba(16, 43, 64, 0.18);
    background: #fff;
    color: var(--navy, #102b40);
    box-shadow: none;
}

.lf-btn.lf-btn--buy-now:hover {
    background: #f7f5f1;
    box-shadow: 0 10px 24px rgb(16 43 64 / 8%);
    transform: translateY(-2px);
}

.lf-sidebar .lf-btn.lf-btn--buy-now {
    margin-top: 0.65rem;
}

/* Product sidebar rating separator + include bullets */
.lf-sidebar__rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
}

.lf-sidebar__rating b {
    font-weight: 700;
    color: var(--navy, #102b40);
    font-style: normal;
}

.lf-sidebar__rating-sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.1rem;
    color: rgba(16, 43, 64, 0.35);
    font-style: normal;
    font-weight: 500;
    line-height: 1;
}

.lf-sidebar__rating em {
    font-style: normal;
    color: #5e707b;
}

.lf-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.lf-includes__bullet {
    flex: none;
    width: 0.85rem;
    color: var(--coral, #ed684e);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}
.lf-demos .lf-label{
    color: var(--navy, #102b40);
}

/* Homepage featured area — canvas wave hero */
.featured-area {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
    padding: calc(var(--header-height, 5.75rem) + 1px) 40px 80px;
    background: #fff;
    color: #0B0B14;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.featured-area *,
.featured-area *::before,
.featured-area *::after {
    box-sizing: border-box;
}

.featured-area__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.featured-area__hero {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
}

.featured-area__title {
    max-width: none;
    margin: 0;
    color: #0B0B14;
    font-family: inherit;
    font-size: clamp(2.6rem, 6.2vw, 74px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.035em;
    text-wrap: balance;
    padding: 0;
}

.featured-area__title-gradient {
    background: linear-gradient(100deg, #3B2AE0 0%, #6D3BEF 42%, #A855F7 78%, #D946A6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.featured-area__title em {
    font-style: normal;
    background: linear-gradient(100deg, #3B2AE0 0%, #6D3BEF 42%, #A855F7 78%, #D946A6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.featured-area__lead {
    max-width: 640px;
    margin: 22px auto 0;
    color: #54546A;
    font-size: clamp(1.05rem, 1.6vw, 19.5px);
    font-weight: 500;
    line-height: 1.6;
    text-wrap: pretty;
    letter-spacing: 1.1px;
}

.featured-area__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.featured-area__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 0;
    padding: 17px 30px;
    border: 1.5px solid rgba(79, 49, 232, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: #1B1636;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-area__btn:hover {
    border-color: #4F31E8;
    background: #fff;
    color: #1B1636;
}

.featured-area__btn--primary {
    border: 0;
    background: linear-gradient(135deg, #4F31E8, #8B45F0);
    color: #fff;
    box-shadow: 0 14px 34px rgba(79, 49, 232, 0.34);
}

.featured-area__btn--primary:hover {
    transform: translateY(-2px);
    color: #4F31E8;
    box-shadow: 0 20px 44px rgba(79, 49, 232, 0.42);
}

.featured-area__proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-top: 26px;
    color: #7A7A90;
    font-size: 13.5px;
    font-weight: 600;
}

.featured-area__proof i {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #D6D6E2;
}

.featured-area__features {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 106px auto 0;
    padding-top: 43px;
    border-top: 1px solid #e2e5ea;
}

.featured-area__feature {
    display: grid;
    grid-template-columns: 61px 1fr;
    gap: 22px;
    padding: 0 28px;
    border-right: 1px solid #dadee5;
}

.featured-area__feature:first-child {
    padding-left: 0;
}

.featured-area__feature:last-child {
    padding-right: 0;
    border-right: 0;
}

.featured-area__icon {
    display: grid;
    place-items: center;
    width: 57px;
    height: 57px;
    border-radius: 15px;
    background: #eeeaff;
    color: #253cdd;
}

.featured-area__feature:nth-child(2) .featured-area__icon {
    background: #ffe7f4;
    color: #f351ad;
}

.featured-area__feature:nth-child(3) .featured-area__icon {
    background: #eee7ff;
    color: #784dff;
}

.featured-area__feature:nth-child(4) .featured-area__icon {
    background: #ffede5;
    color: #ff8b48;
}

.featured-area__icon svg {
    display: block;
    width: 21px;
    height: 21px;
    max-width: none;
}

.featured-area__index {
    display: block;
    color: #3b51f4;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.featured-area__feature:nth-child(2) .featured-area__index {
    color: #f351ad;
}

.featured-area__feature:nth-child(3) .featured-area__index {
    color: #784dff;
}

.featured-area__feature:nth-child(4) .featured-area__index {
    color: #ff8b48;
}

.featured-area__feature-title {
    max-width: none;
    margin: 12px 0 9px;
    color: #07162a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
}

.featured-area__feature-copy {
    max-width: none;
    margin: 0;
    color: #69778b;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .featured-area__features {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .featured-area__feature,
    .featured-area__feature:first-child,
    .featured-area__feature:last-child {
        padding: 0;
        border-right: 0;
    }
}

@media (max-width: 650px) {
    .featured-area {
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 56px;
    }

    .featured-area__hero {
        padding-top: 48px;
    }

    .featured-area__title {
        font-size: clamp(2.15rem, 9vw, 2.75rem);
        letter-spacing: -0.04em;
    }

    .featured-area__lead {
        margin-top: 18px;
        font-size: 16px;
    }

    .featured-area__buttons {
        flex-direction: column;
        align-items: stretch;
        margin-top: 28px;
    }

    .featured-area__btn {
        width: 100%;
        white-space: normal;
    }

    .featured-area__proof {
        gap: 12px 18px;
        margin-top: 22px;
    }

    .featured-area__proof i {
        display: none;
    }

    .featured-area__features {
        grid-template-columns: 1fr;
        margin-top: 70px;
    }

    .featured-area__feature-title {
        white-space: normal;
    }
}

.theme-card--catalog .theme-card__copy h2{
    font-size: clamp(2rem, 2vw, 0.5rem);
    font-weight: 700;
    letter-spacing: unset;
    line-height: 1.2;
}

 .theme-grid .theme-card .theme-card__copy ul {
    display: none;
}

.wh-position{
    padding: 0rem 0 7rem;
}

.lf-options .lf-options__note {
    margin-inline: 24px;
}

.wh-store-card__copy h3 {
    font-size: clamp(1.2rem, 1.55vw, 1.55rem) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.03em !important;
}

.wh-store-card__copy p {
    display: none;
}

.wh-store-card__copy footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1.25rem;
}

.wh-store-card__copy footer > a {
    width: auto;
    justify-content: flex-start;
}

@media (max-width: 560px) {
    .wh-store-card__copy footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .wh-store-card__copy footer > a {
        width: 100%;
        justify-content: space-between;
    }
}

/*
 * Filter “open” animation used transform + fill-mode:both inside `.wh`
 * (overflow: clip). When the grid shrinks to one card, that transform
 * can clip the rest of the homepage. Keep a light fade only.
 */
.wh-library,
.wh-library__content,
.wh-library__grid {
    overflow: visible;
}

@keyframes wh-product-in {
    0% {
        opacity: 0;
        transform: none;
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

.wh-store-card.is-filtered-in {
    animation: wh-product-in 0.28s ease both;
    transform: none;
}

.lf-demos header p{
    max-width: max-content;
}


/* Smooth accordions — the body is animated by commerce-chrome.js. */
.lf-accordion__body {
    will-change: height;
}

.lf-options > summary,
.lf-specs > summary {
    list-style: none;
}

.lf-options > summary::-webkit-details-marker,
.lf-specs > summary::-webkit-details-marker {
    display: none;
}

.lf-options > summary svg,
.lf-specs > summary svg {
    transition: transform 0.26s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lf-options[open] > summary svg,
.lf-specs[open] > summary svg {
    transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
    .lf-options > summary svg,
    .lf-specs > summary svg {
        transition: none;
    }
}
/* ---------------------------------------------------------------------------
 * Homepage library heading.
 *
 * Keep the original 3-column layout + type scale. Only ensure the Themes Store
 * label stays on one line (it is longer than "product store").
 * ------------------------------------------------------------------------- */
.wh-library__head {
    grid-template-columns: max-content minmax(0, 1fr) minmax(260px, 0.42fr);
}

.wh-library__head > div {
    flex-wrap: nowrap;
}

.wh-library__head > div p {
    white-space: nowrap;
}

.wh-library__head h2 {
    overflow-wrap: break-word;
}

/* Replaces the <br> that used to be hardcoded in the markup. */
.wh-library__head h2 em {
    display: block;
}

@media (max-width: 1100px) {
    .wh-library__head {
        grid-template-columns: max-content minmax(0, 1fr);
    }

    .wh-library__head > p {
        grid-column: 2;
    }

    .wh-library__layout {
        grid-template-columns: 250px minmax(0, 1fr);
    }

    .wh-store-card__copy ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .wh-library__head h2 {
        font-size: clamp(2rem, 5.4vw, 3.4rem);
        letter-spacing: -0.04em;
    }
}

@media (max-width: 820px) {
    .wh-library__head,
    .wh-library__layout,
    .wh-library__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .wh-library__head > p {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    .wh-library__head h2 {
        font-size: clamp(1.85rem, 8.2vw, 2.5rem);
        line-height: 1.02;
        letter-spacing: -0.03em;
    }

    /* Too narrow to spare a line break — let the whole heading flow. */
    .wh-library__head h2 em {
        display: inline;
    }

    .wh-library__head > div p {
        white-space: normal;
    }

    .wh-store-card__copy ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Grid and flex items default to min-width:auto, which lets wide content prise
   the track open instead of scrolling within it. */
.wh-library__layout > *,
.wh-library__head > *,
.wh-library__grid > *,
.wh-library__rail,
.wh-library__filters {
    min-width: 0;
}

/* The chip row scrolls inside the rail rather than widening the page. */
.wh-library__filters {
    max-width: 100%;
}
.wh-library__content a.wh-store-card__cart-btn {
    width: 36px;
    height: 36px;
    color: #fff;
    justify-content: center;
}
/* ---------------------------------------------------------------------------
 * "How our service works" — numbered delivery process.
 * ------------------------------------------------------------------------- */
.lf-process {
    padding-top: 96px;
}

.lf-process > h2 {
    max-width: 720px;
    margin: 0 0 2.4rem;
    color: var(--navy, #102b40);
    font-size: clamp(1.75rem, 2.6vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.lf-process__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.lf-process__grid article {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 13.5rem;
    padding: 2.2rem 2.4rem;
    overflow: hidden;
    border: 1px solid var(--line, rgba(16, 43, 64, 0.14));
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 12px 34px rgb(16 43 64 / 5%);
}

/* The tinted band the number sits on. */
.lf-process__grid article::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    background: linear-gradient(90deg, #fff 0%, #f4f6fd 100%);
    content: "";
    pointer-events: none;
}

.lf-process__grid article > div {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.lf-process__grid h3 {
    margin: 0 0 0.75rem;
    color: var(--navy, #102b40);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.lf-process__grid p {
    margin: 0;
    max-width: 30ch;
    color: var(--muted, #667783);
    font-size: 0.95rem;
    line-height: 1.62;
}

.lf-process__grid b {
    position: relative;
    z-index: 1;
    display: grid;
    flex: none;
    width: 4.15rem;
    height: 4.15rem;
    place-items: center;
    border-radius: 50%;
    background: #eef1fa;
    color: var(--navy, #102b40);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 900px) {
    .lf-process {
        padding-top: 68px;
    }

    .lf-process__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 560px) {
    .lf-process__grid article {
        min-height: 0;
        padding: 1.6rem 1.5rem;
    }

    .lf-process__grid p {
        max-width: none;
    }

    .lf-process__grid b {
        width: 3.2rem;
        height: 3.2rem;
        font-size: 1.25rem;
    }
}

/* Optional upgrades — rows with no product behind them are informational, not tickable. */
.lf-options__row--static {
    cursor: default;
}

.lf-options__marker {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border: 1px solid var(--line, rgba(16, 43, 64, 0.14));
    border-radius: 0.3rem;
    color: var(--muted, #667783);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
}

.lf-options__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 26px;
    padding: 13px 0;
    border-top: 1px solid var(--line, rgba(16, 43, 64, 0.14));
    color: var(--navy, #102b40);
    font-size: 0.8rem;
    font-weight: 700;
}

.lf-options__total strong {
    color: var(--coral, #ed684e);
    font-size: 0.86rem;
}

/* Capabilities section heading — matches the review section's scale. */
.lf-capabilities h2 {
    max-width: 620px;
    margin: 0 0 34px;
    color: var(--navy, #102b40);
    font-size: clamp(2.05rem, 2.85vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

@media (max-width: 600px) {
    .lf-capabilities h2 {
        margin-bottom: 26px;
        font-size: clamp(1.95rem, 9vw, 2.5rem);
    }
}
.lf-product__content .lf-demos{
    padding-top:0px !important;
}

.product__content .lf-capabilities{
    padding-top:0px !important;
}

.wh-store-card__visual>span{
    display:none;
}

.wh-store-card__visual:after{
    display:none
}

.wh-position__copy.is-revealed{
    margin: 0;
}

.wh-store-card__copy ul{
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-top: 0.5rem;
 
}

.wh-store-card__copy li{
    min-height: 25px;
}

/* Hide header on scroll down, reveal on scroll up */
.webinane-header {
    transition:
        transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
        height var(--transition, 0.3s ease),
        background var(--transition, 0.3s ease),
        box-shadow var(--transition, 0.3s ease) !important;
    will-change: transform;
}

.webinane-header.is-scroll-away {
    transform: translateY(-110%) !important;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .webinane-header,
    .webinane-header.is-scroll-away {
        transition: none !important;
        transform: none !important;
        pointer-events: auto;
    }
}

/* Category marketplace cards — hover for box, icon, and arrow */
.wh-category {
    transition:
        transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background-color 0.35s ease !important;
}

.wh-category:hover {
    transform: translateY(-8px);
    border-color: #aeb8c6;
    box-shadow: 0 28px 70px rgb(17 28 45 / 16%);
}

.wh-category--navy:hover {
    border-color: #2a3d5c;
    box-shadow: 0 28px 70px rgb(8 14 28 / 35%);
}

.wh-category--warm:hover {
    border-color: #d4c2a8;
    box-shadow: 0 28px 70px rgb(80 55 30 / 14%);
}

.wh-category__icon {
    transition:
        transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        background-color 0.35s ease,
        border-color 0.35s ease;
}

.wh-category:hover .wh-category__icon {
    transform: translateY(-3px) scale(1.06);
    background-color: rgb(36 86 232 / 8%);
    border-color: #2456e8;
}

.wh-category--navy:hover .wh-category__icon {
    background-color: rgb(255 255 255 / 10%);
    border-color: #fff;
}

.wh-category--warm:hover .wh-category__icon {
    background-color: rgb(36 86 232 / 10%);
    border-color: #2456e8;
}

.wh-category__link {
    opacity: 0.85;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.wh-category__link b {
    display: inline-grid;
    place-items: center;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 999px;
    background: rgb(16 27 45 / 6%);
    font-weight: 700;
    transition:
        transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        background-color 0.3s ease,
        color 0.3s ease;
}

.wh-category--navy .wh-category__link b {
    background: rgb(255 255 255 / 12%);
}

.wh-category:hover .wh-category__link {
    opacity: 1;
}

.wh-category:hover .wh-category__link b {
    transform: translate(3px, -3px);
    background: #2456e8;
    color: #fff;
}

.wh-category--navy:hover .wh-category__link b {
    background: #fff;
    color: #111d31;
}

@media (prefers-reduced-motion: reduce) {
    .wh-category,
    .wh-category__icon,
    .wh-category__link b {
        transition: none !important;
    }

    .wh-category:hover,
    .wh-category:hover .wh-category__icon,
    .wh-category:hover .wh-category__link b {
        transform: none;
    }
}
