
/* =====================================================
   HBI HOMEPAGE
   ===================================================== */

.hbi-exact-home {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}


/* INTRO */

.hbi-intro {
    width: 100%;
    max-width: 950px;
    margin: 0 auto 22px;
    text-align: center;
}

.hbi-intro p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}


/* CATEGORY GRID */

.hbi-category-grid {
    width: 100%;
    max-width: 962px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 28px 14px;
}


.hbi-category-card {
    display: block;

    width: 100%;

    text-align: center;

    text-decoration: none !important;

    color: #222 !important;
}


.hbi-category-image {
    width: 100%;

    aspect-ratio: 0.75 / 1;

    overflow: hidden;

    background: #f5f5f5;

    margin-bottom: 12px;
}


.hbi-category-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


.hbi-category-title {
    display: block;

    padding: 0 4px;

    font-size: 17px;

    line-height: 1.2;

    font-weight: 500;
}


/* PRODUCTS */

.hbi-products-section {
    width: 100%;

    margin-top: 55px;
}


.hbi-products-section h2 {
    text-align: center;

    font-size: 27px;

    font-weight: 500;

    margin: 0 0 28px;
}


/* PRODUCT IMAGE - NEVER CROP */

.hbi-products-section
ul.products
li.product
.ct-media-container {

    aspect-ratio: auto !important;

    height: auto !important;

    overflow: visible !important;

    background: #fff !important;
}


.hbi-products-section
ul.products
li.product
.ct-media-container img {

    width: 100% !important;

    height: auto !important;

    object-fit: contain !important;

    max-height: none !important;
}


.hbi-products-section
ul.products
li.product {

    box-shadow: none !important;

    border: 0 !important;

}


/* CONTACT */

.hbi-contact-section {

    text-align: center;

    margin: 60px auto 40px;
}


.hbi-contact-section h2 {

    font-size: 25px;

    font-weight: 500;

}


/* MOBILE */

@media (max-width: 900px) {

    .hbi-category-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 25px 14px;

    }

}


@media (max-width: 600px) {

    .hbi-exact-home {

        padding: 0 10px;

    }

    .hbi-category-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 22px 10px;

    }

    .hbi-category-title {

        font-size: 14px;

    }

    .hbi-intro p {

        font-size: 14px;

    }

}

