@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --green: #118444;
    --green-dark: #0d5f33;
    --blue: #1769d2;
    --ink: #142033;
    --muted: #607086;
    --line: #d9e5ee;
    --soft: #edf8f1;
    --blue-soft: #edf5ff;
    --bg: #f8fbf8;
    --white: #ffffff;
    --warn: #b45309;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
}

button, input, select, textarea {
    font: inherit;
}

button, .primary-link, .secondary-link, .ghost-link {
    min-height: 42px;
    border-radius: 8px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    text-decoration: none;
    cursor: pointer;
}

button, .primary-link {
    background: var(--green);
    color: white;
}

button i, button svg,
.primary-link i, .primary-link svg,
.secondary-link i, .secondary-link svg,
.ghost-link i, .ghost-link svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.25;
    flex: 0 0 auto;
}

.secondary-link {
    color: var(--blue);
    background: var(--blue-soft);
    border: 1px solid #cfe2ff;
}

.ghost-link {
    color: var(--ink);
    background: white;
    border: 1px solid var(--line);
}

input, select, textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    color: var(--ink);
    padding: 10px 12px;
}

textarea {
    min-height: 86px;
    resize: vertical;
}

h1, h2, h3, p, figure {
    margin: 0;
}

.store-header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 74px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 14px clamp(16px, 4vw, 54px);
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(217, 229, 238, .8);
    backdrop-filter: blur(14px);
}

.store-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    text-decoration: none;
}

.store-brand span,
.store-brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: white;
    background: var(--green);
    font-weight: 900;
}

.store-brand-logo {
    display: block;
    object-fit: cover;
    object-position: center 34%;
    border: 1px solid rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
}

.store-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.store-nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 650;
}

.store-actions {
    display: flex;
    justify-content: end;
    gap: 10px;
}

#cart-count {
    min-width: 22px;
    min-height: 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: white;
    color: var(--green);
    font-size: 12px;
}

.store-hero {
    min-height: calc(100vh - 74px);
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: clamp(24px, 4vw, 58px);
    align-items: center;
    padding: clamp(28px, 5vw, 72px) clamp(16px, 4vw, 54px);
}

.hero-copy {
    display: grid;
    gap: 22px;
    max-width: 700px;
}

.eyebrow {
    color: var(--green);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0;
}

.hero-copy h1 {
    font-size: 64px;
    line-height: 1.02;
    max-width: 820px;
}

.hero-copy p {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
    max-width: 610px;
}

.hero-actions, .hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-metrics {
    margin-top: 8px;
}

.hero-metrics span {
    min-height: 62px;
    padding: 10px 14px;
    border-radius: 10px;
    background: white;
    border: 1px solid var(--line);
    display: grid;
    gap: 3px;
    color: var(--muted);
}

.hero-metrics svg {
    color: var(--green);
}

.hero-metrics strong {
    color: var(--ink);
    font-size: 20px;
}

.hero-media {
    position: relative;
    min-height: 520px;
    border-radius: 18px;
    overflow: hidden;
    background: white;
    box-shadow: 0 28px 90px rgba(17, 132, 68, .18);
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.hero-media figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 3px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .8);
}

.hero-media span {
    color: var(--muted);
}

.trust-strip {
    margin: 0 clamp(16px, 4vw, 54px) 34px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--line);
}

.trust-strip span {
    min-height: 62px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 10px;
    background: white;
    font-weight: 700;
}

.store-section, .subscription-band, .portal-band {
    padding: 58px clamp(16px, 4vw, 54px);
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 24px;
}

.section-head h2, .subscription-band h2, .portal-band h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-top: 8px;
}

.filter-row {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(170px, 220px);
    gap: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    display: grid;
}

.product-photo {
    height: 188px;
    background-size: 250%;
    background-repeat: no-repeat;
}

.product-body {
    display: grid;
    gap: 10px;
    padding: 15px;
}

.product-body span {
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.product-body h3 {
    font-size: 20px;
}

.product-body p {
    color: var(--muted);
    line-height: 1.45;
    min-height: 62px;
}

.product-meta {
    display: grid;
    gap: 3px;
}

.product-meta strong {
    font-size: 22px;
}

.product-meta small {
    color: var(--muted);
}

.subscription-band, .portal-band {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(320px, 1fr);
    gap: 34px;
    align-items: center;
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.subscription-band p, .portal-band p {
    color: var(--muted);
    line-height: 1.65;
    margin-top: 14px;
}

.plan-grid, .portal-grid, .flow-grid {
    display: grid;
    gap: 14px;
}

.plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-grid span, .portal-grid a, .flow-grid article {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
}

.plan-grid span {
    min-height: 82px;
    display: grid;
    place-items: center;
    text-align: center;
    font-weight: 800;
}

.flow-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow-grid article {
    display: grid;
    gap: 10px;
}

.flow-grid strong {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--green);
    color: white;
}

.flow-grid p {
    color: var(--muted);
    line-height: 1.5;
}

.portal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portal-grid a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 800;
    background: var(--blue-soft);
}

.store-footer {
    display: grid;
    gap: 24px;
    padding: 28px clamp(16px, 4vw, 54px);
    color: rgba(255, 255, 255, .72);
    background: #102018;
}

.store-footer strong,
.store-footer a,
.store-footer h2,
.store-footer h3 {
    color: white;
}

.cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 32, 51, .32);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
    z-index: 30;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(520px, 100vw);
    height: 100vh;
    z-index: 40;
    transform: translateX(100%);
    transition: .24s ease;
    background: white;
    border-left: 1px solid var(--line);
    padding: 18px;
    overflow: auto;
    display: grid;
    gap: 16px;
    align-content: start;
}

.cart-open .cart-drawer {
    transform: translateX(0);
}

.cart-open .cart-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.cart-head, .cart-line, .cart-total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
}

.cart-head small, .cart-line small {
    display: block;
    color: var(--muted);
    margin-top: 3px;
}

.cart-items, .checkout-form {
    display: grid;
    gap: 12px;
}

.cart-line {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px;
}

