#shops {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 15px;
}

.shop-card {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 10px 1px;
    overflow: hidden;
}

.shop-body,
.shop-footer {
    padding: 0px 10px;
}

.shop-body p {
    padding-top: 20px;
    margin: 0;
    font-weight: 700;
    font-size: 17px;
}

.shop-header {
    overflow: hidden;
}


.shop-header img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;

}

.shop-footer a {
    padding: 0;
    margin: 0;
    color: black;
    text-decoration: none;
    transition: all 0.33s ease-in-out;
}

.shop-footer a:hover {
    color: #5e5e5e;
}