/* ========== Home stores map block ========== */
.sz-stores {
    margin: 0 0 80px;
    scroll-margin-top: 100px;
}

.sz-stores__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: stretch;
}

.sz-stores__map-wrap {
    position: relative;
    min-height: 360px;
    border-radius: 10px;
    overflow: hidden;
    background: #e9eef3;
}

.sz-stores__map {
    width: 100%;
    height: 100%;
    min-height: 360px;
}

.sz-stores__map .leaflet-container {
    width: 100%;
    height: 100%;
    min-height: 360px;
    font-family: 'Noto Sans Armenian', sans-serif;
}

.sz-stores__pin-icon {
    display: block;
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.35));
}

.sz-stores__panel {
    border: 1px solid #E1DDDD;
    border-radius: 10px;
    background: #fff;
    padding: 28px 22px;
}

.sz-stores__panel-title {
    margin: 0 0 24px;
    font-family: 'Noto Sans Armenian', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #243F69;
}

.sz-stores__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sz-stores__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 9px;
    padding: 14px 36px;
    border: 0;
    border-radius: 100px;
    background: #243F69;
    color: #fff;
    font-family: 'Noto Sans Armenian', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.sz-stores__btn:last-child {
    margin-bottom: 0;
}

.sz-stores__btn:hover,
.sz-stores__btn.is-active {
    background: #1a2f4f;
}

.sz-stores__btn.is-active {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

@media (max-width: 991.98px) {
    .sz-stores__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .sz-stores__map-wrap,
    .sz-stores__map,
    .sz-stores__map .leaflet-container {
        min-height: 360px;
    }

    .sz-stores__panel-title {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .sz-stores {
        margin-bottom: 50px;
        scroll-margin-top: 80px;
    }

    .sz-stores__map-wrap,
    .sz-stores__map,
    .sz-stores__map .leaflet-container {
        min-height: 280px;
    }

    .sz-stores__panel {
        padding: 20px 16px;
    }

    .sz-stores__btn {
        font-size: 16px;
        padding: 11px 24px;
    }
}
/* ========== End home stores map block ========== */
