.shops-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.shops-block__item {
    background: var(--color-primary-light);
    border-radius: var(--radius-md);
}
.shops-block__head {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 60px 18px 30px;
    position: relative;
    cursor: pointer;
}
.shops-block__head:after {
    content: "\e906";
    font-family: var(--icons);
    font-size: 14px;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
    position: absolute;
    top: 20px;
    right: 30px;
    transform: rotate(90deg);
    color: var(--color-primary-dark);
    opacity: 0.4;
}
.shops-block__body {
    padding: 12px 30px 18px;
    position: relative;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.shops-block__body:before {
    content: "";
    position: absolute;
    top: 0;
    left: 60px;
    right: 30px;
    height: 1px;
    background: var(--color-primary-dark);
    opacity: 0.2;
}
.shops-block__name {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.18;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding-left: 30px;
    position: relative;
}
.shops-block__name:before,
.shops-block__time:before,
.shops-block__phone:before {
    font-family: var(--icons);
    font-size: 18px;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color-primary-dark);
}
.shops-block__name:before {
    content: "\e916";
}
.shops-block__time:before {
    content: "\e917";
}
.shops-block__phone:before {
    content: "\e912";
}
.shops-block__address,
.shops-block__time,
.shops-block__phone {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.21;
    color: var(--color-dark-bold);
    padding-left: 30px;
    position: relative;
}
.shops-block__gallery {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-left: 30px;
    padding-top: 20px;
    position: relative;
}
.shops-block__gallery:before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    right: 0;
    height: 1px;
    background: var(--color-primary-dark);
    opacity: 0.2;
}
.shops-block__gallery-item {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 82.47%;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}
.shops-block__gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}

.shops-block__item_active {
    background: var(--color-grey-thin3);
}
.shops-block__item_active .shops-block__head:after {
    transform: rotate(-90deg);
}
.shops-block__item_active .shops-block__body {
    display: flex;
}
.shops-block__item:not(.shops-block__item_active) .shops-block__address {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shops-block__map {
    height: 320px;
    max-height: 60vh
}
@media screen and (min-width: 768px) {
    .shops-block__map {
        height: 720px;
        max-height: none;
    }
}