@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* Navbar Start  */
*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.html {
    font-size: 62.5%;
}

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.navbar {
    box-shadow: 0px 5px 10px 0px #aaa;
    position: fixed;
    width: 100%;
    background: #2874F0;
    color: #ffff;
    opacity: 0.85;
    z-index: 100;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
}

.menu-items {
    order: 2;
    display: flex;
}

.logo {
    order: 1;
    font-size: 2rem;
}


.menu-items li {
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.3rem;
}

.navbar a {
    color: #ffff;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s;
    transition: color 0.3s ease-in-out;
}




.menu-items a:hover {
    /* color: #117964; */
    color: #ffff;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 2px solid yellow;
}






.navbar .active {
    /* text-decoration: underline; */
    padding-bottom: 5px;
    border-bottom: 2px solid yellow;

}


@media (max-width: 768px) {
    .navbar {
        opacity: 0.95;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines {
        display: block;
    }

    .navbar-container {
        display: block;
        position: relative;
        height: 64px;
    }

    .navbar-container input[type="checkbox"] {
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines {
        display: block;
        height: 28px;
        width: 35px;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #333;
    }

    .navbar-container .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar .menu-items {
        padding-top: 100px;
        background: #fff;
        height: 100vh;
        max-width: 300px;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 40px;
        transition: transform 0.5s ease-in-out;
        box-shadow: 5px 0px 10px 0px #aaa;
        overflow: scroll;
    }

    .navbar .menu-items li {
        margin-bottom: 1.8rem;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .logo {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }

    .navbar-container input[type="checkbox"]:checked~.menu-items {
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
        transform: rotate(-45deg);
    }

}

@media (max-width: 500px) {
    .navbar-container input[type="checkbox"]:checked~.logo {
        display: none;
    }
}


/* Navbar End */

.card-body {
    /* border: 2px solid green; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.button-box {
    /* border: 2px solid red; */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.button {
    /* border: 2px solid red; */
    padding: 10px 30px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
}

.button:hover {
    color: white;
}


.add-cart {

    background: #FF9F00;
}


.buy-now {

    background: #FB641B;
}


.price {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}

.body_container {
    display: flex;
    /* justify-content: center; */
}

.store_container {
    display: flex;
    justify-content: center;

}



.dummy_container {
    display: flex;
    flex-direction: column;
    /* position: sticky; */


    /* overflow-y:scroll ; */
}

.des {
    text-align: center;
}

.filter-box {
    /* border: 2px solid red; */
    width: 200px;
    padding-left: 20px;
    padding-right: 10px;
}

.filter-heading {
    font-size: 20px;
    font-weight: 700;
}

.filter-input {
    font-size: 18px;
    font-weight: 600;
}

input[type=checkbox] {
    width: 20px;
    height: 20px;
}


.filter-box button {
    /* border: 2px solid red; */
    margin-top: 10px;
}


.f-button-groups {
    display: flex;
    flex-direction: column;

}

.f-button-groups button {
    font-size: 18px;
    font-weight: 600;
    background: #FF9F00;
    color: black;

}


.f-button-groups button:hover {
    background: #FB641B;
    color: white;
}


.f-button-groups button::after {
    background: #FB641B;
}

.btn:active {
    box-shadow: none;
    outline: none;
    border: none;
}

.columns a{
    text-decoration: none;
    color: #333;
}

.card-title{
    text-align: center;
}