:root {
    --fz-primary:#5b3df5;
    --fz-primary-soft:#eeeaff;
    --fz-border:#e6e8ee;
    --fz-text:#172033;
    --fz-soft:#667085;
    --fz-sidebar:268px;
    --fz-topbar:72px
}

* {
    box-sizing:border-box
}

body {
    margin:0;
    font-family:Inter,Segoe UI,Arial,sans-serif;
    color:var(--fz-text);
    background:#f7f8fb
}

a {
    text-decoration:none;
    color:inherit
}

.fz-store-shell {
    min-height:100vh
}

.fz-sidebar {
    position:fixed;
    inset:0 auto 0 0;
    width:var(--fz-sidebar);
    background:#fff;
    border-right:1px solid var(--fz-border);
    display:flex;
    flex-direction:column;
    z-index:1000
}

.fz-sidebar-brand {
    height:var(--fz-topbar);
    display:flex;
    align-items:center;
    padding:12px 20px;
    border-bottom:1px solid var(--fz-border)
}

.fz-brand-link {
    display:flex;
    gap:12px;
    align-items:center
}

.fz-brand-icon,.fz-user-avatar {
    display:grid;
    place-items:center;
    width:40px;
    height:40px;
    border-radius:12px;
    background:var(--fz-primary);
    color:#fff;
    font-weight:800
}

.fz-brand-text,.fz-user-info {
    display:flex;
    flex-direction:column
}

.fz-brand-text span,.fz-user-info span {
    font-size:12px;
    color:var(--fz-soft)
}

.fz-sidebar-nav {
    padding:14px 12px;
    flex:1
}

.fz-nav-section {
    margin-bottom:24px
}

.fz-nav-section-title {
    padding:8px 12px;
    font-size:11px;
    color:var(--fz-soft);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em
}

.fz-nav-link {
    display:flex;
    gap:11px;
    padding:11px 12px;
    border-radius:10px;
    margin:3px 0
}

.fz-nav-link:hover,.fz-nav-link.is-active {
    background:var(--fz-primary-soft);
    color:var(--fz-primary);
    font-weight:700
}

.fz-sidebar-user {
    display:flex;
    gap:10px;
    padding:16px;
    border-top:1px solid var(--fz-border)
}

.fz-store-main {
    margin-left:var(--fz-sidebar);
    min-height:100vh
}

.fz-topbar {
    height:var(--fz-topbar);
    position:sticky;
    top:0;
    z-index:900;
    background:rgba(255,255,255,.96);
    border-bottom:1px solid var(--fz-border);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 30px;
    gap:20px
}

.fz-topbar-left,.fz-topbar-actions {
    display:flex;
    align-items:center;
    gap:12px
}

.fz-topbar-left {
    flex:1
}

.fz-icon-button {
    width:42px;
    height:42px;
    border:1px solid var(--fz-border);
    background:#fff;
    border-radius:11px;
    cursor:pointer
}

.fz-global-search {
    max-width:620px;
    flex:1;
    height:44px;
    border:1px solid var(--fz-border);
    border-radius:12px;
    background:#fff;
    display:flex;
    align-items:center;
    padding:0 14px;
    gap:10px
}

.fz-global-search input {
    border:0;
    outline:0;
    width:100%;
    font-size:14px
}

.fz-cart-button,.fz-account-button,.fz-button {
    border:1px solid var(--fz-border);
    background:#fff;
    border-radius:10px;
    padding:11px 16px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer
}

.fz-cart-button strong {
    background:var(--fz-primary);
    color:#fff;
    border-radius:999px;
    padding:2px 7px;
    margin-left:7px
}

.fz-account-button,.fz-button-primary {
    background:var(--fz-primary);
    color:#fff;
    border-color:var(--fz-primary)
}

.fz-page-header,
.fz-page-content {
    width: 100%;

    max-width: 1180px;

    margin-left: auto;

    margin-right: auto;
}

.fz-page-header {
    margin-bottom: 32px;
}

.fz-page-eyebrow {
    color:var(--fz-primary);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.09em
}

.fz-page-header h1 {
    font-size:36px;
    margin:8px 0
}

.fz-page-header p {
    color:var(--fz-soft);
    font-size:17px;
    margin:0
}

.fz-page-content {
    max-width:1250px;
    margin:auto
}

.store-hero {
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:48px;
    padding:56px;
    border-radius:24px;
    background:linear-gradient(135deg,#17122d,#5b3df5);
    color:#fff;
    overflow:hidden
}

.store-hero h2 {
    font-size:48px;
    line-height:1.05;
    margin:18px 0
}

.store-hero p {
    font-size:18px;
    line-height:1.6;
    color:#e8e3ff
}

.store-pill {
    display:inline-block;
    padding:7px 11px;
    border-radius:999px;
    background:rgba(255,255,255,.14);
    font-size:12px;
    font-weight:800
}

.store-hero-actions {
    display:flex;
    gap:12px;
    margin-top:26px
}

.store-hero .fz-button-primary {
    background:#fff;
    color:var(--fz-primary)
}

.store-hero .fz-button {
    border-color:rgba(255,255,255,.35)
}

.store-hero-art {
    position:relative;
    min-height:290px;
    display:grid;
    place-items:center
}

.store-orbit {
    width:120px;
    height:120px;
    border-radius:32px;
    background:#fff;
    color:var(--fz-primary);
    display:grid;
    place-items:center;
    font-size:58px;
    font-weight:900;
    box-shadow:0 30px 80px #0005
}

.store-hero-art span {
    position:absolute;
    padding:12px 16px;
    border-radius:12px;
    background:#fff2
}

.store-hero-art span:nth-of-type(1) {
    top:20px;
    left:15px
}

.store-hero-art span:nth-of-type(2) {
    top:35px;
    right:10px
}

.store-hero-art span:nth-of-type(3) {
    bottom:35px;
    left:5px
}

.store-hero-art span:nth-of-type(4) {
    bottom:15px;
    right:25px
}

.store-section {
    margin-top:42px
}

.store-section-heading {
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:18px
}

.store-section-heading span {
    color:var(--fz-primary);
    font-weight:800;
    font-size:12px;
    text-transform:uppercase
}

.store-section-heading h2 {
    margin:5px 0;
    font-size:28px
}


.store-product-card,.store-plan-card,.store-info-grid article {
    background:#fff;
    border:1px solid var(--fz-border);
    border-radius:18px;
    padding:24px
}

.store-product-card {
    display:grid;
    grid-template-columns:auto 1fr;
    gap:18px
}

.store-product-icon {
    width:58px;
    height:58px;
    border-radius:16px;
    display:grid;
    place-items:center;
    color:#fff;
    font-size:24px;
    font-weight:900
}

.tone-blue {
    background:#3478f6
}

.tone-violet {
    background:#7758f6
}

.tone-green {
    background:#19a974
}

.tone-orange {
    background:#f28c28
}

.tone-teal {
    background:#139e9e
}

.tone-slate {
    background:#56627a
}

.store-product-meta span {
    color:var(--fz-soft);
    font-size:12px;
    font-weight:700
}

.store-product-meta h2 {
    margin:5px 0 8px
}

.store-product-meta p {
    color:var(--fz-soft);
    line-height:1.55;
    margin:0
}

.store-product-footer {
    grid-column:1/-1;
    border-top:1px solid var(--fz-border);
    padding-top:16px;
    display:flex;
    justify-content:space-between
}

.store-product-footer a {
    color:var(--fz-primary);
    font-weight:700
}

.store-filter-bar {
    display:flex;
    gap:8px;
    margin-bottom:18px
}

.store-filter-bar button {
    padding:9px 14px;
    border:1px solid var(--fz-border);
    background:#fff;
    border-radius:999px
}

.store-filter-bar .is-active {
    background:var(--fz-primary);
    color:#fff
}

.store-product-detail {
    background:#fff;
    border:1px solid var(--fz-border);
    border-radius:22px;
    padding:44px;
    display:grid;
    grid-template-columns:auto 1fr;
    gap:32px
}

.store-product-icon-large {
    width:110px;
    height:110px;
    font-size:48px;
    border-radius:26px
}

.store-product-detail h2 {
    font-size:38px;
    margin:14px 0
}

.store-product-detail p {
    color:var(--fz-soft);
    font-size:18px;
    line-height:1.6
}

.store-price {
    display:block;
    font-size:22px;
    margin:20px 0
}

.store-plan-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px
}