.cart-line select {
    margin-top: 8px;
}

.qty {
    display: grid;
    grid-template-columns: 34px 30px 34px;
    gap: 5px;
    align-items: center;
    text-align: center;
}

.qty button {
    min-height: 34px;
    padding: 0;
}

.cart-total {
    display: grid;
    grid-template-columns: 1fr auto;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px;
}

.empty-cart {
    color: var(--muted);
    padding: 18px;
    border: 1px dashed var(--line);
    border-radius: 10px;
}

.checkout-form h2 {
    font-size: 22px;
}

.checkout-location {
    display: grid;
    gap: 7px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--blue-soft);
}

.checkout-location button {
    background: var(--blue);
}

.checkout-location small {
    color: var(--muted);
    line-height: 1.4;
}

label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
}

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

#toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    background: var(--ink);
    color: white;
    padding: 12px 14px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: .2s ease;
    pointer-events: none;
}

#toast.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .store-hero, .subscription-band, .portal-band {
        grid-template-columns: 1fr;
    }
    .product-grid, .flow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-media, .hero-media img {
        min-height: 440px;
    }
}

@media (max-width: 760px) {
    .store-header {
        grid-template-columns: 1fr;
        align-items: stretch;
        position: static;
    }
    .store-nav, .store-actions {
        justify-content: start;
        flex-wrap: wrap;
    }
    .store-hero {
        min-height: auto;
    }
    .trust-strip, .product-grid, .flow-grid, .plan-grid, .portal-grid, .filter-row, .two {
        grid-template-columns: 1fr;
    }
    .section-head, .store-footer {
        display: grid;
    }
    .hero-media, .hero-media img {
        min-height: 320px;
    }
    .product-photo {
        height: 220px;
    }
}

/* Trendy storefront skin */
:root {
    --green: #10a45c;
    --green-dark: #076b40;
    --lime: #d7ff72;
    --blue: #2563eb;
    --violet: #7c5cff;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e6edf5;
    --soft: #effaf4;
    --blue-soft: #eef5ff;
    --bg: #f7faf7;
    font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

.store-body {
    background:
        linear-gradient(90deg, rgba(16, 164, 92, .06) 1px, transparent 1px) 0 0 / 48px 48px,
        linear-gradient(0deg, rgba(37, 99, 235, .05) 1px, transparent 1px) 0 0 / 48px 48px,
        linear-gradient(135deg, #f6fff9 0%, #f4f7ff 42%, #fffaf1 100%);
    color: var(--ink);
}

.store-header {
    width: min(1180px, calc(100% - 32px));
    min-height: 68px;
    margin: 16px auto 0;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .84);
    border-radius: 20px;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 18px 55px rgba(15, 23, 42, .08);
}

.store-brand span,
.store-brand-logo {
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green), var(--blue));
}

.store-brand-logo {
    background: rgba(255, 255, 255, .78);
}

.store-brand strong {
    font-size: 17px;
    letter-spacing: 0;
}

.store-nav {
    padding: 0 14px;
    gap: 10px;
}

.store-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    color: #40516b;
    font-size: 14px;
}

.store-nav a:hover {
    color: var(--green-dark);
    background: #edf9f2;
}

.store-nav a.active {
    color: var(--green-dark);
    background: #edf9f2;
}

button,
.primary-link,
.secondary-link,
.ghost-link {
    min-height: 46px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0;
}

button,
.primary-link {
    background: linear-gradient(135deg, var(--green), #13c987);
    box-shadow: 0 16px 34px rgba(16, 164, 92, .24);
}

.secondary-link {
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .07);
}

.ghost-link {
    color: var(--ink);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .88);
}

#cart-toggle {
    background: var(--ink);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .18);
}

#cart-count {
    color: var(--ink);
}

.store-hero {
    width: min(1180px, calc(100% - 32px));
    min-height: calc(100vh - 104px);
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    margin: 0 auto;
    padding: 48px 0 34px;
}

.hero-copy {
    gap: 24px;
}

.eyebrow {
    width: fit-content;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid rgba(16, 164, 92, .18);
    border-radius: 999px;
    color: var(--green-dark);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 10px 24px rgba(16, 164, 92, .08);
    font-size: 12px;
    text-transform: none;
}

.hero-copy h1 {
    max-width: 660px;
    color: var(--ink);
    font-size: 64px;
    line-height: .98;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 600px;
    color: #516176;
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    gap: 12px;
}

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

.hero-metrics span {
    min-height: 92px;
    align-content: center;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .07);
}

.hero-metrics svg {
    width: 22px;
    height: 22px;
}

.hero-metrics strong {
    font-size: 24px;
}

.hero-picks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.hero-pick {
    min-height: 76px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 2px 10px;
    align-items: center;
    justify-content: start;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 18px;
    color: var(--ink);
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .07);
    text-align: left;
}

.hero-pick span {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--green);
    background: var(--soft);
}

.hero-pick strong {
    overflow: hidden;
    color: var(--ink);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-pick small {
    color: var(--muted);
    font-size: 12px;
}

.hero-media {
    min-height: 590px;
    border: 10px solid rgba(255, 255, 255, .78);
    border-radius: 34px;
    overflow: visible;
    box-shadow: 0 32px 80px rgba(15, 23, 42, .16);
}

.hero-media img {
    min-height: 570px;
    border-radius: 24px;
    object-fit: cover;
}

.hero-float {
    position: absolute;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 4px 11px;
    align-items: center;
    min-width: 210px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 18px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 20px 46px rgba(15, 23, 42, .14);
    backdrop-filter: blur(14px);
}

.hero-float svg {
    grid-row: span 2;
    width: 40px;
    height: 40px;
    padding: 9px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--blue));
}

.hero-float strong {
    color: var(--ink);
    font-size: 14px;
}

.hero-float span {
    color: var(--muted);
    font-size: 12px;
}

.order-float {
    left: -42px;
    bottom: 72px;
}

.route-float {
    right: -34px;
    top: 52px;
}

.sub-float {
    right: 30px;
    bottom: -28px;
}

