/* ====================== */
/* Product List */
/* ====================== */
.showCaseProductContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.showCaseProductContainer .showCaseProductContent {
    padding: 0 10px;
    width: 1400px;
}

.showCaseProductContainer .showCaseProductContent .heading {
    margin-bottom: 20px;

}

.showCaseProductContainer .showCaseProductContent .productLayout {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

@media screen and (max-width: 1200px) {
    .showCaseProductContainer .showCaseProductContent .productLayout {
        grid-template-columns: repeat(4, 1fr);
    }

}


@media screen and (max-width: 1024px) {
    .showCaseProductContainer .showCaseProductContent .productLayout {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media screen and (max-width: 768px) {
    .showCaseProductContainer .showCaseProductContent .productLayout {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-cart .image {
        height: 170px !important;
    }
}

/* ====================== */
/* Search & Filter Product List */
/* ====================== */

.searchShowCaseProductContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.searchShowCaseProductContainer .searchContent {
    width: 1400px;
    display: grid;
    grid-template-columns: 1fr 4fr;
    margin: 20px 0;
    position: relative;
    margin-left: 20px;

}

.searchShowCaseProductContainer .searchContent .filterMobileResponsiveIcon {
    position: absolute;
    top: -15px;
    right: 10px;
    display: flex;
    gap: 4px;
    background-color: #ff9900;
    padding: 10px 17px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    /* display: none; */
    visibility: hidden;
    opacity: 0;
}

.searchShowCaseProductContainer .searchContent .filterMobileResponsiveIcon ion-icon {
    font-size: 18px;
    display: flex;
}

.searchShowCaseProductContainer .searchContent .filterMobileResponsiveIcon .text {
    font-size: 16px;
}

.searchShowCaseProductContainer .searchContent .FilterSide {
    height: fit-content;
    background-color: white;
    padding: 20px;
    border-radius: 6px;
}

.searchShowCaseProductContainer .searchContent .FilterSide.active {
    display: block;
}

@media screen and (max-width: 697px) {
    .searchShowCaseProductContainer .searchContent .FilterSide {
        position: fixed;
        top: 0px;
        left: 0;
        margin: 0;
        z-index: 1000;
        border-radius: 0;
        height: 100%;
        display: none;
        overflow-y: scroll;

    }
    .searchShowCaseProductContainer .searchContent .filterMobileResponsiveIcon {
        visibility: visible;
        opacity: 1;
    }

    .searchShowCaseProductContainer .searchContent { 
        display: unset;
    }

    .searchShowCaseProductContainer .searchContent {
        margin-left: 0px;
        padding: 10px;
    }
    .searchShowCaseProductContainer .searchContent .searchShowCaseProductContent {
        padding: 0px !important;
    }
}



.searchShowCaseProductContainer .searchContent .searchShowCaseProductContent {
    width: 100%;
    padding: 10px;
}

.searchShowCaseProductContainer .searchContent .searchShowCaseProductContent .heading {
    margin-bottom: 20px;
}


.searchShowCaseProductContainer .searchContent .searchShowCaseProductContent .searchProductLayout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

@media screen and (max-width: 1210px) {
    .searchShowCaseProductContainer .searchContent .searchShowCaseProductContent .searchProductLayout {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media screen and (max-width: 982px) {
    .searchShowCaseProductContainer .searchContent .searchShowCaseProductContent .searchProductLayout {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-cart .image {
        height: 170px !important;
    }

}



.searchShowCaseProductContainer .searchContent .FilterSide .filterLayout .category .categoryHeading h3 {
    margin-top: 10px;
    color: #535353;
    font-weight: 500;
}

.searchShowCaseProductContainer .searchContent .FilterSide .filterLayout .category .categoryContent {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.searchShowCaseProductContainer .searchContent .FilterSide .filterLayout .category .categoryContent .categoryItem input {
    padding: 10px;
    border-radius: 6px;
    padding-left: 4px;
    max-width: 80px;
    min-width: 60px;
    outline: none;
}

.searchShowCaseProductContainer .searchContent .FilterSide .filterLayout .category .categoryContent .categoryItem button {
    border: none;
    background-color: #ff9900;
    display: flex;
    justify-content: center;
    border-radius: 6px;
    align-items: center;
    padding: 0 10px;
}

.searchShowCaseProductContainer .searchContent .FilterSide .filterLayout .category .categoryContent .categoryItem button ion-icon {
    color: white;
    display: flex;
    font-size: 20px;
}


.checkBoxContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkBoxContainer {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 15px;
    user-select: none;
    display: flex;
    flex-direction: row;
    color: #6e6e6e;
}

/* Create a custom checkbox */
.checkmark {
    position: relative;
    top: 0;
    left: 0;
    height: 1.3em;
    width: 1.3em;
    background: white;
    border: 1px solid #606062;
    border-radius: 5px;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.30), 0px 1px 1px rgba(0, 5);
    margin-right: 10px;

}

/* When the checkbox is checked, add a blue background */
.checkBoxContainer input:checked~.checkmark {
    background-image: linear-gradient(#ff9900, #ff9900)
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkBoxContainer input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkBoxContainer .checkmark:after {
    left: 0.45em;
    top: 0.25em;
    width: 0.25em;
    height: 0.5em;
    border: solid white;
    border-width: 0 0.15em 0.15em 0;
    transform: rotate(45deg);
}


/* ================= */
/* Rating  */
/* ================= */
.rating {
    cursor: pointer;
    user-select: none;
}

.rating:not(:checked)>input {
    position: absolute;
    user-select: none;
    appearance: none;
}

.rating:not(:checked)>label {
    float: right;
    cursor: pointer;
    font-size: 26px;
    user-select: none;
    color: #666;
}

.rating:not(:checked)>label:before {
    content: "★";
}

.rating>input:checked~label {
    color: #ffa723;
    user-select: none;
}


/* Product Detail Pages */
@media screen and (max-width: 600px) {
    .product-cart .image {
        height: 170px !important;
    }

}


@media screen and (max-width: 500px) {
    .product-cart {
        padding: 6px;
    }

    .product-cart .image {
        height: 150px !important;
    }

}


@media screen and (max-width: 400px) {
    .product-cart {
        padding: 6px;
    }

    .product-cart .image {
        height: 140px !important;
    }

}