﻿

/* =================== PRODUCT LIST =================== */

#ProductList {
    padding:5% 0;
}

    /* --------------- HEADER --------------- */


#ProductList .Header{
    padding-bottom: 2%;
}

    #ProductList .Header .Title{
        text-align:center;
    }

        #ProductList .Header .Title h1 {
            color: #f8b12d;
            letter-spacing: 3px;
            font-weight: 700;
            font-size: 2.5em;
            font-family: 'Roboto', sans-serif;
            margin-bottom: 1.3% !important;
        }

        #ProductList .Header .Title .Line {
            background-color: #f8b12d;
            width:100px;
            height:6px;
            margin-left:auto;
            margin-right:auto;
            border-radius:6px;
        }

@media only screen and (max-width: 780px) {

    #ProductList {
        padding:12% 0;
    }

        #ProductList .Header {
            padding-bottom: 8%;
        }

            #ProductList .Header .Title h1 {
                letter-spacing: 2px;
                font-size: 1.9em;
                margin-bottom: 3% !important;
            }

            #ProductList .Header .Title .Line {
                background-color: #f8b12d;
                width: 80px;
                height: 4px;
                margin-left: auto;
                margin-right: auto;
                border-radius: 6px;
            }
}

    /* --------------- BODY --------------- */

    #ProductList .Body .container-fluid {
        width:85%;
        margin-left:auto;
        margin-right:auto;
    }


#ProductList .Body .Card {
   padding:2% 1.5%;
}

    #ProductList .Body .Card a{
       text-decoration:none;
       
    }


    #ProductList .Body .Card .CardBox {
        box-shadow: rgba(99, 99, 99, 0.3) 0px 2px 8px 0px;
        border-radius:10px;
    }

    #ProductList .Body .Card .Image {
        width: 100%;
        height: auto;
        padding:5px;
        border-radius: 8px;
        border:3px solid rgba(0,0,0, 0.3);
    }

        #ProductList .Body .Card .Image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

#ProductList .Body .Card .Info {
    padding:3% 0.5% 5% 0.5%;
    background-color:#f8f8f8;
    border-radius:0 0 5px 5px;
    text-align:center;
}

    #ProductList .Body .Card .Info .Text {
       height:80px;
       display:flex;
       justify-content:center;
       align-items:center;
    }

        #ProductList .Body .Card .Info .Text h2 {
            color:black;
            letter-spacing:1px;
            font-weight:500;
            margin: 0;
            font-size: 1.4em;
            font-family: 'Roboto', sans-serif;
            margin-bottom:0 !important;
        }



    #ProductList .Body .Card .Info Button {
        margin: 4% 0 3% 0;
        padding: 6px 20px !important;
        border-radius: 10px;
        background-color: #62bcaf;
        text-align: center;
        font-size: 1em;
        font-weight: 600;
        letter-spacing: 1px;
        font-family: 'Roboto', sans-serif;
        color: #fff;
    }



@media only screen and (max-width: 780px) {

    #ProductList .Body .container-fluid {
        width: 98%;
        margin-left: auto;
        margin-right: auto;
    }

    #ProductList .Body .Card {
        padding: 3% 2%;
    }
}



    /* =================== PRODUCT DETAIL =================== */

    #ProductDetail {
        padding: 5% 0;
    }

        /* --------------- IMAGE --------------- */

        #ProductDetail .ImageCol .Image {
            width: 100%;
            height: auto;
            padding: 5px;
            border-radius: 8px;
            border: 3px solid rgba(0,0,0, 0.3);
        }

            #ProductDetail .ImageCol .Image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 8px;
            }


        #ProductDetail .ImageCol .Image {
            width: 100%;
            height: auto;
            padding: 5px;
            border-radius: 8px;
            border: 3px solid rgba(0,0,0, 0.3);
        }

        /* --------------- TEXT --------------- */

        #ProductDetail .TextCol {
            display: flex;
            justify-content: center;
            align-items: center;
        }

            #ProductDetail .TextCol .Info h1 {
                color: black;
                letter-spacing: 2px;
                font-weight: 600;
                margin: 0;
                font-size: 2.2em;
                font-family: 'Roboto', sans-serif;
                margin-bottom: 4%;
            }

            #ProductDetail .TextCol .BuyOnlineButton {
                padding: 8% 0 5% 0;
            }

                #ProductDetail .TextCol .BuyOnlineButton a {
                    text-decoration: none;
                    padding: 8px 30px !important;
                    border-radius: 10px;
                    background-color: #62bcaf;
                    text-align: center;
                    font-size: 1.25em;
                    font-weight: 600;
                    letter-spacing: 1px;
                    font-family: 'Roboto', sans-serif;
                    color: #fff;
                }

            #ProductDetail .TextCol .OrderWhatsappButton {
                padding: 5% 0;
            }


                #ProductDetail .TextCol .OrderWhatsappButton a {
                    text-decoration: none;
                    padding: 8px 30px !important;
                    border-radius: 10px;
                    background-color: forestgreen;
                    text-align: center;
                    font-size: 1.25em;
                    font-weight: 600;
                    letter-spacing: 1px;
                    font-family: 'Roboto', sans-serif;
                    color: #fff;
                }


        /* --------------- DESCRIPTION --------------- */

        #ProductDetail .DescrCol {
            padding-top: 3%;
        }

            #ProductDetail .DescrCol h1 {
                color: black;
                letter-spacing: 2px;
                font-weight: 600;
                margin: 0;
                font-size: 1.6em;
                font-family: 'Roboto', sans-serif;
                margin-bottom: 1%;
            }



