.store{
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    color: var(--text-white);
    max-width: 80%;
    margin: 30px auto 30px auto;
    min-height: 80vh;
}

.storeLeft{
    padding: 20px;
    border-radius: 25px;
    background: var(--products-background);
    display: flex;
    margin-right: 0px;
    min-width: 320px;
    height: 100%;
}

.filters{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.filtersTitle{
    color: var(--titles-white);
    font-weight: bold;
    font-size: 25px;
}

.filterProductType{
    margin-top: 15px;
}

.filterProductTypeTitle{
    color: var(--titles-white);
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.filterProductTypeItem{
    display: flex;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
}

.filterProductTypeItem input[type="checkbox"]{
    appearance: none; /* Remove native styling */
    -webkit-appearance: none; /* For Safari */
    display: flex;
    width: 20px;
    height: 20px;
    background: var(--button-background);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filterProductTypeItem input:checked{
    display: flex;
    width: 20px;
    height: 20px;
    background: var(--button-background-hover);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filterProductTypeItem label{
    color: var(--text-white);
    font-size: 16px;
    margin-left: 10px;
    margin-top: auto;
    margin-bottom: auto;
}

.noProductsFound{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 20px;
    color: var(--text-white);
    font-weight: bold;
}

.storeRight{
    /*border: red dotted 2px; /* For debugging purposes */
    width: fit-content;
    width: auto;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 30px;
    min-height: 100%;
}

.storeRight>*{
    margin-top: 0px;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .store{
        flex-direction: column;
        max-width: 100%;
        margin: 0px auto 0px auto;/**/
    }

    

    .storeRight{
        width: 100%;
        max-width: 100%;
        margin: 0%;
    }

    .storeRight>*{
        margin: auto;
        margin-bottom: 10px;
        margin: 0;
    }

    /*Filter related code*/

    .storeLeft{
        margin-right: auto;
        margin-top: 0px;
        margin-bottom: 20px;
        max-width: 80%;
        /*border: red dotted 2px; /* For debugging purposes */
        border-radius: 0 25px 25px 0;
        position: fixed;
        opacity: 0.98;
        z-index: 1000;
        left: -100%;/**/
        top: 150px;
    }

    .storeShowFilters{
        width: 50px;
        height: 50px;
        background-color: var(--titles-white);
        border-radius: 0 50% 50% 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 100px;
        left: 0;
        z-index: 1000;
        cursor: pointer;
    }

    .storeShowFilters img{
        width: 20px;
        height: 20px;
        object-fit: cover;
        filter: var(--filter-button);
    }

    .filtersApplyButton{
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .filtersApplyButtonItem{
        font-weight: bold;
        width: 80%;
        height: 50px;
        background-color: var(--button-background);
        color: var(--text-white);
        border-radius: 25px;
        border: none;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
}