/* Обертка страницы */
.shop-gallery-page .adress {
    margin-bottom: 56px;
    font-size: 16px;
    line-height: 19px;
    color: #333;
}

/* Сетка галереи */
.shop-gallery-page .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Элемент галереи */
.shop-gallery-page .item {
    width: 32%; /* 3 колонки */
    margin-bottom: 50px;
    position: relative;
    font-size: 0;
}

.shop-gallery-page .item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Эффект при наведении (Лупа) */
.shop-gallery-page .item .zoom-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('/bitrix/templates/aspro-allcorp3/images/zoom.png') no-repeat center, rgba(0, 0, 0, 0.3); /* Путь к картинке лупы может отличаться */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shop-gallery-page .item:hover .zoom-link {
    opacity: 1;
}

/* Заголовок серий */
.shop-gallery-page h2 {
    text-align: left;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    margin-top: 40px;
}

/* Адаптив */
@media (max-width: 991px) {
    .shop-gallery-page .item { width: 48%; }
}
@media (max-width: 600px) {
    .shop-gallery-page .item { width: 100%; }
}