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;
}