.trust-strip {
    width: min(1180px, calc(100% - 32px));
    margin: 4px auto 32px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.trust-strip span {
    min-height: 84px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 20px;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .06);
}

.trust-strip svg {
    width: 24px;
    height: 24px;
    color: var(--green);
}

.store-section,
.subscription-band,
.portal-band {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 28px;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 30px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 20px 55px rgba(15, 23, 42, .07);
}

.section-head h2,
.subscription-band h2,
.portal-band h2 {
    color: var(--ink);
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: 0;
}

.filter-row {
    grid-template-columns: minmax(240px, 340px) minmax(170px, 220px);
}

input,
select,
textarea {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .86);
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.product-card {
    border: 1px solid rgba(230, 237, 245, .9);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .07);
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, .12);
}

.product-photo {
    height: 210px;
    margin: 10px;
    border-radius: 18px;
    background-size: 260%;
}

.product-body {
    padding: 8px 18px 18px;
}

.product-body span {
    width: fit-content;
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    color: var(--green-dark);
    background: var(--soft);
    font-size: 11px;
}

.product-body h3 {
    color: var(--ink);
    font-size: 21px;
    letter-spacing: 0;
}

.product-body p {
    min-height: 72px;
    color: var(--muted);
    font-size: 14px;
}

.product-meta {
    grid-template-columns: 1fr;
}

.product-meta strong {
    font-size: 25px;
}

.product-card button {
    width: 100%;
}

.subscription-band,
.portal-band {
    grid-template-columns: minmax(0, .86fr) minmax(320px, 1fr);
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .94), rgba(9, 73, 50, .92)),
        #0f172a;
    color: #fff;
}

.subscription-band .eyebrow,
.portal-band .eyebrow {
    color: var(--lime);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
}

.subscription-band h2,
.portal-band h2 {
    color: #fff;
}

.subscription-band p,
.portal-band p {
    color: rgba(255, 255, 255, .72);
}

.plan-grid span,
.portal-grid a,
.flow-grid article {
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 22px;
    background: rgba(255, 255, 255, .74);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
}

.subscription-band .plan-grid span,
.portal-band .portal-grid a {
    color: #fff;
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .1);
}

.flow-grid strong {
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green), var(--blue));
}

.cart-drawer {
    width: min(540px, 100vw);
    padding: 22px;
    border-left: 1px solid rgba(230, 237, 245, .8);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 250, 247, .96)),
        #fff;
    box-shadow: -24px 0 60px rgba(15, 23, 42, .14);
}

.cart-head {
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.cart-line,
.cart-total,
.empty-cart,
.checkout-location {
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .05);
}

.checkout-location {
    border-color: rgba(37, 99, 235, .18);
    background: var(--blue-soft);
}

.store-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 8% 12%, rgba(16, 164, 92, .28), transparent 26rem),
        radial-gradient(circle at 86% 0%, rgba(37, 99, 235, .24), transparent 24rem),
        #0f172a;
}

.footer-newsletter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: 24px;
    align-items: end;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
}

.footer-newsletter .eyebrow {
    color: var(--lime);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
}

.footer-newsletter h2 {
    max-width: 620px;
    margin-top: 12px;
    font-size: 44px;
    line-height: 1.06;
    letter-spacing: 0;
}

.footer-newsletter p {
    max-width: 560px;
    margin-top: 12px;
    line-height: 1.65;
}

.newsletter-standalone {
    width: min(1180px, calc(100% - 32px));
    margin: 48px auto 24px;
    color: rgba(255, 255, 255, .72);
    background:
        radial-gradient(circle at 8% 12%, rgba(16, 164, 92, .28), transparent 26rem),
        radial-gradient(circle at 86% 0%, rgba(37, 99, 235, .24), transparent 24rem),
        #0f172a;
    box-shadow: 0 20px 55px rgba(15, 23, 42, .1);
}

.newsletter-standalone h2,
.newsletter-standalone strong {
    color: white;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: end;
}

.newsletter-form label {
    color: rgba(255, 255, 255, .78);
}

.newsletter-form input {
    border-color: rgba(255, 255, 255, .16);
    color: white;
    background: rgba(255, 255, 255, .1);
    box-shadow: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .44);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(130px, .7fr)) minmax(210px, .9fr);
    gap: 26px;
    padding: 8px 4px;
}

.footer-brand {
    display: grid;
    gap: 16px;
    align-content: start;
}

.store-footer .store-brand {
    width: fit-content;
    color: white;
}

.footer-brand p,
.footer-contact p,
.payment-section p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    line-height: 1.65;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .24);
}

.footer-socials a[data-channel="instagram"] {
    background: linear-gradient(135deg, rgba(225, 48, 108, .28), rgba(253, 180, 75, .18));
}

.footer-socials a[data-channel="facebook"],
.footer-socials a[data-channel="linkedin"] {
    background: rgba(37, 99, 235, .22);
}

.footer-socials a[data-channel="youtube"] {
    background: rgba(239, 68, 68, .24);
}

.footer-socials a[data-channel="whatsapp"] {
    background: rgba(34, 197, 94, .22);
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-links h3,
.footer-contact h3,
.payment-section h3 {
    margin: 0 0 4px;
    font-size: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, .66);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--lime);
}

.footer-contact p {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-contact i,
.footer-contact svg,
.footer-socials i,
.footer-socials svg {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
}

.payment-section {
    display: grid;
    grid-template-columns: minmax(220px, .6fr) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .07);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
}

.payment-grid span {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    color: white;
    background: rgba(255, 255, 255, .08);
    font-size: 13px;
    font-weight: 800;
}

