body {
    overflow: auto !important;
    background: linear-gradient(to bottom,
            #030b18 0%,
            #050d1a 15%,
            #091d3a 35%,
            #0d2d55 52%,
            #1a5a8a 68%,
            #3a94c0 82%,
            #6cc8e8 95%,
            #88d8f0 100%);
}

.main {
    min-height: 100vh;
}

.nlens-card-1 {
    display: flex;
    flex-direction: column;
    background: var(--neutral-1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    width: 100%;
    margin: auto;
}

.store-list-card {
    height: 500px;
}

@media (max-width: 576px) {

    body {
        background-color: var(--neutral-1);
    }

    .nlens-card-1 {
        justify-content: center;
        height: 100%;
        max-width: 100%;
        margin: 0;
        box-shadow: unset;
        border-radius: unset;
        padding: 2rem 1rem;
        min-height: 100vh;
    }

}

.logo-onbrd {
    max-width: 140px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.divider::before {
    margin-right: .75rem;
}

.divider::after {
    margin-left: .75rem;
}

.stores_list {
    flex: 1;
    overflow: auto;
}

.stores_list .store {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.stores_list .store:not(:last-child) {
    margin-bottom: .5rem;
}

.store-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 3.5rem;
    min-height: 3.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    background: linear-gradient(to bottom,
            #030b18 0%,
            #050d1a 15%,
            #091d3a 35%,
            #0d2d55 52%,
            #1a5a8a 68%,
            #3a94c0 82%,
            #6cc8e8 95%,
            #88d8f0 100%);
    color: var(--white-color);
}

/* ---- Step progress dots ---- */
.steps-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.steps-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    transition: width 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
}

.steps-dots .dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--primary-color);
}

.steps-dots .dot.done {
    background-color: var(--primary-color);
    opacity: 0.4;
}

/* ---- Sector grid ---- */
.scroll-wrapper {
    position: relative;
}

.scroll-wrapper::before,
.scroll-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.scroll-wrapper::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
    border-radius: 10px 10px 0 0;
}

.scroll-wrapper::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
    border-radius: 0 0 10px 10px;
}

.scroll-wrapper.can-scroll-up::before {
    opacity: 1;
}

.scroll-wrapper.can-scroll-down::after {
    opacity: 1;
}

.sector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-height: 225px;
    overflow-y: auto;
    padding-right: 5px;
}

.sector-grid::-webkit-scrollbar {
    width: 6px;
}

.sector-grid::-webkit-scrollbar-track {
    background: transparent;
}

.sector-grid::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 10px;
}

.sector-option {
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    user-select: none;
    text-align: center;
}

.sector-option:hover {
    border-color: var(--primary-color);
}

.sector-option.selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}

/* ---- Utility ---- */
.btn-unstyled {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: inherit;
    line-height: 1;
}

/* ---- Custom Google Button ---- */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #ffffff;
    color: #1f1f1f;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s, border-color 0.2s;
    text-decoration: none;
    width: 100%;
}
.btn-google:hover {
    background-color: #f8f9fa;
    border-color: #d0d0d0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    color: #1f1f1f;
    text-decoration: none;
}
.btn-google img {
    width: 18px;
    height: 18px;
}

/* ========================================================
   Fullscreen Split Paywall for Onboarding (iOS/Apple Style)
   ======================================================== */

.onboarding-paywall-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    background: #ffffff;
    overflow: hidden;
}

/* Close 'X' Button (Top Right) */
.paywall-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10010;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.paywall-close-btn:hover {
    background: rgba(15, 23, 42, 0.15);
    transform: scale(1.05);
}

/* Left Column - Desktop Hero Image */
.paywall-fullscreen-left {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 100vh;
    background: #030b18;
}

.paywall-fullscreen-left-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.paywall-fullscreen-left-overlay {
    position: absolute;
    inset: 0;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.75) 100%);
}

.paywall-left-brand img {
    height: auto;
    width: 135px;
}

.paywall-left-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.25);
    border: 1px solid rgba(16, 185, 129, 0.5);
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: fit-content;
    margin-bottom: 1.25rem;
}

.paywall-left-hero-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.paywall-left-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Right Column - iOS / Apple Card Style with Platform Theme */
.paywall-fullscreen-right {
    flex: 1.1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--neutral-1, #ffffff);
    color: var(--text-color, #111827);
    overflow-y: auto;
    position: relative;
}

/* Mobile Artwork Header with gradient fade */
.paywall-mobile-art-wrapper {
    display: none;
    position: relative;
    width: 100%;
    height: 32vh;
    max-height: 230px;
    overflow: hidden;
    flex-shrink: 0;
}

.paywall-mobile-art-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.paywall-mobile-art-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 50%, var(--neutral-1, #ffffff) 100%);
}

.paywall-right-inner {
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.paywall-header-group {
    margin-bottom: 1.25rem;
}

.paywall-ios-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color, #272727);
    margin: 0 0 0.25rem 0;
}

.paywall-ios-subtitle {
    font-size: 0.88rem;
    color: var(--secondary-color-5, #7d7d7d);
    margin: 0;
    line-height: 1.4;
}

/* Features List with Clean Icon Boxes (Platform Themed) */
.paywall-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 1.25rem 0;
}

.paywall-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.paywall-feature-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary-color-6, #cdeaeb);
    color: var(--primary-color, #07989d);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.paywall-feature-text {
    display: flex;
    flex-direction: column;
}

.paywall-feature-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-color, #272727);
    line-height: 1.25;
}

.paywall-feature-sub {
    font-size: 0.78rem;
    color: var(--secondary-color-5, #7d7d7d);
    line-height: 1.3;
}

/* Price Notice */
.paywall-price-summary {
    margin-bottom: 0.75rem;
}

.paywall-price-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.paywall-price-val {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-color, #272727);
    line-height: 1;
}

.paywall-price-period {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color-5, #7d7d7d);
}

.paywall-price-notice {
    font-size: 0.8rem;
    color: var(--secondary-color-5, #7d7d7d);
    margin-top: 2px;
}

/* CTA Group */
.paywall-cta-group {
    width: 100%;
}

/* ========================================================
   Responsive Mobile
   ======================================================== */
@media (max-width: 991px) {
    .paywall-fullscreen-left {
        display: none !important;
    }

    .paywall-mobile-art-wrapper {
        display: block;
    }

    .paywall-fullscreen-right {
        flex: 1;
        width: 100vw;
        height: 100vh;
        overflow-y: auto;
    }

    .paywall-right-inner {
        padding: 0.75rem 1.5rem 1.5rem 1.5rem;
        min-height: auto;
    }

    .paywall-ios-title {
        font-size: 1.45rem;
    }

    .paywall-features-list {
        gap: 9px;
        margin: 0.85rem 0;
    }

    .paywall-feature-icon-box {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .paywall-feature-title {
        font-size: 0.85rem;
    }

    .paywall-feature-sub {
        font-size: 0.74rem;
    }

    .paywall-price-val {
        font-size: 1.75rem;
    }
}



