/* July 10, 2024 */

#page_title_box {
    width: 100%;
    border-bottom: 1px solid black;
    /* background-color: grey; */
    /* margin: 2rem 0; */
    /* margin-top: 0; */
    /* margin-bottom: 0; */
    padding: 2rem;
}
#page_title_box h1 {
    font-size: 18px;
    /* border: 1px solid red; */
    margin-left: 4rem;
}

main > div {
    width: 100%;
    height: auto;
    display: flex;
}


/* Where the search filters go. */
#main_side_panel {
    width: 200px;
    height: 100%;
    min-height: 100vh;
    border: 1px solid blue;
}



#product_selection_main {
    /* background-color: pink; */
    width: 100%;
    display: grid;
    padding: 2rem 3rem;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    row-gap: 50px;
    /* column-gap: 1px; */
}

.product_card {
    /* width: 200px; */
    height: 400px;
    /* border: 1px solid black; */
}



.product_card_image_box {
    background-color: #f1f1f1;
    padding: 40px 0;
    margin-bottom: 10px;
    margin-bottom: 20px;
}
.product_card img {
    width: 200px;
    width: 100%;
}

/* .product_card_info {
    margin-top: 15px;
} */

.product_main_title {
    font-weight: bold;
}
.product_color {
    padding-left: 5px;
    margin-bottom: 2px;
}

.product_card_info > div {
    margin-bottom: 6px;
}
.product_card_price_box {
    margin-top: 10px;
}
.product_card_pricing {
    font-weight: bold;
}








