/* General text styling */
p {
    font-family: 'Open Sans', sans-serif;
}

ul {
    margin-left: 30px;
}

/* Website banner box */
#website_banner_box {
    float: left;
    width: 50%;
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    color: white;
    background-color: black;
}

/* Category banner box styling */
#category_banner_box {
    float: left;
    width: 25%;
    text-align: center;
    box-sizing: border-box;
    min-height: 150px;
}

#category_banner_box img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 900 / 600;
}

#category_banner_box .category_text {
    font-weight: 600;
    font-size: 18px;
    color: white;
    background-color: black;
    margin: 0;
    padding: 10px;
}

#category_banner_box p:hover {
    text-decoration: underline;
}

/* Category section heading */
#category_banner_section_heading {
    background-color: black;
    color: white;
    text-align: center;
    height: 60px;
    line-height: 60px;
    width: 100%;
}

#category_banner_section_heading h2 {
    color: var(--bannerfontcolor);
    font-weight: 600;
    font-size: 2.2em;
    margin: 0;
}

.promo-banner {
    background-color: red;
    color: white;
    width: 100%;
    padding: 20px 20px;
    text-align: center;
    box-sizing: border-box;
}

.promo-banner .promo-heading {
    font-size: 3.2em;
    font-weight: 600;
    margin: 0;
}

.promo-banner .promo-subheading {
    font-size: 1.8em;
    margin-top: 10px;
    margin-bottom: 0;
}

h1 {
    color: var(--bannerfontcolor);
    background-color: black;
    margin-bottom: 0;
    padding-bottom: 10px;
    text-align: center;
    font-size: 2.0em;
    width: 100%;
}

/* Clear floats */
.clear-float {
    clear: both;
}

.product_group h2 {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Page container layout */
#page_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Multiple product container layout */
.multiple_product_container {
    width: 70%;
    margin: 0 auto;
}

/* Product container layout */
.product_container {
    width: 25%;
    margin-bottom: 10px;
    float: left;
    padding-bottom: 5px;
    text-align: center;
    min-height: 300px;
}

.product_container img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 10px;
}

/* Product description */
.list_product_description {
    font-size: 10px;
    padding-left: 10px;
    padding-right: 10px;
    height: 88px;
    overflow: hidden;
    color: black;
}

.sale_price {
    min-height: 20px;
    font-size: 14px;
    margin-left: 0;
    padding-left: 0;
    color: red;
    font-weight: 600;
    text-decoration: line-through;
}

.edlp {
    min-height: 20px;
    font-size: 14px;
    margin-left: 0;
    padding-left: 0;
    color: red;
    font-weight: 600;
}

.standard_price {
    min-height: 20px;
    font-size: 14px;
    margin-left: 0;
    padding-left: 0;
    color: blue;
    font-weight: 900 !important;
}

/* Price box */
.price_box {
    margin-top: -20px;
    color: black;
    font-weight: 600;
}

/* "More Info" button */
.learn_more {
    background-color: var(--themecolor);
    color: white;
    font-size: 10px;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    height: 34px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 34px;
}

/* Promo message */
.promo-message {
    text-align: center;
    color: red;
    font-style: italic;
    font-size: 1rem;
}

/* Responsive design */
@media only screen and (max-width: 1000px) {
    #category_banner_box {
        width: 50%;
    }

    #category_banner_box .category_text {
        font-size: 16px;
    }

    .product_container {
        width: 30%;
    }
}

@media only screen and (max-width: 480px) {
    .product_container {
        width: 50%;
    }

    .product_group h2 {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .multiple_product_container {
        width: 100%;
    }

    .list_product_description {
        font-size: 10px;
        height: 110px;
    }

    .about {
        margin-left: 2.5%;
        margin-right: 2.5%;
    }
}
