/* Color List:
#f3fafb - Off-white
#35b0aa - Teal
#308da0 - Darker teal
*/

/* Product Catagory Section */
#productCategoryContainer {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
}
#productCategoryContainer a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #35b0aa;
    width: 40%;
    height: 200px;
    margin: 10px;
}
#productCategoryContainer a:hover {
    cursor: pointer;
    background-color: #308da0;
}

/* All Products Section */

#allProductsGrid {
    display: grid;
    grid-template: 1fr 1fr 1fr 1fr / 1fr 1fr 1fr 1fr;
    gap: 20px;
    width: 80%;
    margin: auto;
}
.productItem {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    height: auto;
    padding: 10px;
    margin: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 15px rgb(179, 179, 179);
}
.productItem img {
    width: 200px;
    height: auto;
}

h3 {
    text-align: center;
    font-size: 26px;
    margin: 5px 0;
}
.USDprice {
    color: grey;
    text-align: center;
    margin-top: 5px;
}
.diamondPrice {
    color: #24c7e0;
    text-align: center;
    margin-top: 2px;
}

.viewItemPageButton {
    background-color: white;
    margin-top: 10px;
    padding: 10px;
    width: 80%;
    text-align: center;
    border-radius: 2px;
    color: #35b0aa;
    border: 2px solid #35b0aa;
}
.viewItemPageButton:hover {
    cursor: pointer;
    background-color: #e8f0f1;
}
.viewItemPageButton:active {
    background-color: #dce8e8;
}
.addToCartButton {
    background-color: #35b0aa;
    margin: 10px 0;
    padding: 10px;
    width: 80%;
    text-align: center;
    border-radius: 2px;
    color: white;
    border: 2px solid #308da0;

}
.addToCartButton:hover {
    cursor: pointer;
    background-color: #308da0;
}
.addToCartButton:active {
    cursor: pointer;
    background-color: #267889;
}