.payment-grid i,
.payment-grid svg {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    color: var(--lime);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom strong {
    color: var(--lime);
}

.info-body main {
    width: min(1180px, calc(100% - 32px));
    display: grid;
    gap: 24px;
    margin: 0 auto;
    padding: 44px 0 28px;
}

.info-hero {
    min-height: 430px;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
    gap: 28px;
    align-items: stretch;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 34px;
    background:
        radial-gradient(circle at 12% 16%, rgba(16, 164, 92, .18), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .62));
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.info-hero > div:first-child {
    display: grid;
    align-content: center;
    gap: 20px;
}

.info-hero h1 {
    max-width: 760px;
    color: var(--ink);
    font-size: 58px;
    line-height: 1.02;
    letter-spacing: 0;
}

.info-hero p {
    max-width: 680px;
    color: #516176;
    font-size: 18px;
    line-height: 1.75;
}

.info-hero-card {
    display: grid;
    gap: 14px;
    align-content: start;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 28px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 22px 54px rgba(15, 23, 42, .1);
}

.info-hero-card > svg {
    width: 56px;
    height: 56px;
    padding: 14px;
    border-radius: 20px;
    color: white;
    background: linear-gradient(135deg, var(--green), var(--blue));
}

.info-hero-card strong {
    color: var(--ink);
    font-size: 28px;
    line-height: 1.15;
}

.info-hero-card span {
    color: var(--muted);
    line-height: 1.55;
}

.info-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: auto;
}

.info-mini-stats small {
    min-height: 72px;
    display: grid;
    gap: 4px;
    align-content: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--muted);
    background: rgba(255, 255, 255, .74);
}

.info-mini-stats b {
    display: block;
    color: var(--ink);
    font-size: 18px;
}

.info-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.info-card {
    min-height: 238px;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 22px;
    border: 1px solid rgba(230, 237, 245, .9);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .07);
    transition: transform .2s ease, box-shadow .2s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, .11);
}

.info-card svg {
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 16px;
    color: var(--green);
    background: var(--soft);
}

.info-card h2 {
    color: var(--ink);
    font-size: 22px;
    line-height: 1.2;
}

.info-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.plan-info-grid .info-card {
    min-height: 220px;
    background: linear-gradient(180deg, #fff, #f7fbff);
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr);
    gap: 30px;
    align-items: start;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 30px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 20px 55px rgba(15, 23, 42, .07);
}

.contact-panel h2 {
    margin-top: 12px;
    color: var(--ink);
    font-size: 38px;
    line-height: 1.1;
}

.contact-panel p {
    max-width: 430px;
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.65;
}

.contact-form {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .05);
}

.contact-form button {
    width: fit-content;
    padding-inline: 22px;
}

.info-footer {
    margin-top: 0;
}

.shop-main {
    width: min(1180px, calc(100% - 32px));
    display: grid;
    gap: 24px;
    margin: 0 auto;
    padding: 44px 0 28px;
}

.shop-hero {
    min-height: 260px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 30px;
    background:
        radial-gradient(circle at 8% 20%, rgba(16, 164, 92, .2), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .62));
    box-shadow: 0 22px 60px rgba(15, 23, 42, .08);
}

.shop-hero h1 {
    max-width: 760px;
    margin-top: 14px;
    color: var(--ink);
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: 0;
}

.shop-hero p {
    max-width: 640px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.shop-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: end;
}

.shop-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.shop-filter-panel,
.shop-results {
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 26px;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 20px 55px rgba(15, 23, 42, .07);
}

.shop-filter-panel {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 13px;
    padding: 20px;
}

.shop-filter-panel h2 {
    margin-top: 10px;
    font-size: 25px;
    line-height: 1.12;
}

.shop-filter-panel button {
    width: 100%;
    margin-top: 4px;
}

.shop-results {
    min-height: 640px;
    padding: 22px;
}

.shop-results-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    margin-bottom: 18px;
}

.shop-results-head h2 {
    margin-top: 4px;
    font-size: 34px;
    line-height: 1.08;
}

#result-count {
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: end;
}

.active-filters span {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--green-dark);
    background: var(--soft);
    font-size: 12px;
    font-weight: 800;
}

.shop-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card button:disabled {
    cursor: not-allowed;
    opacity: .56;
    box-shadow: none;
}

.legal-main {
    width: min(1180px, calc(100% - 32px));
    display: grid;
    gap: 24px;
    margin: 0 auto;
    padding: 44px 0 28px;
}

.legal-hero {
    min-height: 360px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 28px;
    align-items: stretch;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 34px;
    background:
        radial-gradient(circle at 10% 20%, rgba(16, 164, 92, .18), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .62));
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.legal-hero > div:first-child {
    display: grid;
    gap: 18px;
    align-content: center;
}

.legal-hero h1 {
    max-width: 780px;
    color: var(--ink);
    font-size: 54px;
    line-height: 1.03;
    letter-spacing: 0;
}

.legal-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.legal-meta {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 26px;
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
}

.legal-meta svg {
    width: 54px;
    height: 54px;
    padding: 14px;
    border-radius: 18px;
    color: white;
    background: linear-gradient(135deg, var(--green), var(--blue));
}

.legal-meta strong {
    color: var(--ink);
    font-size: 25px;
    line-height: 1.15;
}

.legal-meta span,
.legal-meta small {
    color: var(--muted);
    line-height: 1.55;
}

.legal-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.legal-toc,
.legal-content {
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 26px;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 20px 55px rgba(15, 23, 42, .07);
}

.legal-toc {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 8px;
    padding: 16px;
}

.legal-toc a {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border-radius: 14px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 800;
}

.legal-toc a:hover,
.legal-toc a.active {
    color: var(--green-dark);
    background: var(--soft);
}

.legal-toc svg {
    width: 18px;
    height: 18px;
}