.store-plan-card {
    position:relative
}

.store-plan-card.is-featured {
    border:2px solid var(--fz-primary)
}

.store-plan-badge {
    position:absolute;
    top:-13px;
    right:18px;
    background:var(--fz-primary);
    color:#fff;
    padding:6px 10px;
    border-radius:999px;
    font-size:11px;
    font-weight:800
}

.store-plan-price strong {
    font-size:34px
}

.store-plan-price span {
    color:var(--fz-soft)
}

.store-plan-card ul {
    list-style:none;
    padding:0;
    line-height:2
}

.store-cart-list {
    display:grid;
    gap:14px
}

.store-cart-list article {
    background:#fff;
    border:1px solid var(--fz-border);
    border-radius:16px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:18px
}

.store-cart-list article div:nth-child(2) {
    flex:1
}

.store-cart-list button {
    border:0;
    background:none;
    color:#c33;
    cursor:pointer
}

.store-empty {
    text-align:center;
    background:#fff;
    border:1px solid var(--fz-border);
    border-radius:20px;
    padding:64px
}

.store-empty>div {
    font-size:42px
}

.store-info-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px
}

.store-info-grid p {
    color:var(--fz-soft);
    line-height:1.6
}

.fz-footer {
    padding:24px 32px;
    color:var(--fz-soft);
    font-size:13px
}

@media(max-width:900px) {
    .fz-sidebar {
        transform:translateX(-100%);
        transition:.2s
    }
    .fz-sidebar.is-open {
        transform:none
    }
    .fz-store-main {
        margin-left:0
    }
    .store-hero {
        grid-template-columns:1fr;
        padding:32px
    }
    .store-product-grid,.store-plan-grid,.store-info-grid {
        grid-template-columns:1fr
    }
    .fz-account-button {
        display:none
    }
    .store-product-detail {
        grid-template-columns:1fr
    }
}

.store-help-grid {
    display: grid;

    grid-template-columns: repeat(
        auto-fit,
        minmax(
            260px,
            1fr
        )
    );

    gap: 24px;
}

.store-help-card {
    display: flex;

    flex-direction: column;

    min-height: 310px;

    padding: 28px;

    background: var(--store-surface);

    border: 1px solid var(--store-border);

    border-radius: var(--store-radius);

    box-shadow: var(--store-shadow);
}

.store-help-card__number {
    margin-bottom: 22px;

    color: var(--store-primary);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.1em;
}

.store-help-card__title {
    margin: 0;

    font-size: 24px;
}

.store-help-card__text {
    flex: 1;

    margin: 16px 0 24px;

    color: var(--store-muted);

    line-height: 1.65;
}

.store-help-contact {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 32px;

    margin-top: 40px;

    padding: 32px;

    background: var(--store-surface);

    border: 1px solid var(--store-border);

    border-radius: var(--store-radius);

    box-shadow: var(--store-shadow);
}

.store-help-contact h2 {
    margin: 0;

    font-size: 28px;
}

.store-help-contact p {
    margin: 14px 0 0;

    color: var(--store-muted);

    line-height: 1.65;
}

@media (max-width: 720px) {
    .store-help-contact {
        align-items: stretch;

        flex-direction: column;
    }

    .store-help-contact .store-button {
        width: 100%;
    }
}

.fz-store-shell {
    min-height: 100vh;
}

.fz-sidebar {
    position: fixed;

    top: 0;
    bottom: 0;
    left: 0;

    width: var(--fz-sidebar);

    min-width: var(--fz-sidebar);

    overflow: hidden;

    transition:
        transform 220ms ease,
        opacity 180ms ease;

    z-index: 1000;
}

.fz-store-main {
    min-width: 0;

    margin-left: var(--fz-sidebar);

    transition:
        margin-left 220ms ease;
}

body.fz-sidebar-collapsed .fz-sidebar {
    transform: translateX(-100%);

    opacity: 0;

    pointer-events: none;
}

body.fz-sidebar-collapsed .fz-store-main {
    margin-left: 0;
}

/*
|--------------------------------------------------------------------------
| Contenu principal
|--------------------------------------------------------------------------
*/

.fz-store-content {
    width: 100%;

    padding:
        52px
        clamp(
            44px,
            5vw,
            88px
        )
        72px;
}

.fz-page-header,
.fz-page-content {
    width: 100%;

    max-width: 1180px;

    margin-right: auto;

    margin-left: auto;
}

.fz-page-header {
    margin-bottom: 36px;
}


/*
|--------------------------------------------------------------------------
| Bouton burger
|--------------------------------------------------------------------------
*/

.store-menu-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 46px;

    flex-direction: column;

    gap: 5px;

    width: 46px;

    height: 46px;

    margin: 0;

    padding: 0;

    appearance: none;

    background: #ffffff;

    border: 1px solid var(--fz-border);

    border-radius: 12px;

    color: var(--fz-text);

    cursor: pointer;

    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        transform 160ms ease;
}

.store-menu-button:hover {
    background: var(--fz-primary-soft);

    border-color: rgba(
        91,
        61,
        245,
        0.35
    );
}

.store-menu-button:active {
    transform: scale(0.96);
}

.store-menu-button:focus-visible {
    outline: 3px solid rgba(
        91,
        61,
        245,
        0.2
    );

    outline-offset: 2px;
}

.store-menu-icon {
    display: flex;

    width: 20px;

    height: 16px;

    flex-direction: column;

    align-items: stretch;

    justify-content: space-between;

    background: transparent;
}

.store-menu-icon > span {
    display: block;

    width: 20px;

    height: 2px;

    min-height: 2px;

    margin: 0;

    padding: 0;

    background: currentColor;

    border: 0;

    border-radius: 999px;
}


/*
|--------------------------------------------------------------------------
| Barre latérale
|--------------------------------------------------------------------------
*/

.fz-sidebar {
    position: fixed;

    top: 0;

    bottom: 0;

    left: 0;

    width: var(--fz-sidebar);

    min-width: var(--fz-sidebar);

    transition:
        transform 220ms ease,
        opacity 180ms ease;
}

.fz-store-main {
    min-width: 0;

    margin-left: var(--fz-sidebar);

    transition:
        margin-left 220ms ease;
}

