.shops {
    padding: 50px;
    line-height: 1.2;
}

.shops__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.shops__subtitle {
    font-size: 22px;
    margin: 0;
    line-height: 1.2;
}

.shops__list {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.shop {
    box-shadow: rgba(0, 0, 0, 0.07) 0 20px 20px 0;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
}

.shop__picture {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.shop__body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.shop__address {
    font-size: 22px;
    font-weight: 900;
    text-align: center;
}

.shop__phone {
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    color: rgb(6, 6, 7);
}

.shop__work-time {
    font-size: 18px;
    max-width: 320px;
    text-align: center;
}

.shop__found-us {
    max-width: 500px;
    text-align: center;
}

.shop__footer {
    display: flex;
    padding: 15px 15px 30px 15px;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
}

.shop__link {
    background-color: rgb(255, 0, 0);
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s;
    font-weight: 500;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.shop__link:hover {
    background-color: #ee2f2f;
}

.shop__map {
    background-color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 12px;
    padding: 9px 20px;
    transition: all 0.3s;
    color: #525252;
    border: 2px solid #525252;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
}

.shop__map-icon {
    width: 20px;
    height: 20px;
}

.shop__map:hover {
    color: #fff;
    background-color: #525252;
}

@media (max-width: 1200px) {
    .shops__list {
        gap: 30px;
    }

    .shop__body {
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .shops__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .shops {
        padding: 30px;
    }

    .shops__title {
        font-size: 24px;
    }

    .shops__list {
        grid-template-columns: 1fr;
    }

    .shop__body {
        gap: 5px;
    }

    .shop__address {
        font-size: 18px;
    }
}