.legal-content {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.legal-section {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
}

.legal-section h2 {
    color: var(--ink);
    font-size: 24px;
    line-height: 1.2;
}

.legal-section ul {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.68;
}

.legal-section li::marker {
    color: var(--green);
}

.store-brand-logo-wide {
    width: 174px;
    height: 78px;
    max-width: 38vw;
    object-fit: contain;
    object-position: center;
    border-radius: 18px;
    background: transparent;
}

.store-header .store-brand {
    min-width: 0;
}

@media (max-width: 1120px) {
    .hero-copy h1 {
        font-size: 52px;
    }

    .store-hero,
    .subscription-band,
    .portal-band {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-hero,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .info-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-hero h1 {
        font-size: 46px;
    }

    .shop-layout,
    .shop-hero,
    .legal-hero,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .shop-filter-panel,
    .legal-toc {
        position: static;
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .store-header {
        width: min(100% - 20px, 1180px);
        margin-top: 10px;
        grid-template-columns: 1fr;
        position: static;
    }

    .store-hero,
    .trust-strip,
    .store-section,
    .subscription-band,
    .portal-band,
    .store-footer {
        width: min(100% - 20px, 1180px);
    }

    .store-hero {
        min-height: auto;
        padding-top: 34px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-metrics,
    .hero-picks,
    .trust-strip,
    .product-grid,
    .flow-grid,
    .plan-grid,
    .portal-grid,
    .filter-row,
    .two {
        grid-template-columns: 1fr;
    }

    .hero-media,
    .hero-media img {
        min-height: 360px;
    }

    .hero-float {
        position: static;
        margin: 10px;
    }

    .store-section,
    .subscription-band,
    .portal-band {
        padding: 24px;
        border-radius: 24px;
    }

    .section-head {
        display: grid;
    }

    .footer-newsletter,
    .footer-main,
    .payment-section,
    .newsletter-form,
    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-bottom {
        display: grid;
    }

    .section-head h2,
    .subscription-band h2,
    .portal-band h2 {
        font-size: 32px;
    }

    .info-body main {
        width: min(100% - 20px, 1180px);
        padding-top: 28px;
    }

    .info-hero,
    .contact-panel {
        padding: 24px;
        border-radius: 24px;
    }

    .info-hero h1 {
        font-size: 36px;
    }

    .info-card-grid,
    .info-mini-stats {
        grid-template-columns: 1fr;
    }

    .shop-main {
        width: min(100% - 20px, 1180px);
        padding-top: 28px;
    }

    .legal-main {
        width: min(100% - 20px, 1180px);
        padding-top: 28px;
    }

    .shop-hero,
    .shop-filter-panel,
    .shop-results,
    .legal-hero,
    .legal-content,
    .legal-section,
    .legal-meta {
        padding: 22px;
        border-radius: 22px;
    }

    .shop-hero h1,
    .legal-hero h1 {
        font-size: 34px;
    }

    .shop-hero-actions,
    .shop-results-head,
    .active-filters {
        display: grid;
        justify-content: stretch;
    }

    .shop-product-grid {
        grid-template-columns: 1fr;
    }

    .store-brand-logo-wide {
        width: 154px;
        height: 69px;
        max-width: 100%;
    }

    .info-card {
        min-height: auto;
    }

.contact-form button {
    width: 100%;
}

.plan-info-grid .info-card {
    cursor: pointer;
}
.plan-info-grid .info-card.active {
    border-color: rgba(17, 132, 68, .45);
    box-shadow: 0 24px 56px rgba(17, 132, 68, .14);
}
.plan-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.plan-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    color: #0d5f33;
    background: #e9f8ef;
    font-size: 12px;
    font-weight: 900;
}
.plan-info-grid .info-card button {
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    border-radius: 999px;
    font-weight: 900;
}
.subscription-flow-panel {
    width: min(1180px, calc(100% - 32px));
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: 22px;
    align-items: start;
    margin: 0 auto 34px;
}
.subscription-showcase,
.subscription-step-card {
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 30px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 24px 64px rgba(15, 23, 42, .07);
}
.subscription-showcase {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 16px;
    padding: clamp(22px, 3vw, 34px);
}
.subscription-showcase h2 {
    color: #142033;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}
.subscription-showcase p {
    color: #607086;
    line-height: 1.65;
}
.subscription-benefits {
    display: grid;
    gap: 12px;
}
.subscription-benefits article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 3px 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid #dcece2;
    border-radius: 18px;
    background: #fff;
}
.subscription-benefits svg {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 15px;
    color: #118444;
    background: #e9f8ef;
}
.subscription-benefits strong {
    color: #142033;
}
.subscription-benefits span {
    color: #607086;
    line-height: 1.45;
}
.subscription-step-card {
    padding: clamp(20px, 3vw, 28px);
}
.subscription-stepper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}
.subscription-stepper span {
    min-height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid #dcece2;
    border-radius: 999px;
    color: #607086;
    background: #f8fbf8;
    font-weight: 900;
}
.subscription-stepper span.active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #118444, #16b86c);
}
.subscription-step {
    display: none;
    gap: 14px;
}
.subscription-step.active {
    display: grid;
}
.subscription-step h2 {
    color: #142033;
    font-size: 26px;
}
.selected-plan-pill {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 2px 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid #cbeedb;
    border-radius: 18px;
    background: #f2fbf6;
}
.selected-plan-pill svg {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 15px;
    color: #118444;
    background: #fff;
}
.selected-plan-pill small {
    color: #607086;
}
.subscription-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.subscription-actions button {
    flex: 1;
    min-width: 170px;
}
.subscription-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.subscription-summary article {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid #dcece2;
    border-radius: 16px;
    background: #f8fbf8;
}
.subscription-summary span {
    color: #607086;
    font-size: 12px;
    font-weight: 800;
}
.subscription-summary strong {
    color: #142033;
}
.success-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #118444;
    background: #e9f8ef;
}
.success-icon svg {
    width: 32px;
    height: 32px;
}
#subscription-success p {
    color: #607086;
    line-height: 1.6;
}
}

.store-footer {
    width: 100%;
    margin: 48px 0 0;
    padding: 34px 0 24px;
    border-radius: 44px 44px 0 0;
}

.store-footer > section {
    width: min(1180px, calc(100% - 32px));
    margin-right: auto;
    margin-left: auto;
}

.store-footer .footer-newsletter,
.store-footer .payment-section {
    padding: 26px;
}

.store-footer .footer-main {
    padding: 8px 0;
}

.newsletter-standalone + .store-footer {
    margin-top: 0;
}