body.fz-sidebar-collapsed .fz-sidebar {
    opacity: 0;

    pointer-events: none;

    transform: translateX(-100%);
}

body.fz-sidebar-collapsed .fz-store-main {
    margin-left: 0;
}


/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 900px) {
    .fz-sidebar {
        opacity: 1;

        pointer-events: auto;

        transform: translateX(-100%);

        box-shadow:
            18px 0 45px
            rgba(23, 32, 51, 0.2);
    }

    body.fz-sidebar-open .fz-sidebar,
    .fz-sidebar.is-open {
        transform: translateX(0);
    }

    .fz-store-main {
        margin-left: 0;
    }

    body.fz-sidebar-collapsed .fz-sidebar {
        opacity: 1;

        pointer-events: auto;
    }

    .fz-store-content {
        padding:
            34px
            20px
            52px;
    }
}

/*
|--------------------------------------------------------------------------
| Nouvelle carte produit
|--------------------------------------------------------------------------
*/

.store-product-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(
                340px,
                380px
            )
        );

    align-items: start;

    justify-content: start;

    gap: 24px;
}

.store-product-card-new {
    position: relative;

    display: flex;

    width: 100%;

    max-width: 380px;

    min-height: 350px;

    flex-direction: column;

    overflow: hidden;

    padding: 30px;

    background: #ffffff;

    border: 1px solid var(--fz-border);

    border-radius: 22px;

    box-shadow:
        0 12px 34px
        rgba(23, 32, 51, 0.06);

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.store-product-card-new::before {
    content: "";

    position: absolute;

    top: 0;

    right: 0;

    width: 190px;

    height: 190px;

    background:
        radial-gradient(
            circle,
            rgba(91, 61, 245, 0.12),
            rgba(91, 61, 245, 0)
        );

    transform:
        translate(
            35%,
            -35%
        );

    pointer-events: none;
}

.store-product-card-new:hover {
    transform: translateY(-4px);

    border-color:
        rgba(
            91,
            61,
            245,
            0.35
        );

    box-shadow:
        0 22px 50px
        rgba(23, 32, 51, 0.11);
}

.store-product-card-new__top {
    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr);

    align-items: flex-start;

    gap: 22px;
}

.store-product-icon-new {
    display: grid;

    width: 78px;

    height: 78px;

    flex: 0 0 78px;

    place-items: center;

    overflow: hidden;

    border-radius: 21px;

    color: #ffffff;

    font-size: 21px;

    font-weight: 900;

    letter-spacing: -0.04em;

    box-shadow:
        0 14px 30px
        rgba(35, 27, 91, 0.18);
}

.store-product-icon-new span {
    display: block;

    line-height: 1;
}

.store-product-icon--go {
    background:
        linear-gradient(
            145deg,
            #6d4aff,
            #3d25d7
        );
}

.store-product-icon--default {
    background:
        linear-gradient(
            145deg,
            #273653,
            #172033
        );
}

.store-product-card-new__heading {
    min-width: 0;
}

.store-product-card-new__badges {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 12px;
}

.store-product-badge {
    display: inline-flex;

    align-items: center;

    min-height: 26px;

    padding: 4px 9px;

    color: #667085;

    background: #f2f4f7;

    border: 1px solid #e4e7ec;

    border-radius: 999px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.03em;

    text-transform: uppercase;
}

.store-product-badge--featured {
    color: var(--fz-primary);

    background: var(--fz-primary-soft);

    border-color:
        rgba(
            91,
            61,
            245,
            0.18
        );
}

.store-product-card-new h2 {
    margin: 0;

    color: var(--fz-text);

    font-size: 28px;

    line-height: 1.15;
}

.store-product-card-new__heading p {
    margin: 12px 0 0;

    color: var(--fz-soft);

    font-size: 15px;

    line-height: 1.65;
}

.store-product-card-new__features {
    position: relative;

    z-index: 1;

    display: grid;

    gap: 10px;

    margin-top: 28px;

    padding:
        20px
        22px;

    background: #f8f9fc;

    border: 1px solid #eceef4;

    border-radius: 16px;
}

.store-product-card-new__features span {
    position: relative;

    display: block;

    padding-left: 24px;

    color: #536078;

    font-size: 13px;

    line-height: 1.5;
}

.store-product-card-new__features span::before {
    content: "✓";

    position: absolute;

    top: 0;

    left: 0;

    color: var(--fz-primary);

    font-weight: 900;
}

.store-product-card-new__features strong {
    color: var(--fz-text);
}

.store-product-card-new__footer {
    position: relative;

    z-index: 1;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 16px;

    margin-top: auto;

    padding-top: 28px;
}

.store-product-link {
    color: var(--fz-text);

    font-size: 14px;

    font-weight: 750;
}

.store-product-link:hover {
    color: var(--fz-primary);
}

@media (max-width: 900px) {
    .store-product-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );
    }

    .store-product-card-new {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .store-product-grid {
        grid-template-columns: 1fr;
    }

    .store-product-card-new {
        width: 100%;

        max-width: none;

        min-height: 0;

        padding: 24px;
    }

    .store-product-card-new__top {
        grid-template-columns: 1fr;
    }

    .store-product-icon-new {
        width: 66px;

        height: 66px;

        font-size: 18px;
    }

    .store-product-card-new__footer {
        align-items: stretch;

        flex-direction: column;
    }

    .store-product-card-new__footer .fz-button,
    .store-product-link {
        width: 100%;

        justify-content: center;

        text-align: center;
    }
}

.store-product-icon-new img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;
}

.store-product-detail {
    margin-top: 18px;
    margin-bottom: 30px;
}

.store-product-detail__content {
    max-width: 760px;
}

.store-product-detail__benefits {
    margin: 22px 0 0;
    padding-left: 26px;
}

.store-product-detail__benefits li {
    margin-bottom: 10px;
    color: var(--fz-text);
    font-size: 16px;
    line-height: 1.55;
}

.store-plan-section {
    margin-top: 26px;
}

.store-plan-section__header {
    margin-bottom: 28px;
}

.store-plan-section__header h2 {
    margin: 0;
    color: var(--fz-text);
    font-size: 28px;
    line-height: 1.15;
}

.store-plan-section__header p {
    margin: 12px 0 0;
    color: var(--fz-soft);
    font-size: 16px;
}

.store-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.store-plan-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 34px 34px 26px;
    border-radius: 28px;
    border: 1px solid var(--fz-border);
    background: #ffffff;
    box-shadow: 0 10px 32px rgba(23, 32, 51, 0.06);
}

.store-plan-card--light {
    background: #ffffff;
    color: var(--fz-text);
}

.store-plan-card--featured {
    background: linear-gradient(180deg, #3362e0 0%, #244fc4 100%);
    color: #ffffff;
    border-color: rgba(36, 79, 196, 0.5);
}

.store-plan-card--dark {
    background: #ffffff;
    color: var(--fz-text);
}

.store-plan-card__top h3 {
    margin: 22px 0 0;
    font-size: 26px;
    line-height: 1.15;
}

.store-plan-card__description {
    margin: 14px 0 0;
    font-size: 15px;
    line-height: 1.6;
    color: inherit;
    opacity: 0.88;
}

.store-plan-card__badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.store-plan-pill {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #eef2fb;
    color: #3464e7;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.store-plan-card--featured .store-plan-pill {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.store-plan-pill--recommended {
    background: #ffffff;
    color: #244fc4 !important;
}

.store-plan-card__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 42px;
}

