﻿/* --- FOTOFIRST MAP/STORE STEP ENHANCED STYLES --- */

.store-step-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #f5f8fd;
    padding-bottom: 50px;
}


/* Card for initial location/search */
.store-init-card {
    background: #fff;
    padding: 3rem 2rem 2.2rem 2rem;
    border-radius: 22px;
    box-shadow: 0 3px 28px #b8cdf644;
    text-align: center;
    width: 480px;
    margin-top: 2.5rem;
}

.or-divider {
    margin: 1.1rem 0;
    color: #8fa8bc;
    font-size: 1.07rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    opacity: 0.65;
}

/* Layout: store list left, map right */
.store-list-map {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1160px;
    margin: 2.4rem auto;
    gap: 36px;
    min-height: 460px;
    justify-content: center;
    align-items: flex-start;
}

/* Store list styles */
.store-list {
    width: 350px;
    max-height: 520px;
    padding: 1.4rem 0.9rem 1.3rem 0.9rem;
    overflow-y: auto;
    background: #fbfcfe;
    border-radius: 16px;
    box-shadow: 0 2px 14px #e9edfa44;
}

.store-item {
    padding: 1.15rem 1.2rem;
    margin-bottom: 1.05rem;
    border-radius: 12px;
    border: 2.3px solid #f0f0f0;
    background: #f7faff;
    cursor: pointer;
    transition: border-color 0.19s, background 0.19s;
    text-align: left;
    box-shadow: 0 2px 8px #e6eefd23;
    position: relative;
}

    .store-item.selected,
    .store-item:hover {
        border-color: #2196f3;
        background: #eaf6fe;
        box-shadow: 0 4px 20px #c4e3fc44;
    }

    .store-item strong {
        font-size: 1.12rem;
        font-weight: 700;
        color: #18457c;
    }

    .store-item .distance {
        color: #2196f3;
        font-size: 0.98rem;
        font-style: italic;
        margin-top: 2px;
        display: block;
        font-weight: 500;
    }

    .store-item:last-child {
        margin-bottom: 0;
    }

/* MAP styles */
.store-map {
    width: 500px;
    height: 400px;
}

/* Mobile adjustments */
@media (max-width: 700px) {
    .store-init-card {
        width: 96vw;
        padding: 2rem 1.2rem 1.8rem 1.2rem;
        margin-top: 1.5rem;
    }

    .store-list-map {
        flex-direction: column;
        max-width: 100vw;
        gap: 18px;
        padding: 0 0.75rem;
    }

    .store-list {
        width: 100%;
        max-height: 260px;
    }

    .store-map {
        width: 100% !important;
        height: 55vh !important;
    }

    .store-item {
        padding: 0.85rem 0.9rem;
    }

    .store-item strong {
        display: block;
        font-size: 1.02rem;
        word-wrap: break-word;
    }

    .store-item div {
        font-size: 0.95rem;
        word-wrap: break-word;
    }

    .store-item .distance {
        font-size: 0.9rem;
    }
}
