.slider {
    width: 80%;
    max-width: 1524px;
}

.tile {
    height: 400px;
    margin: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    border-radius: .5rem;
    background-color: white;
    text-decoration: none;
}

.productImage {
    width: 100%;
    height: 265px;
    background-color: grey;
    background-size: cover;
    border-radius: .5rem .5rem 0 0;
	background-position: center;
}

.productInfo {
    height: 105px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    color: black;
}
.productInfo > span {
    width: 100%;
}
.productName {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.productPrice {
    margin-top: auto;
    font-size: 22px;
    font-weight: 600;
}
.mobileButton {
    display: none;
}

@media (max-width: 640px) {
    .desktopButton {
        display: none;
    }
    .mobileButton {
        display: block;
    }
}