.store-plan-card__price strong {
    font-size: 48px;
    line-height: 1;
    font-weight: 900;
}

.store-plan-card__price span {
    font-size: 15px;
    opacity: 0.9;
}

.store-plan-card__features {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.store-plan-card__features li {
    position: relative;
    margin-bottom: 16px;
    padding-left: 28px;
    font-size: 15px;
    line-height: 1.55;
}

.store-plan-card__features li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: #13a85b;
    font-weight: 900;
}

.store-plan-card--featured .store-plan-card__features li::before {
    color: #7df0ac;
}

.store-plan-card__footer {
    margin-top: auto;
    padding-top: 28px;
}

.store-plan-card__form {
    width: 100%;
}

.store-plan-card__button {
    display: inline-flex;
    width: 100%;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 0;
    border-radius: 18px;
    background: #eef2fb;
    color: #2754d3;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease, opacity 160ms ease;
}

.store-plan-card__button:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}

.store-plan-card--featured .store-plan-card__button {
    background: #ffffff;
    color: #244fc4;
}

.store-plan-card--dark .store-plan-card__button {
    background: #17284a;
    color: #ffffff;
}

@media (max-width: 1180px) {
    .store-plan-grid {
        grid-template-columns: 1fr;
    }
}

.store-cart-list article {
    background: #ffffff;

    border: 1px solid var(--fz-border);

    border-radius: 16px;

    padding: 18px;

    display: flex;

    align-items: center;

    gap: 18px;
}

.store-cart-checkout {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 32px;

    margin-top: 24px;

    padding: 26px 30px;

    background: #ffffff;

    border: 1px solid var(--fz-border);

    border-radius: 18px;

    box-shadow:
        0 10px 28px
        rgba(23, 32, 51, 0.05);
}

.store-cart-checkout__summary {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.store-cart-checkout__summary div {
    display: flex;

    align-items: baseline;

    gap: 18px;
}

.store-cart-checkout__summary span {
    color: var(--fz-soft);

    font-size: 14px;
}

.store-cart-checkout__summary strong {
    color: var(--fz-text);

    font-size: 24px;
}

.store-cart-checkout__summary p {
    margin: 0;

    color: var(--fz-soft);

    font-size: 13px;
}

.store-cart-checkout__form {
    margin: 0;
}

.store-cart-checkout__button {
    min-width: 220px;

    min-height: 52px;

    font-size: 16px;
}

@media (max-width: 720px) {
    .store-cart-checkout {
        align-items: stretch;

        flex-direction: column;
    }

    .store-cart-checkout__form,
    .store-cart-checkout__button {
        width: 100%;
    }
}

.store-checkout-error {
    margin-bottom: 20px;

    padding: 14px 18px;

    color: #8a1c1c;

    background: #fff2f2;

    border: 1px solid #f2caca;

    border-radius: 12px;

    font-size: 14px;
}


/*
|--------------------------------------------------------------------------
| Correctif final — grille des applications
|--------------------------------------------------------------------------
*/

.store-product-grid {
    display: grid !important;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        ) !important;

    align-items: stretch !important;
    justify-content: stretch !important;

    gap: 24px !important;
}

.store-product-card-new {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    height: 100%;
}

/* Grand écran */
@media (min-width: 1560px) {
    .store-product-grid {
        grid-template-columns:
            repeat(
                4,
                minmax(0, 1fr)
            ) !important;
    }
}

/* Très grand écran, comme ton 27 pouces */
@media (min-width: 1850px) {
    .store-product-grid {
        grid-template-columns:
            repeat(
                5,
                minmax(0, 1fr)
            ) !important;
    }
}

/* Tablette et petit laptop */
@media (max-width: 1050px) {
    .store-product-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            ) !important;
    }
}

/* Mobile */
@media (max-width: 720px) {
    .store-product-grid {
        grid-template-columns: 1fr !important;
    }
}

/*
|--------------------------------------------------------------------------
| Filtres des produits et forfaits
|--------------------------------------------------------------------------
*/

.store-section__header,
.store-plan-section__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;

    margin-bottom: 24px;
}

.store-section__header > div,
.store-plan-section__header > div {
    min-width: 0;
}

.store-section__header h1,
.store-plan-section__header h2 {
    margin: 0;

    color: var(--fz-text);

    font-size: 30px;
    line-height: 1.2;
}

.store-section__header p,
.store-plan-section__header p {
    max-width: 760px;

    margin: 10px 0 0;

    color: var(--fz-soft);

    font-size: 16px;
    line-height: 1.55;
}

.store-section__count,
.store-plan-section__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;
    padding: 7px 14px;

    white-space: nowrap;

    color: var(--fz-soft);

    background: #ffffff;

    border: 1px solid var(--fz-border);
    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;
}

/*
|--------------------------------------------------------------------------
| Formulaire de filtres
|--------------------------------------------------------------------------
*/

.store-plan-filters {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                145px,
                1fr
            )
        )
        minmax(
            100px,
            0.7fr
        )
        auto;

    align-items: end;

    gap: 16px;

    width: 100%;

    margin: 0 0 28px;
    padding: 20px;

    background: #ffffff;

    border: 1px solid var(--fz-border);
    border-radius: 18px;

    box-shadow:
        0 10px 28px
        rgba(
            23,
            32,
            51,
            0.05
        );
}

.store-plan-filters__field {
    display: grid;
    gap: 7px;

    min-width: 0;
}

.store-plan-filters__field label {
    display: block;

    margin: 0;

    color: var(--fz-soft);

    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.02em;
}

.store-plan-filters__field select {
    display: block;

    width: 100%;
    min-width: 0;
    height: 46px;

    margin: 0;
    padding:
        0
        38px
        0
        13px;

    appearance: auto;

    color: var(--fz-text);

    background-color: #ffffff;

    border: 1px solid var(--fz-border);
    border-radius: 11px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        border-color 150ms ease,
        box-shadow 150ms ease;
}

.store-plan-filters__field select:hover {
    border-color:
        rgba(
            91,
            61,
            245,
            0.45
        );
}

.store-plan-filters__field select:focus {
    border-color: var(--fz-primary);

    outline: none;

    box-shadow:
        0 0 0 3px
        rgba(
            91,
            61,
            245,
            0.13
        );
}

.store-plan-filters__actions {
    display: flex;
    align-items: center;
    gap: 10px;

    min-height: 46px;
}

.store-plan-filters__actions .fz-button {
    min-height: 46px;
    padding: 0 18px;

    white-space: nowrap;
}

.store-plan-filters__reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 14px;

    white-space: nowrap;

    color: var(--fz-soft);

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition:
        color 150ms ease,
        background-color 150ms ease;
}

.store-plan-filters__reset:hover {
    color: var(--fz-primary);

    background:
        rgba(
            91,
            61,
            245,
            0.08
        );
}

/*
|--------------------------------------------------------------------------
| Pagination
|--------------------------------------------------------------------------
*/

.store-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 32px;
}

