body {
    background-color: white;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
    background: white;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    color: black;
}

.productPanel {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    margin-top: 20px;
}

.productList {
    display: flex;
    gap: 60px;
    flex-direction: row;
    justify-content: center;
    background: white;
    padding: 20px;
    flex-wrap: wrap;
    max-width: 1600px;
}


.filterTools {
    width: 315px;
    height: 100%;
    /*border-right: grey 2px solid;*/
    padding: 0 20px 0 20px;
}
.filterToolsMobile {
    display: none;
}
.filterToolsWidth {
    width: 315px;
    height: 20px;
}
#stickyContainer {
    width: 315px;
    /*height: 100%;*/
}
.stickyFilters {
    width: 315px;
    top: 170px;
    left: 20px;
    position: fixed;
}
#searchContainer {
    height: 26px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
#search {
    width: 100%;
    font-size: 20px;
}
#searchButton {
    height: calc(100% + 3px);
    width: auto;
    background-color: blue;
    font-size: 18px;
}
#category {
    font-size: 20px;
    height: 26px;
}
.filterButtons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.applyFilters, .resetFilters {
    width: 45%;
    padding: 10px 0;
    border: 0;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    transition: background-color .5s ease, color .5s ease;
    text-align: center;
    color: black;
    text-decoration: none;
}
.applyFilters {
    background-color: var(--lime);
}
.applyFilters:hover {
    background-color: var(--lime-light);
}
.resetFilters {
    background-color: grey;
}
.resetFilters:hover {
    background-color: lightgray;
}

.shopPages {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 20px;
}

.shopPages > a {
    color: black;
    text-decoration: none;
    border: 1px solid #ddd;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopPages > a:hover {
    background-color: #E9E9E9;
}

.selectedPage {
    background-color: var(--lime-light);
}

.productButton {
    background: var(--lime-light);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.tile {
    width: 265px;
    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: 66.66%;
    background-color: grey;
    background-size: cover;
    border-radius: .5rem .5rem 0 0;
	background-position: center;
}
.productInfo {
    height: calc(33.33% - 30px);
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    color: black;
}
.productInfo > span {
    width: 100%;
}
.productPurchase {
    display: flex;
    flex-direction: row;
    margin-top: auto;
    font-size: 22px;
    font-weight: 600;
    align-items: center;
}
.productName {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.productCategory {
    color: grey;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
    overflow-wrap: break-word;
}
.productPrice {
    font-size: 22px;
    font-weight: 600;
}
.purchaseButton {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--tangerine);
    border-radius: 4px;
    margin-left: auto;
    font-size: 16px;
    padding: 10px;
    transition: background-color .2s linear;
    cursor: pointer;
}
.purchaseButton:hover {
    background-color: var(--tangerine-light);
}
.mobileButton {
    display: none;
}

@media (max-width: 1100px) {
    .filterTools {
        width: 215px;
    }
    #stickyContainer {
        width: 215px;
    }
}

@media (max-width: 640px) {
    .sectionTitle {
        font-size: 38px;
    }
    .productPanel {
        margin-top: 10px;
    }
    .filterTools {
        display: none;
    }
    .filterToolsMobile {
        display: flex;
        border: 0;
        width: 80%;
        padding: 10px;
    }
    #stickyContainer {
        width: 100%;
    }
    .productList {
        gap: 25px;
    }
    .tile {
        width: 150px;
        height: 225px;
    }
    .productInfo {
        padding: 5px;
        height: unset;
    }
    .productName {
        font-size: 12px;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }
    .productCategory {
        font-size: 12px;
    }
    .productPrice {
        font-size: 14px;
    }
    .purchaseButton {
        font-size: 14px;
        padding: 5px;
    }
    .desktopButton {
        display: none;
    }
    .mobileButton {
        display: block;
    }
}

@media (min-width: 2400px) {
    .stickyFilters {
        left: 10%;
    }
}