@media only screen and (max-width: 780px) {

    #ProductDetail {
        padding: 10% 0;
    }

        #ProductDetail .ImageCol .Image {
            width: 100%;
            height: auto;
            padding: 2px;
            border-radius: 8px;
            border: 3px solid rgba(0,0,0, 0.3);
        }

        #ProductDetail .TextCol {
            padding-top:5%;
        }

            #ProductDetail .TextCol .Info h1 {
               font-size: 1.9em;
            }


            #ProductDetail .TextCol .BuyOnlineButton a {
                text-decoration: none;
                padding: 8px 24px !important;
                border-radius: 10px;
                background-color: #62bcaf;
                text-align: center;
                font-size: 1.15em;
                font-weight: 600;
                letter-spacing: 1px;
                font-family: 'Roboto', sans-serif;
                color: #fff;
            }


                #ProductDetail .TextCol .OrderWhatsappButton a {
                    text-decoration: none;
                    padding: 8px 24px !important;
                    border-radius: 10px;
                    background-color: forestgreen;
                    text-align: center;
                    font-size: 1.15em;
                    font-weight: 600;
                    letter-spacing: 1px;
                    font-family: 'Roboto', sans-serif;
                    color: #fff;
                }



        #ProductDetail .DescrCol {
            padding-top: 5%;
        }

            #ProductDetail .DescrCol h1 {
                color: black;
                letter-spacing: 2px;
                font-weight: 600;
                margin: 0;
                font-size: 1.4em;
                font-family: 'Roboto', sans-serif;
                margin-bottom: 1%;
            }




}


/* ================ Filter Section =================== */

#MainFilterArea {
    padding-top: 0%;
    padding-bottom: 3%;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}



    #MainFilterArea .MainFilterCardBox {
        background-color: #f8b12d;
        padding: 4px 12px;
        border-radius: 8px;
    }

    #MainFilterArea .MainFilterCard .Title {
        display: flex;
        justify-content: start;
        align-items: center;
    }

        #MainFilterArea .MainFilterCard .Title .Text h3 {
            color: #fff;
            position: sticky;
            margin-bottom: 0 !important;
            font-size: 1.2em;
        }

    #MainFilterArea .MainFilterCard button {
        padding: 3px 6px;
        width: 100%;
        font-weight: 600;
        color: #414042;
        font-size: 1.2em;
        background-color: #fff;
        border-color: #fff;
    }


    #MainFilterArea .col-lg-4 {
        padding: 4px 13px !important;
    }



@media only screen and (max-width: 1375px) {


    #MainFilterArea {
        padding-top: 0%;
        padding-bottom: 3%;
        width: 88%;
    }

        #MainFilterArea .MainFilterCard .Title .Text h3 {
            margin-bottom: 0 !important;
            font-size: 1.1em;
        }
}



@media only screen and (max-width: 780px) {

    #MainFilterArea {
        padding-top: 0%;
        padding-bottom: 3%;
        width: 100%;
    }

        #MainFilterArea .MainFilterCard .Title .Text h3 {
            margin-bottom: 4% !important;
            font-size: 1.1em;
        }

        #MainFilterArea .MainFilterCard button {
            margin-top: 1% !important;
            margin-bottom: 1% !important;
        }
}


