/* ========== Stores page ========== */
.sz-stores-page {
    padding-bottom: 80px;
    background: #fff;
}

.sz-stores-page__breadcrumb {
    padding-top: 18px;
    margin-bottom: 12px;
}

.sz-stores-page__title {
    margin: 0 0 48px;
    font-family: 'Noto Sans Armenian', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 41px;
    color: #243F69;
}

.sz-stores-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 64px;
    row-gap: 48px;
    margin-bottom: 56px;
}

.sz-stores-page__card {
    display: grid;
    grid-template-columns: 331px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.sz-stores-page__media {
    position: relative;
    width: 331px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 1px;
    background: #f4f4f4;
}

.sz-stores-page__slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
    will-change: transform;
}

.sz-stores-page__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.sz-stores-page__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sz-stores-page__dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    transform: translateX(-50%);
    pointer-events: none;
}

.sz-stores-page__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    pointer-events: auto;
}

.sz-stores-page__dot.is-active {
    background: #ED3237;
}

button.sz-stores-page__dot {
    appearance: none;
}

.sz-stores-page__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 2px;
    min-width: 0;
}

.sz-stores-page__name {
    margin: 0 0 17px;
    font-family: 'Noto Sans Armenian', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 41px;
    color: #243F69;
}

.sz-stores-page__text {
    margin: 0;
    font-family: 'Noto Sans Armenian', 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #323232;
}

.sz-stores-page__link {
    text-decoration: none;
    color: #323232;
}

.sz-stores-page__link:hover {
    color: #243F69;
}

.sz-stores-page__desc {
    margin-top: 8px;
}

.sz-stores-page__card[data-sz-store-focus] {
    cursor: pointer;
}

.sz-stores-page__card.is-map-active .sz-stores-page__name {
    color: #ED3237;
}

.sz-stores-page__map {
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    background: #e9eef3;
}

.sz-stores-page__map-canvas {
    width: 100%;
    height: 467px;
}

.sz-stores-page__map .leaflet-container {
    width: 100%;
    height: 467px;
    font-family: 'Noto Sans Armenian', sans-serif;
}

@media (max-width: 1199.98px) {
    .sz-stores-page__grid {
        column-gap: 32px;
        row-gap: 40px;
    }

    .sz-stores-page__card {
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 18px;
    }

    .sz-stores-page__media {
        width: 260px;
    }

    .sz-stores-page__name {
        font-size: 20px;
        line-height: 1.3;
    }
}

@media (max-width: 991.98px) {
    .sz-stores-page__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sz-stores-page__card {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .sz-stores-page__media {
        width: 280px;
    }

    .sz-stores-page__map-canvas,
    .sz-stores-page__map .leaflet-container {
        height: 360px;
    }
}

@media (max-width: 767.98px) {
    .sz-stores-page {
        padding-bottom: 48px;
    }

    .sz-stores-page__title {
        margin-bottom: 28px;
        font-size: 32px;
        line-height: 1.2;
    }

    .sz-stores-page__card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sz-stores-page__media {
        width: 100%;
    }

    .sz-stores-page__name {
        font-size: 22px;
        line-height: 1.3;
    }

    .sz-stores-page__map-canvas,
    .sz-stores-page__map .leaflet-container {
        height: 280px;
    }
}