@media (max-width: 760px) {
    .store-footer {
        width: 100%;
        margin-top: 34px;
        padding: 24px 0 18px;
        border-radius: 30px 30px 0 0;
    }

    .store-footer > section {
        width: min(100% - 20px, 1180px);
    }

    .newsletter-standalone {
        width: min(100% - 20px, 1180px);
        margin: 34px auto 18px;
    }

    .newsletter-standalone + .store-footer {
        margin-top: 0;
    }
}

.store-nav a {
    gap: 7px;
    white-space: nowrap;
}

.store-nav a i,
.store-nav a svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.3;
}

.store-actions {
    align-items: center;
    flex-wrap: wrap;
}

.store-actions .active-account-link {
    color: var(--green-dark);
    border-color: rgba(16, 164, 92, .22);
    background: #edf9f2;
}

.store-footer {
    width: min(1180px, calc(100% - 36px));
    margin: 48px auto 20px;
    border-radius: 44px 44px 28px 28px;
}

.newsletter-standalone + .store-footer {
    margin-top: 0;
}

.store-footer > section {
    width: min(1132px, calc(100% - 48px));
}

.customer-account-main {
    width: min(1180px, calc(100% - 32px));
    margin: 24px auto 56px;
}

.customer-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(255, 255, 255, .84);
    border-radius: 30px;
    background:
        radial-gradient(circle at 88% 0%, rgba(37, 99, 235, .14), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(238, 249, 242, .92));
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
}

.customer-hero h1 {
    max-width: 760px;
    margin-top: 12px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: 0;
}

.customer-hero p {
    max-width: 640px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.customer-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 18px 0;
}

.customer-kpis article,
.customer-panel {
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 24px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
}

.customer-kpis article {
    display: grid;
    gap: 8px;
    min-height: 142px;
    padding: 22px;
}

.customer-kpis span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--green-dark);
    background: #edf9f2;
}

.customer-kpis small {
    color: var(--muted);
    font-weight: 800;
}

.customer-kpis strong {
    font-size: 30px;
}

.customer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 18px;
    align-items: start;
}

.customer-main-stack {
    display: grid;
    gap: 18px;
}

.customer-panel {
    padding: 24px;
}

.customer-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.customer-panel-head h2 {
    margin-top: 8px;
    font-size: 28px;
}

.customer-order-list,
.customer-subscription-grid,
.customer-profile-form {
    display: grid;
    gap: 14px;
}

.customer-order,
.customer-subscription,
.customer-empty {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.customer-order {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.customer-order-head,
.customer-order-meta,
.customer-subscription div,
.customer-profile-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.customer-order-head small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.customer-status {
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--green-dark);
    background: #edf9f2;
    font-size: 12px;
    font-weight: 900;
}

.customer-order-items {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.customer-order-items span {
    padding: 8px 10px;
    border-radius: 999px;
    color: #40516b;
    background: #f6f9fc;
    font-size: 13px;
    font-weight: 750;
}

.customer-order-meta {
    color: var(--muted);
    font-size: 14px;
}

.customer-order-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.customer-order-meta strong {
    color: var(--ink);
    font-size: 20px;
}

.customer-subscription-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-subscription {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.customer-subscription > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #1d4ed8;
    background: #edf5ff;
}

.customer-subscription small,
.customer-subscription p {
    color: var(--muted);
}

.customer-empty {
    padding: 18px;
    color: var(--muted);
    line-height: 1.6;
}

.customer-profile-panel {
    position: sticky;
    top: 104px;
}

.customer-support-box {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 16px;
    border: 1px solid #dcece2;
    border-radius: 18px;
    background: #f8fbf8;
}
.customer-password-form {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #dcece2;
}
.customer-password-form h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #142033;
    font-size: 17px;
}
.customer-support-box h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #142033;
    font-size: 17px;
}
.customer-support-box p {
    color: #607086;
    line-height: 1.55;
}
.customer-support-box .secondary-link {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    text-decoration: none;
}

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

    .store-nav,
    .store-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .customer-hero,
    .customer-layout {
        grid-template-columns: 1fr;
    }

    .customer-kpis,
    .customer-subscription-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .customer-profile-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    .store-footer {
        width: min(100% - 20px, 1180px);
        margin: 34px auto 14px;
        border-radius: 30px 30px 22px 22px;
    }

    .store-footer > section {
        width: min(100% - 20px, 1180px);
    }

    .customer-account-main {
        width: min(100% - 20px, 1180px);
    }

    .customer-hero,
    .customer-panel {
        padding: 22px;
        border-radius: 22px;
    }

    .customer-kpis,
    .customer-subscription-grid {
        grid-template-columns: 1fr;
    }

    .customer-panel-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Full-width chrome with controlled side gap */
.store-header {
    width: calc(100% - clamp(40px, 6vw, 100px));
    max-width: none;
}

.store-footer {
    width: calc(100% - clamp(40px, 6vw, 100px));
    max-width: none;
}

.store-actions .nav-icon-button {
    position: relative;
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
    text-decoration: none;
}

.store-actions .nav-icon-button:hover {
    color: var(--green-dark);
    border-color: rgba(16, 164, 92, .24);
    background: #edf9f2;
}

.store-actions .cart-nav-button {
    color: white;
    border-color: transparent;
    background: var(--ink);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .18);
}

.store-actions .cart-nav-button:hover {
    color: white;
    background: #243047;
}

.store-actions .nav-icon-button i,
.store-actions .nav-icon-button svg {
    width: 21px;
    height: 21px;
    stroke-width: 2.35;
}

.store-actions .nav-icon-button #cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 22px;
    min-height: 22px;
    border: 2px solid white;
    color: var(--green-dark);
    background: var(--lime);
}

@media (max-width: 760px) {
    .store-header,
    .store-footer {
        width: calc(100% - 40px);
    }

    .store-actions .nav-icon-button {
        width: 46px;
        min-width: 46px;
        height: 46px;
        min-height: 46px;
    }
}