.store-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 42px;
    min-height: 42px;
    padding: 0 13px;

    color: var(--fz-text);

    background: #ffffff;

    border: 1px solid var(--fz-border);
    border-radius: 10px;

    font-size: 14px;
    font-weight: 750;

    transition:
        color 150ms ease,
        border-color 150ms ease,
        background-color 150ms ease;
}

.store-pagination a:hover {
    color: var(--fz-primary);

    border-color: var(--fz-primary);
}

.store-pagination a.is-current {
    color: #ffffff;

    background: var(--fz-primary);

    border-color: var(--fz-primary);
}

/*
|--------------------------------------------------------------------------
| Tablette
|--------------------------------------------------------------------------
*/

@media (max-width: 1180px) {
    .store-plan-filters {
        grid-template-columns:
            repeat(
                3,
                minmax(
                    150px,
                    1fr
                )
            );
    }

    .store-plan-filters__actions {
        justify-content: flex-start;
    }
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 720px) {
    .store-section__header,
    .store-plan-section__header {
        flex-direction: column;
        align-items: stretch;
    }

    .store-section__count,
    .store-plan-section__count {
        width: fit-content;
    }

    .store-plan-filters {
        grid-template-columns: 1fr;

        padding: 16px;
    }

    .store-plan-filters__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .store-plan-filters__actions .fz-button,
    .store-plan-filters__reset {
        width: 100%;
    }
}

/*
|--------------------------------------------------------------------------
| Barre de filtres de la page Produits
|--------------------------------------------------------------------------
*/

.store-section > .store-plan-filters {
    grid-template-columns:
        minmax(190px, 1fr)
        minmax(210px, 1fr)
        minmax(120px, 0.45fr)
        auto;
}

@media (max-width: 980px) {
    .store-section > .store-plan-filters {
        grid-template-columns:
            repeat(
                2,
                minmax(180px, 1fr)
            );
    }
}

@media (max-width: 720px) {
    .store-section > .store-plan-filters {
        grid-template-columns: 1fr;
    }
}

/*
|--------------------------------------------------------------------------
| Configuration moderne des cartes de forfait
|--------------------------------------------------------------------------
*/

.store-plan-card {
    gap: 0;
}

.store-plan-card__configuration {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;

    margin-top: 24px;
    padding: 18px;

    background: #f7f8fc;

    border: 1px solid #e4e8f1;
    border-radius: 16px;
}

.store-plan-card--featured .store-plan-card__configuration {
    background: rgba(255, 255, 255, 0.12);

    border-color: rgba(255, 255, 255, 0.2);
}

.store-plan-card--dark .store-plan-card__configuration {
    background: #f7f8fc;
}

/*
|--------------------------------------------------------------------------
| Champs Option et Quantité
|--------------------------------------------------------------------------
*/

.store-plan-card__field {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;

    min-width: 0;
}

