/* Fonts */

@font-face 
{
    font-family: "Monserrat-Medium";
    src: url("../fonts/Montserrat/Montserrat-Medium.ttf");
}

@font-face 
{
    font-family: "Monserrat-SemiBold";
    src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf");
}

.footer-contact
{
    font-family: 'Monserrat-Regular' !important;
    font-size: x-small !important;
    color: #333536 !important;
}

/* Page Banner */

.banner-container
{
    position: relative;
    display: inline-block;
    width: 100%;
}

.page-banner
{
    max-height: 200px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.page-banner-title
{
    font-family: 'Monserrat-SemiBold';
    font-size: xx-large;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Category */

.category-heading
{
    font-family: 'Monserrat-SemiBold';
    font-size: xx-large;
    color: #9e4b23;
    text-align: center;
}

.category-body
{
    font-family: 'Monserrat-Medium';
    font-size: medium;
    color: #a65e2e;
    text-align: center;
    line-height: 28px;
    letter-spacing: 0.5px;
}

/* Products Grid */

.products-grid
{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.product-item
{
    flex: 0 0 calc(25% - 30px);
    display: flex;
    justify-content: center;
    min-width: 250px;
}

.product-card
{
    text-align: center;
    width: 100%;
}

.product-image
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 375px;
    margin-bottom: 20px;
}

.product-image a
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.product-image img
{
    max-width: 100%;
    max-height: 375px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-image.subcategory-banner
{
    min-height: auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-image.subcategory-banner img
{
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: none;
    object-fit: cover;
}

.product-name
{
    font-family: 'Monserrat-SemiBold';
    font-size: large;
    color: #9e4b23;
    font-weight: bold;
    margin-top: 5px;
}

.category-section-title
{
    font-family: 'Monserrat-SemiBold';
    font-size: x-large;
    color: #9e4b23;
    text-align: center;
    border-bottom: 2px solid #9e4b23;
    padding-bottom: 10px;
}

@media screen and (max-width: 1200px) 
{
    .product-item
    {
        flex: 0 0 calc(50% - 20px);
    }
}

@media screen and (max-width: 768px) 
{
    .products-grid
    {
        gap: 30px;
    }

    .product-item
    {
        flex: 0 0 calc(50% - 15px);
        min-width: 200px;
    }

    .product-image
    {
        min-height: 315px;
    }

    .product-name
    {
        font-size: medium;
    }

    .category-body
    {
        font-size: small;
        line-height: 24px;
    }
}

@media screen and (max-width: 480px)
{
    .product-item
    {
        flex: 0 0 100%;
        min-width: auto;
    }
}