/* Final storefront polish */
.store-header .store-brand-logo,
.store-brand-logo-wide,
.store-footer .store-brand-logo-wide {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.store-footer {
    width: calc(100% - clamp(40px, 6vw, 100px));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 760px) {
    .store-header,
    .store-footer,
    .store-hero,
    .trust-strip,
    .store-section,
    .subscription-band,
    .portal-band,
    .shop-main,
    .legal-main,
    .customer-account-main {
        width: min(100% - 24px, 1180px) !important;
    }

    .store-nav,
    .store-actions,
    .hero-actions,
    .shop-hero-actions {
        flex-wrap: wrap;
    }
}

/* Conversion-focused storefront polish */
.store-body {
    background:
        radial-gradient(circle at 8% 10%, rgba(17, 132, 68, .12), transparent 24rem),
        radial-gradient(circle at 88% 18%, rgba(23, 105, 210, .10), transparent 25rem),
        #f7fbf5;
}
.store-hero {
    width: min(1240px, calc(100% - 32px));
    min-height: calc(100vh - 92px);
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}
.hero-copy h1 {
    max-width: 760px;
    font-size: clamp(44px, 6.2vw, 78px);
}
.hero-copy p {
    max-width: 680px;
    font-size: clamp(16px, 1.45vw, 20px);
}
.hero-actions .primary-link,
.shop-hero-actions .primary-link,
.home-offer-band .primary-link {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #118444, #16b86c);
    box-shadow: 0 18px 38px rgba(17, 132, 68, .24);
    font-weight: 900;
}
.hero-actions .secondary-link,
.shop-hero-actions .secondary-link {
    min-height: 50px;
    border-radius: 999px;
    font-weight: 900;
}
.hero-metrics span {
    min-width: 152px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 16px 35px rgba(15, 23, 42, .06);
}
.hero-picks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 660px;
}
.hero-pick {
    min-height: 76px;
    justify-content: flex-start;
    padding: 12px;
    border: 1px solid #dcece2;
    border-radius: 18px;
    color: #163625;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .06);
}
.hero-pick span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #118444;
    background: #e9f8ef;
}
.hero-pick strong,
.hero-pick small {
    display: block;
    text-align: left;
}
.hero-media {
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, .9);
}
.trust-strip span {
    align-content: start;
    min-height: 112px;
    border-radius: 24px;
}
.trust-strip strong {
    color: #142033;
    font-size: 15px;
}
.trust-strip span {
    color: #607086;
    line-height: 1.45;
}
.home-offer-band {
    width: min(1180px, calc(100% - 32px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin: 0 auto 28px;
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(237, 248, 241, .86)),
        #fff;
    box-shadow: 0 20px 55px rgba(15, 23, 42, .07);
}
.home-offer-band h2 {
    max-width: 760px;
    margin-top: 8px;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.08;
}
.home-offer-band p {
    max-width: 760px;
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.65;
}
.promo-banner,
.offer-section,
.conversion-strip,
.deal-banner {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}
.promo-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
    padding: clamp(22px, 3vw, 36px);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(232, 248, 238, .88)),
        #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
    overflow: hidden;
}
.promo-copy h2,
.deal-banner h2 {
    max-width: 760px;
    margin-top: 8px;
    color: #111827;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.04;
}
.promo-copy p,
.deal-banner p {
    max-width: 660px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}
.promo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}
.promo-actions .secondary-link {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    border: 1px solid #cfe3d8;
    border-radius: 999px;
    color: #143725;
    background: #fff;
    text-decoration: none;
    font-weight: 900;
}
.promo-visual {
    position: relative;
    min-height: 310px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7);
}
.promo-visual img {
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover;
    display: block;
}
.promo-tag {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: #0d5f33;
    background: rgba(255, 255, 255, .94);
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(15, 23, 42, .16);
}
.offer-section {
    margin-bottom: 28px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 30px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 22px 60px rgba(15, 23, 42, .06);
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0d7a3e;
    text-decoration: none;
    font-weight: 900;
}
.text-link svg {
    width: 18px;
    height: 18px;
}
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.offer-grid article,
.conversion-strip article {
    display: grid;
    gap: 10px;
    padding: 20px;
    border: 1px solid #dcece2;
    border-radius: 22px;
    background: #fff;
}
.offer-grid article > i,
.offer-grid article > svg,
.conversion-strip article > i,
.conversion-strip article > svg {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 16px;
    color: #118444;
    background: #e9f8ef;
}
.offer-grid span {
    color: #118444;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.offer-grid h3 {
    color: #142033;
    font-size: 22px;
}
.offer-grid p,
.conversion-strip span {
    color: var(--muted);
    line-height: 1.55;
}
.offer-grid a {
    display: inline-flex;
    width: max-content;
    margin-top: 4px;
    color: #0d7a3e;
    text-decoration: none;
    font-weight: 900;
}
.conversion-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
.conversion-strip article {
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
}
.conversion-strip article > i,
.conversion-strip article > svg {
    grid-row: span 2;
}
.conversion-strip strong {
    color: #142033;
    font-size: 17px;
}
.deal-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 30px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(16, 32, 24, .94), rgba(17, 132, 68, .9)),
        #102018;
    box-shadow: 0 26px 70px rgba(15, 23, 42, .16);
}
.deal-banner h2,
.deal-banner p {
    color: #fff;
}
.deal-banner p {
    color: rgba(255, 255, 255, .76);
}
.deal-banner .eyebrow {
    color: #b7f1ce;
}
.deal-points {
    display: grid;
    gap: 10px;
    min-width: 190px;
}
.deal-points span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .1);
    font-weight: 850;
}
.deal-points svg {
    width: 16px;
    height: 16px;
}
.deal-banner .primary-link {
    white-space: nowrap;
    background: #fff;
    color: #0d5f33;
    box-shadow: none;
}
.product-card {
    position: relative;
    overflow: hidden;
}
.product-photo {
    position: relative;
    overflow: hidden;
}
.fresh-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: #0d5f33 !important;
    background: rgba(255, 255, 255, .92) !important;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
}
.product-body {
    gap: 10px;
}
.product-meta {
    gap: 7px;
    padding: 12px;
    border-radius: 16px;
    background: #f8fbf8;
}
.product-meta small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #607086;
}
.product-meta small svg {
    width: 15px;
    height: 15px;
    color: #118444;
}
.product-card button {
    min-height: 48px;
    border-radius: 999px;
    font-weight: 900;
    background: linear-gradient(135deg, #118444, #16b86c);
    box-shadow: 0 14px 30px rgba(17, 132, 68, .18);
}
.shop-hero {
    min-height: 330px;
    align-items: center;
    background:
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, .88) 0 8rem, transparent 8.2rem),
        radial-gradient(circle at 8% 20%, rgba(16, 164, 92, .22), transparent 25rem),
        linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(235, 248, 241, .74));
}
.shop-hero h1 {
    max-width: 840px;
    font-size: clamp(36px, 4.8vw, 60px);
}
.shop-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.shop-hero-points span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid #dcece2;
    border-radius: 999px;
    color: #0d5f33;
    background: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 900;
}
.shop-hero-points svg {
    width: 16px;
    height: 16px;
}
.shop-deal-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.shop-deal-strip article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 4px 12px;
    align-items: center;
    min-height: 96px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 24px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .06);
}
.shop-deal-strip i,
.shop-deal-strip svg {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 15px;
    color: #118444;
    background: #e9f8ef;
}
.shop-deal-strip strong {
    color: #142033;
}
.shop-deal-strip span {
    color: #607086;
    font-size: 13px;
}
.shop-filter-panel,
.shop-results {
    background: rgba(255, 255, 255, .9);
}
.shop-filter-panel {
    border-radius: 28px;
}
.shop-filter-panel label {
    font-weight: 850;
}
.shop-results-head h2 {
    font-size: clamp(28px, 3vw, 38px);
}
@media (max-width: 960px) {
    .hero-picks,
    .shop-deal-strip,
    .offer-grid,
    .conversion-strip {
        grid-template-columns: 1fr;
    }
    .home-offer-band,
    .shop-hero,
    .promo-banner,
    .deal-banner {
        grid-template-columns: 1fr;
    }
    .home-offer-band .primary-link,
    .deal-banner .primary-link {
        width: 100%;
    }
}
@media (max-width: 640px) {
    .store-hero {
        width: min(100% - 24px, 1240px);
    }
    .hero-metrics span {
        width: 100%;
    }
    .home-offer-band {
        padding: 22px;
    }
    .promo-banner,
    .offer-section,
    .deal-banner {
        width: min(100% - 24px, 1180px);
        padding: 20px;
        border-radius: 24px;
    }
    .promo-actions,
    .promo-actions .primary-link,
    .promo-actions .secondary-link,
    .deal-banner .primary-link {
        width: 100%;
    }
    .promo-visual,
    .promo-visual img {
        min-height: 240px;
    }
    .conversion-strip {
        width: min(100% - 24px, 1180px);
    }
    .shop-deal-strip article {
        min-height: 86px;
    }
}