.store-plan-card__field > span {
    display: block;

    color: #5f6b82;

    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.store-plan-card--featured .store-plan-card__field > span {
    color: rgba(255, 255, 255, 0.82);
}

.store-plan-card__field select,
.store-plan-card__field input {
    display: block;

    width: 100%;
    min-width: 0;
    height: 48px;

    margin: 0;
    padding: 0 14px;

    color: var(--fz-text);

    background: #ffffff;

    border: 1px solid #d9deea;
    border-radius: 12px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 650;

    outline: none;

    transition:
        border-color 150ms ease,
        box-shadow 150ms ease,
        background-color 150ms ease;
}

.store-plan-card__field select {
    padding-right: 40px;

    cursor: pointer;
}

.store-plan-card__field input[type="number"] {
    max-width: 130px;

    font-size: 16px;
    font-weight: 800;
}

.store-plan-card__field select:hover,
.store-plan-card__field input:hover {
    border-color: rgba(91, 61, 245, 0.5);
}

.store-plan-card__field select:focus,
.store-plan-card__field input:focus {
    border-color: var(--fz-primary);

    box-shadow:
        0 0 0 3px
        rgba(91, 61, 245, 0.14);
}

/*
|--------------------------------------------------------------------------
| Prix
|--------------------------------------------------------------------------
*/

.store-plan-card__price {
    display: grid;
    grid-template-columns: minmax(0, auto) 1fr;
    align-items: end;
    gap: 12px;

    margin-top: 28px;
}

.store-plan-card__price strong {
    display: block;

    color: var(--fz-text);

    font-size: clamp(38px, 4vw, 52px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.store-plan-card__price span {
    max-width: 130px;
    padding-bottom: 5px;

    color: var(--fz-soft);

    font-size: 14px;
    line-height: 1.4;
}

.store-plan-card--featured .store-plan-card__price strong,
.store-plan-card--featured .store-plan-card__price span {
    color: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Résumé : facturation, engagement et total
|--------------------------------------------------------------------------
*/

.store-plan-card__details {
    display: grid;
    gap: 0;

    margin-top: 22px;

    overflow: hidden;

    color: var(--fz-text);

    background: #f7f8fc;

    border: 1px solid #e4e8f1;
    border-radius: 16px;
}

.store-plan-card__details > span {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;

    min-height: 48px;
    padding: 11px 14px;

    color: #667085;

    font-size: 13px;
    line-height: 1.35;
}

.store-plan-card__details > span + span {
    border-top: 1px solid #e4e8f1;
}

.store-plan-card__details strong {
    color: var(--fz-text);

    font-size: 13px;
    font-weight: 800;
    text-align: right;
}

.store-plan-card--featured .store-plan-card__details {
    background: rgba(255, 255, 255, 0.12);

    border-color: rgba(255, 255, 255, 0.2);
}

.store-plan-card--featured .store-plan-card__details > span {
    color: rgba(255, 255, 255, 0.78);
}

.store-plan-card--featured .store-plan-card__details > span + span {
    border-color: rgba(255, 255, 255, 0.16);
}

.store-plan-card--featured .store-plan-card__details strong {
    color: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Boutons
|--------------------------------------------------------------------------
*/

.store-plan-card__footer {
    margin-top: auto;
    padding-top: 26px;
}

.store-plan-card__button {
    min-height: 54px;

    border-radius: 14px;

    font-size: 16px;
}

/*
|--------------------------------------------------------------------------
| Ajustements des cartes gratuites
|--------------------------------------------------------------------------
*/

.store-plan-card--light .store-plan-card__price strong {
    color: #172033;
}

.store-plan-card--light .store-plan-card__price span {
    color: #667085;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 1180px) {
    .store-plan-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }
}

@media (max-width: 760px) {
    .store-plan-grid {
        grid-template-columns: 1fr;
    }

    .store-plan-card {
        padding: 26px 22px 22px;
    }

    .store-plan-card__price {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .store-plan-card__price span {
        max-width: none;
        padding-bottom: 0;
    }

    .store-plan-card__details > span {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .store-plan-card__details strong {
        text-align: left;
    }

    .store-plan-card__field input[type="number"] {
        max-width: 100%;
    }
}

/*
|--------------------------------------------------------------------------
| Correctifs finaux — cartes de forfait compactes
|--------------------------------------------------------------------------
*/

.store-plan-card {
    gap: 0;
    padding: 28px 28px 20px;
}

.store-plan-card__top h3 {
    margin-top: 16px;
    font-size: 24px;
}

.store-plan-card__description {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.store-plan-card__configuration {
    gap: 12px;
    margin-top: 18px;
    padding: 14px 16px;
}

.store-plan-card__field {
    gap: 6px;
}

.store-plan-card__field > span {
    font-size: 11px;
}

.store-plan-card__field select,
.store-plan-card__field input {
    height: 42px;
    font-size: 14px;
}

.store-plan-card__field input[type="number"] {
    max-width: 110px;
    font-size: 15px;
}

.store-plan-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 20px;
}

.store-plan-card__price strong {
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.025em;
    white-space: nowrap;
}

.store-plan-card__price span {
    max-width: 145px;
    padding-bottom: 2px;
    font-size: 12px;
    line-height: 1.3;
}

.store-plan-card__details {
    margin-top: 16px;
}

.store-plan-card__details > span {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 12px;
}

.store-plan-card__details strong {
    font-size: 12px;
}

.store-plan-card__footer {
    padding-top: 18px;
}

.store-plan-card__button {
    min-height: 48px;
    border-radius: 12px;
    font-size: 15px;
}

.store-plan-card--featured .store-plan-card__price strong,
.store-plan-card--featured .store-plan-card__price span {
    color: #ffffff;
}

@media (max-width: 1180px) {
    .store-plan-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }
}

@media (max-width: 760px) {
    .store-plan-grid {
        grid-template-columns: 1fr;
    }

    .store-plan-card {
        padding: 22px 18px 18px;
    }

    .store-plan-card__price {
        display: grid;
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .store-plan-card__price strong {
        font-size: 28px;
    }

    .store-plan-card__price span {
        max-width: none;
        padding-bottom: 0;
    }

    .store-plan-card__details > span {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .store-plan-card__details strong {
        text-align: left;
    }

    .store-plan-card__field input[type="number"] {
        max-width: 100%;
    }
}


/*
|--------------------------------------------------------------------------
| Sélection du forfait par lignes
|--------------------------------------------------------------------------
*/

.store-plan-card__configuration {
    display: grid;
    gap: 0;

    margin-top: 18px;
    padding: 0;

    overflow: hidden;

    background: #f7f8fc;

    border: 1px solid #e1e6f0;
    border-radius: 16px;
}

.store-plan-option-row {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(150px, 1.15fr);
    align-items: center;
    gap: 16px;

    min-height: 54px;
    margin: 0;
    padding: 9px 14px;
}

.store-plan-option-row + .store-plan-option-row {
    border-top: 1px solid #e1e6f0;
}

.store-plan-option-row__label {
    color: #667085;

    font-size: 12px;
    font-weight: 750;
    line-height: 1.35;
}

.store-plan-option-row__control {
    width: 100%;
    min-width: 0;
    height: 38px;
    margin: 0;
    padding: 0 34px 0 11px;

    color: var(--fz-text);
    background: #ffffff;

    border: 1px solid #d7ddea;
    border-radius: 9px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 750;
}

.store-plan-option-row__control:focus {
    border-color: var(--fz-primary);
    outline: none;
    box-shadow:
        0 0 0 3px
        rgba(91, 61, 245, 0.13);
}

.store-plan-option-row__control option:disabled {
    color: #98a2b3;
}

.store-plan-option-row__quantity {
    width: 105px;
    padding-right: 10px;
}

.store-plan-option-row__value {
    color: var(--fz-text);

    font-size: 13px;
    font-weight: 800;
    text-align: right;
}

.store-plan-card--featured .store-plan-card__configuration {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.22);
}

.store-plan-card--featured
.store-plan-option-row + .store-plan-option-row {
    border-color: rgba(255, 255, 255, 0.18);
}

.store-plan-card--featured .store-plan-option-row__label {
    color: rgba(255, 255, 255, 0.82);
}

.store-plan-card--featured .store-plan-option-row__value {
    color: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Prix et total après sélection
|--------------------------------------------------------------------------
*/

.store-plan-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px 12px;

    margin-top: 18px;
}

.store-plan-card__price strong {
    font-size: 31px;
    line-height: 1;
    white-space: nowrap;
}

.store-plan-card__price span {
    max-width: none;
    padding: 0;

    font-size: 12px;
    line-height: 1.35;
}

.store-plan-card__total-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    min-height: 44px;
    margin-top: 14px;
    padding: 10px 13px;

    color: #667085;
    background: #f7f8fc;

    border: 1px solid #e1e6f0;
    border-radius: 12px;

    font-size: 12px;
}

.store-plan-card__total-line strong {
    color: var(--fz-text);

    font-size: 13px;
    font-weight: 850;
}

.store-plan-card--featured .store-plan-card__total-line {
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.22);
}

.store-plan-card--featured
.store-plan-card__total-line strong {
    color: #ffffff;
}

@media (max-width: 760px) {
    .store-plan-option-row {
        grid-template-columns: 1fr;
        gap: 6px;

        padding: 11px 13px;
    }

    .store-plan-option-row__value {
        text-align: left;
    }

    .store-plan-option-row__quantity {
        width: 100%;
    }
}

/*
|--------------------------------------------------------------------------
| Détails dans les cartes
|--------------------------------------------------------------------------
*/

.store-plan-card__expand {
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid rgba(138, 157, 192, 0.22);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 10px 28px rgba(16, 32, 61, 0.06);
}

.store-plan-card__expand-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 18px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    color: var(--fz-text);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.store-plan-card__expand-summary::-webkit-details-marker {
    display: none;
}

.store-plan-card__expand-summary:hover {
    background: rgba(91, 56, 245, 0.04);
}

.store-plan-card__expand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(91, 56, 245, 0.10);
    color: var(--fz-primary);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    transition: transform 150ms ease;
}

.store-plan-card__expand[open] .store-plan-card__expand-icon {
    transform: rotate(45deg);
}

.store-plan-card__expand-content {
    padding: 2px 18px 18px;
    border-top: 1px solid rgba(138, 157, 192, 0.16);
}

.store-plan-card__expand-content p {
    margin: 16px 0 14px;
    color: #33415c;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
}

.store-plan-card__expand-content ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-plan-card__expand-content li {
    position: relative;
    padding: 10px 12px 10px 38px;
    border-radius: 12px;
    background: rgba(91, 56, 245, 0.05);
    color: #10203d;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.store-plan-card__expand-content li::before {
    content: '✓';
    position: absolute;
    top: 10px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(91, 56, 245, 0.14);
    color: var(--fz-primary);
    font-size: 12px;
    font-weight: 900;
}

/* version carte bleue */
.store-plan-card--featured .store-plan-card__expand {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: none;
}

.store-plan-card--featured .store-plan-card__expand-summary {
    color: #ffffff;
}

.store-plan-card--featured .store-plan-card__expand-summary:hover {
    background: rgba(255, 255, 255, 0.06);
}

.store-plan-card--featured .store-plan-card__expand-icon {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.store-plan-card--featured .store-plan-card__expand-content {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.store-plan-card--featured .store-plan-card__expand-content p {
    color: rgba(255, 255, 255, 0.92);
}

.store-plan-card--featured .store-plan-card__expand-content li {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

.store-plan-card--featured .store-plan-card__expand-content li::before {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Champs de configuration des forfaits
|--------------------------------------------------------------------------
*/

.store-plan-card__configuration {
    display: grid;
    gap: 16px;

    margin-top: 22px;
    padding: 16px;

    border: 1px solid var(--fz-border);
    border-radius: 16px;

    background: rgba(244, 247, 252, 0.72);
}

.store-plan-card__field {
    display: grid;
    gap: 8px;

    min-width: 0;
    margin: 0;
    padding: 0;

    border: 0;
}

.store-plan-card__field > span {
    display: block;

    margin: 0;
    padding: 0;

    color: var(--fz-muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.store-plan-card__field select,
.store-plan-card__field input {
    display: block;

    width: 100%;
    min-width: 0;
    height: 46px;

    margin: 0;
    padding: 0 16px;

    border: 1px solid #cfd9e9;
    border-radius: 12px;
    outline: none;

    color: var(--fz-text);
    background: #ffffff;

    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
}

.store-plan-card__field select {
    cursor: pointer;
}

.store-plan-card__field input[type="number"] {
    width: 130px;
    max-width: 100%;
}

.store-plan-card__field select:focus,
.store-plan-card__field input:focus {
    border-color: var(--fz-primary);
    box-shadow: 0 0 0 3px rgba(91, 56, 245, 0.12);
}

/*
|--------------------------------------------------------------------------
| Carte mise en évidence
|--------------------------------------------------------------------------
*/

.store-plan-card--featured .store-plan-card__configuration {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.10);
}

.store-plan-card--featured .store-plan-card__field > span {
    color: rgba(255, 255, 255, 0.88);
}

.store-plan-card--featured .store-plan-card__field select,
.store-plan-card--featured .store-plan-card__field input {
    border-color: rgba(255, 255, 255, 0.35);
    background: #ffffff;
    color: #10203d;
}

/*
|--------------------------------------------------------------------------
| Carte sombre
|--------------------------------------------------------------------------
*/

.store-plan-card--dark .store-plan-card__configuration {
    border-color: rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.08);
}

.store-plan-card--dark .store-plan-card__field > span {
    color: rgba(255, 255, 255, 0.86);
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 640px) {
    .store-plan-card__configuration {
        padding: 14px;
        gap: 14px;
    }

    .store-plan-card__field input[type="number"] {
        width: 100%;
    }
}

/*
|--------------------------------------------------------------------------
| Grille des forfaits responsive
|--------------------------------------------------------------------------
*/

.store-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    align-items: stretch;
}

@media (min-width: 1400px) {
    .store-plan-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 1024px) {
    .store-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .store-plan-grid {
        grid-template-columns: 1fr;
    }
}

/*
|--------------------------------------------------------------------------
| Cartes de forfait
|--------------------------------------------------------------------------
*/

.store-plan-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
}

.store-plan-card__top {
    flex: 0 0 auto;
}

.store-plan-card__configuration {
    flex: 0 0 auto;
}

.store-plan-card__price {
    flex: 0 0 auto;
}

.store-plan-card__details {
    flex: 0 0 auto;
}

.store-plan-card__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 18px;
}
/*
|--------------------------------------------------------------------------
| Correctifs finaux — grille, cartes et détails
|--------------------------------------------------------------------------
*/

.fz-page-header,
.fz-page-content {
    width: 100%;
    max-width: 1840px;
    margin-right: auto;
    margin-left: auto;
}

.store-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
    gap: 24px;
}

.store-plan-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-width: 0;
}

.store-plan-card__footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-top: auto;
    padding-top: 18px;
}

.store-plan-card__form,
.store-plan-card__button,
.store-plan-card__expand {
    width: 100%;
}

.store-plan-card__expand {
    display: block;
    margin: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe5f0;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(16, 32, 61, 0.06);
}

.store-plan-card__expand-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 12px 16px;
    color: #172033;
    background: transparent;
    border: 0;
    cursor: pointer;
    user-select: none;
    list-style: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.store-plan-card__expand-summary::-webkit-details-marker {
    display: none;
}

.store-plan-card__expand-summary::marker {
    content: "";
}

.store-plan-card__expand-summary:hover {
    background: rgba(91, 61, 245, 0.05);
}

.store-plan-card__expand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    color: #5b3df5;
    background: #eeeaff;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    transition: transform 160ms ease;
}

