/*
============================================================
 VOLTCORE AFRICA
 BIGGER PRODUCT CATALOGUE
============================================================
*/

.vc-big-product-section {
    width: 100% !important;
    box-sizing: border-box !important;
}


/*
============================================================
 PRODUCT GRID
============================================================
*/

.vc-big-product-grid {

    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(270px, 1fr)) !important;

    gap: 18px !important;

    width: 100% !important;

    box-sizing: border-box !important;

}


/*
============================================================
 PRODUCT CARD
============================================================
*/

.vc-big-product-card {

    min-width: 0 !important;

    min-height: 365px !important;

    height: 365px !important;

    display: flex !important;

    flex-direction: column !important;

    box-sizing: border-box !important;

    overflow: hidden !important;

    cursor: pointer !important;

    position: relative !important;

    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease !important;

}


/*
HOVER
*/

.vc-big-product-card:hover {

    transform:
        translateY(-5px) !important;

    border-color:
        #4bd63c !important;

    box-shadow:
        0 10px 30px rgba(0,0,0,.40) !important;

}


/*
============================================================
 PRODUCT IMAGE
============================================================
*/

.vc-big-product-card
.vc-big-product-image {

    display: block !important;

    width: 100% !important;

    height: 155px !important;

    min-height: 155px !important;

    object-fit: cover !important;

    object-position: center !important;

    flex-shrink: 0 !important;

}


/*
============================================================
 PRODUCT CONTENT
============================================================
*/

.vc-big-product-content {

    display: flex !important;

    flex-direction: column !important;

    flex: 1 !important;

    padding:
        16px 18px 17px 18px !important;

    box-sizing: border-box !important;

}


/*
============================================================
 PRODUCT NAME
============================================================
*/

.vc-big-product-name {

    display: block !important;

    margin:
        0 0 9px 0 !important;

    padding: 0 !important;

    font-size: 23px !important;

    line-height: 1.25 !important;

    font-weight: 900 !important;

    color:
        #ffffff !important;

    letter-spacing:
        0 !important;

}


/*
============================================================
 DESCRIPTION
============================================================
*/

.vc-big-product-description {

    display: block !important;

    margin:
        0 !important;

    padding: 0 !important;

    font-size: 17px !important;

    line-height: 1.48 !important;

    font-weight: 500 !important;

    color:
        #f1f5f6 !important;

}


/*
============================================================
 BOTTOM
============================================================
*/

.vc-big-product-bottom {

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    gap: 10px !important;

    margin-top: auto !important;

    padding-top: 13px !important;

}


/*
============================================================
 SPECIFICATION
============================================================
*/

.vc-big-product-spec {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    min-height: 38px !important;

    padding:
        7px 10px !important;

    box-sizing: border-box !important;

    border:
        2px solid #43c938 !important;

    border-radius:
        7px !important;

    background:
        #0a2414 !important;

    color:
        #79ed69 !important;

    font-size:
        14px !important;

    line-height:
        1.15 !important;

    font-weight:
        900 !important;

    white-space:
        nowrap !important;

}


/*
============================================================
 VIEW PRODUCT
============================================================
*/

.vc-big-product-button {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    min-height: 42px !important;

    padding:
        9px 14px !important;

    border:
        2px solid #55d545 !important;

    border-radius:
        7px !important;

    background:
        #06100a !important;

    color:
        #ffffff !important;

    font-size:
        14px !important;

    line-height:
        1.15 !important;

    font-weight:
        900 !important;

    text-decoration:
        none !important;

    white-space:
        nowrap !important;

}


/*
============================================================
 LARGE DESKTOP
============================================================
*/

@media (min-width: 1500px) {

    .vc-big-product-grid {

        gap: 22px !important;

    }


    .vc-big-product-card {

        min-height:
            390px !important;

        height:
            390px !important;

    }


    .vc-big-product-card
    .vc-big-product-image {

        height:
            170px !important;

        min-height:
            170px !important;

    }


    .vc-big-product-name {

        font-size:
            25px !important;

    }


    .vc-big-product-description {

        font-size:
            18px !important;

        line-height:
            1.5 !important;

    }


    .vc-big-product-spec {

        font-size:
            14px !important;

    }


    .vc-big-product-button {

        font-size:
            15px !important;

        min-height:
            44px !important;

    }

}


/*
============================================================
 TABLET
============================================================
*/

@media (max-width: 1200px) {

    .vc-big-product-grid {

        grid-template-columns:
            repeat(2, minmax(280px, 1fr)) !important;

    }


    .vc-big-product-card {

        height:
            370px !important;

    }

}


/*
============================================================
 MOBILE
============================================================
*/

@media (max-width: 700px) {

    .vc-big-product-grid {

        grid-template-columns:
            1fr !important;

        gap:
            18px !important;

    }


    .vc-big-product-card {

        height:
            auto !important;

        min-height:
            0 !important;

    }


    .vc-big-product-card
    .vc-big-product-image {

        height:
            auto !important;

        min-height:
            0 !important;

        aspect-ratio:
            16 / 9 !important;

    }


    .vc-big-product-content {

        padding:
            17px !important;

    }


    .vc-big-product-name {

        font-size:
            24px !important;

    }


    .vc-big-product-description {

        font-size:
            18px !important;

        line-height:
            1.55 !important;

    }


    .vc-big-product-bottom {

        align-items:
            stretch !important;

        flex-direction:
            column !important;

    }


    .vc-big-product-spec {

        width:
            fit-content !important;

    }


    .vc-big-product-button {

        width:
            100% !important;

        min-height:
            48px !important;

        font-size:
            16px !important;

    }

}