/* Subscription registration journey */
.plan-info-grid .info-card {
    cursor: pointer;
}
.plan-info-grid .info-card.active {
    border-color: rgba(17, 132, 68, .45);
    box-shadow: 0 24px 56px rgba(17, 132, 68, .14);
}
.plan-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.plan-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    color: #0d5f33;
    background: #e9f8ef;
    font-size: 12px;
    font-weight: 900;
}
.plan-info-grid .info-card button {
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    border-radius: 999px;
    font-weight: 900;
}
.subscription-flow-panel {
    width: min(1180px, calc(100% - 32px));
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: 22px;
    align-items: start;
    margin: 0 auto 34px;
}
.subscription-showcase,
.subscription-step-card {
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 30px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 24px 64px rgba(15, 23, 42, .07);
}
.subscription-showcase {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 16px;
    padding: clamp(22px, 3vw, 34px);
}
.subscription-showcase h2 {
    color: #142033;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}
.subscription-showcase p {
    color: #607086;
    line-height: 1.65;
}
.subscription-benefits {
    display: grid;
    gap: 12px;
}
.subscription-benefits article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 3px 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid #dcece2;
    border-radius: 18px;
    background: #fff;
}
.subscription-benefits svg {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 15px;
    color: #118444;
    background: #e9f8ef;
}
.subscription-benefits strong {
    color: #142033;
}
.subscription-benefits span {
    color: #607086;
    line-height: 1.45;
}
.subscription-step-card {
    padding: clamp(20px, 3vw, 28px);
}
.subscription-stepper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}
.subscription-stepper span {
    min-height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid #dcece2;
    border-radius: 999px;
    color: #607086;
    background: #f8fbf8;
    font-weight: 900;
}
.subscription-stepper span.active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #118444, #16b86c);
}
.subscription-step {
    display: none;
    gap: 14px;
}
.subscription-step.active {
    display: grid;
}
.subscription-step h2 {
    color: #142033;
    font-size: 26px;
}
.selected-plan-pill {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 2px 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid #cbeedb;
    border-radius: 18px;
    background: #f2fbf6;
}
.selected-plan-pill svg {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 15px;
    color: #118444;
    background: #fff;
}
.selected-plan-pill small {
    color: #607086;
}
.subscription-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.subscription-actions button {
    flex: 1;
    min-width: 170px;
}
.subscription-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.subscription-summary article {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid #dcece2;
    border-radius: 16px;
    background: #f8fbf8;
}
.subscription-summary span {
    color: #607086;
    font-size: 12px;
    font-weight: 800;
}
.subscription-summary strong {
    color: #142033;
}
.success-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #118444;
    background: #e9f8ef;
}
.success-icon svg {
    width: 32px;
    height: 32px;
}
#subscription-success p {
    color: #607086;
    line-height: 1.6;
}
@media (max-width: 960px) {
    .subscription-flow-panel {
        grid-template-columns: 1fr;
    }
    .subscription-showcase {
        position: static;
    }
}
@media (max-width: 640px) {
    .subscription-flow-panel {
        width: min(100% - 24px, 1180px);
    }
    .subscription-showcase,
    .subscription-step-card {
        padding: 20px;
        border-radius: 24px;
    }
    .subscription-summary {
        grid-template-columns: 1fr;
    }
    .subscription-actions button {
        width: 100%;
    }
}