.store-plan-card__expand[open] .store-plan-card__expand-icon {
    transform: rotate(45deg);
}

.store-plan-card__expand-content {
    padding: 4px 16px 16px;
    border-top: 1px solid #e6e8ee;
}

.store-plan-card__expand-content p {
    margin: 14px 0;
    color: #44516a;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
}

.store-plan-card__expand-content ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-plan-card__expand-content li {
    position: relative;
    margin: 0;
    padding: 9px 10px 9px 34px;
    color: #172033;
    background: #f6f7fb;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.store-plan-card__expand-content li::before {
    content: "✓";
    position: absolute;
    top: 9px;
    left: 11px;
    color: #5b3df5;
    font-weight: 900;
}

.store-plan-card--featured {
    color: #ffffff;
    background: linear-gradient(180deg, #3362e0 0%, #244fc4 100%);
    border-color: rgba(36, 79, 196, 0.55);
    box-shadow: 0 24px 50px rgba(36, 79, 196, 0.22);
}

.store-plan-card--featured .store-plan-card__expand {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

.store-plan-card--featured .store-plan-card__expand-summary {
    color: #ffffff;
}

.store-plan-card--featured .store-plan-card__expand-summary:hover {
    background: rgba(255, 255, 255, 0.07);
}

.store-plan-card--featured .store-plan-card__expand-icon {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.store-plan-card--featured .store-plan-card__expand-content {
    border-top-color: rgba(255, 255, 255, 0.18);
}

.store-plan-card--featured .store-plan-card__expand-content p {
    color: rgba(255, 255, 255, 0.92);
}

.store-plan-card--featured .store-plan-card__expand-content li {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
}

.store-plan-card--featured .store-plan-card__expand-content li::before {
    color: #ffffff;
}

@media (min-width: 1900px) {
    .store-plan-grid {
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    }
}

@media (max-width: 1280px) {
    .store-plan-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .store-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .store-plan-grid {
        grid-template-columns: 1fr;
    }
}

/*
|--------------------------------------------------------------------------
| Correctifs définitifs — détails et grille responsive
|--------------------------------------------------------------------------
*/
.fz-store-content {
    width: 100%;
    max-width: none;
    padding-right: clamp(24px, 3vw, 56px);
    padding-left: clamp(24px, 3vw, 56px);
}

.fz-page-header,
.fz-page-content {
    width: 100%;
    max-width: none;
}

.store-plan-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch !important;
}

.store-plan-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-width: 0 !important;
}

.store-plan-card__footer {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
    margin-top: auto !important;
    padding-top: 18px !important;
}

.store-plan-card__expand {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #fff !important;
    border: 1px solid #dfe5f0 !important;
    border-radius: 14px !important;
}

.store-plan-card__expand-summary {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    min-height: 50px !important;
    padding: 12px 16px !important;
    cursor: pointer !important;
    list-style: none !important;
    color: #172033 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

.store-plan-card__expand-summary::-webkit-details-marker {
    display: none !important;
}

.store-plan-card__expand-summary::marker {
    content: "" !important;
}

.store-plan-card__expand-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
    border-radius: 999px !important;
    color: #5b3df5 !important;
    background: #eeeaff !important;
    font-size: 18px !important;
    line-height: 1 !important;
    transition: transform 160ms ease !important;
}

.store-plan-card__expand[open] .store-plan-card__expand-icon {
    transform: rotate(45deg) !important;
}

.store-plan-card__expand-content {
    display: block !important;
    padding: 4px 16px 16px !important;
    border-top: 1px solid #e6e8ee !important;
}

.store-plan-card--featured .store-plan-card__expand {
    background: rgba(255,255,255,.10) !important;
    border-color: rgba(255,255,255,.22) !important;
}

.store-plan-card--featured .store-plan-card__expand-summary,
.store-plan-card--featured .store-plan-card__expand-icon {
    color: #fff !important;
}

.store-plan-card--featured .store-plan-card__expand-icon {
    background: rgba(255,255,255,.18) !important;
}

@media (min-width: 1560px) {
    .store-plan-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 2200px) {
    .store-plan-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1100px) {
    .store-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 700px) {
    .store-plan-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Findzle Store — /plans */

.fz-plans-overview {
    display: grid;
    gap: 28px;
}

.fz-plans-overview__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(420px, .8fr);
    gap: 28px;
    align-items: center;
    padding: 30px;
    border: 1px solid #dfe5f1;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(91, 56, 245, .14), transparent 38%),
        #fff;
    box-shadow: 0 18px 50px rgba(16, 32, 61, .06);
}

.fz-plans-overview__eyebrow,
.fz-plan-product__label {
    display: inline-flex;
    margin-bottom: 10px;
    color: #5b38f5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fz-plans-overview__intro h2 {
    margin: 0;
    color: #10203d;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -.03em;
}

.fz-plans-overview__intro p {
    margin: 16px 0 0;
    color: #62728e;
    font-size: 17px;
    line-height: 1.6;
}

.fz-plans-overview__benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.fz-plans-overview__benefits > div {
    min-height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    border: 1px solid #e3e8f2;
    border-radius: 18px;
    background: rgba(255, 255, 255, .88);
}

.fz-plans-overview__benefits strong {
    color: #10203d;
    font-size: 17px;
}

.fz-plans-overview__benefits span {
    margin-top: 7px;
    color: #71809a;
    font-size: 13px;
}

.fz-plans-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fz-plans-jump a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid #dfe5f1;
    border-radius: 999px;
    color: #273755;
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.fz-plans-jump a:hover {
    color: #5b38f5;
    border-color: rgba(91, 56, 245, .4);
}

.fz-plans-products {
    display: grid;
    gap: 28px;
}

.fz-plan-product {
    scroll-margin-top: 110px;
    padding: 28px;
    border: 1px solid #dfe5f1;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 46px rgba(16, 32, 61, .05);
}

.fz-plan-product__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.fz-plan-product__identity {
    display: flex;
    gap: 16px;
}

.fz-plan-product__icon {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(145deg, #5b38f5, #315fdf);
    box-shadow: 0 10px 24px rgba(91, 56, 245, .22);
    font-size: 20px;
    font-weight: 800;
}

.fz-plan-product__header h2 {
    margin: 0;
    color: #10203d;
    font-size: 26px;
}

.fz-plan-product__header p {
    margin: 8px 0 0;
    color: #62728e;
    line-height: 1.55;
}

.fz-plan-product__plans {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.fz-plan-option {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid #dfe5f1;
    border-radius: 22px;
    background: linear-gradient(180deg, #f8faff, #fff 35%);
}

.fz-plan-option--recommended {
    border-color: rgba(91, 56, 245, .42);
    box-shadow: 0 18px 42px rgba(91, 56, 245, .12);
}

.fz-plan-option__recommended {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 11px;
    border-radius: 999px;
    color: #fff;
    background: #5b38f5;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.fz-plan-option__header {
    padding-right: 120px;
}

.fz-plan-option__app {
    display: inline-flex;
    margin-bottom: 8px;
    color: #5b38f5;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.fz-plan-option__header h3 {
    margin: 0;
    color: #10203d;
    font-size: 25px;
}

.fz-plan-option__header p {
    min-height: 48px;
    margin: 10px 0 0;
    color: #62728e;
    line-height: 1.55;
}

.fz-plan-option__trial {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding: 13px 14px;
    border: 1px solid #d9e5ff;
    border-radius: 15px;
    color: #244d9e;
    background: #f4f8ff;
}

.fz-plan-option__trial > span {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #315fdf;
    font-size: 12px;
}

.fz-plan-option__trial div {
    display: grid;
    gap: 3px;
}

.fz-plan-option__trial small {
    color: #5872a3;
}

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

.fz-plan-price {
    position: relative;
    padding: 16px;
    border: 1px solid #dfe5f1;
    border-radius: 17px;
    background: #fff;
}

.fz-plan-price--annual {
    border-color: rgba(91, 56, 245, .26);
    background: #faf9ff;
}

.fz-plan-price__label {
    display: block;
    margin-bottom: 12px;
    color: #71809a;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.fz-plan-price__saving {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 7px;
    border-radius: 999px;
    color: #2f6a46;
    background: #e9f8ef;
    font-size: 10px;
    font-weight: 800;
}

.fz-plan-price strong {
    display: block;
    color: #10203d;
    font-size: clamp(19px, 2vw, 27px);
}

.fz-plan-price small {
    display: block;
    margin-top: 5px;
    color: #71809a;
}

.fz-plan-option__features {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.fz-plan-option__features li {
    display: flex;
    gap: 9px;
    color: #34445f;
}

.fz-plan-option__features li span {
    color: #5b38f5;
    font-weight: 900;
}

.fz-plan-option__footer {
    margin-top: auto;
    padding-top: 22px;
}

.fz-plans-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 17px;
    border: 1px solid transparent;
    border-radius: 13px;
    font: inherit;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.fz-plans-button--primary {
    width: 100%;
    color: #fff;
    background: linear-gradient(135deg, #5b38f5, #315fdf);
    box-shadow: 0 10px 24px rgba(91, 56, 245, .2);
}

.fz-plans-button--secondary {
    color: #273755;
    border-color: #dfe5f1;
    background: #fff;
}

.fz-plans-button--outline {
    width: 100%;
    color: #4c31d2;
    border-color: rgba(91, 56, 245, .32);
    background: #fff;
}

.fz-plans-empty {
    padding: 48px 24px;
    border: 1px dashed #ccd5e5;
    border-radius: 24px;
    background: #fff;
    text-align: center;
}

@media (max-width: 1100px) {
    .fz-plans-overview__intro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .fz-plan-product__plans {
        grid-template-columns: 1fr;
    }

    .fz-plan-product__header {
        flex-direction: column;
    }

    .fz-plan-product__header .fz-plans-button {
        width: 100%;
    }
}

@media (max-width: 680px) {
    .fz-plans-overview__intro,
    .fz-plan-product {
        padding: 20px;
        border-radius: 19px;
    }

    .fz-plans-overview__benefits,
    .fz-plan-option__pricing {
        grid-template-columns: 1fr;
    }

    .fz-plan-option {
        padding: 20px;
    }

    .fz-plan-option__header {
        padding-right: 0;
    }

    .fz-plan-option__recommended {
        position: static;
        align-self: flex-start;
        margin-bottom: 14px;
    }
}