@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


@media (max-width: 992px) {
    .search-bar {
        margin-left: 20px;
        width: calc(100% - 80px);
    }

    .search-bar .menu-icon {
        right: 10px;
        left: auto;
    }
}

@media (max-width: 768px) {
    .navbar-custom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .search-bar {
        margin-top: 10px;
        width: 100%;
        margin-left: 0;
        order: 2;
    }

    .search-bar input {
        width: calc(100% - 80px);
    }

    .search-bar .menu-icon {
        right: 84px;
        left: auto;
    }

    .user-cart {
        margin-right: 10px;
        flex-direction: row;
        margin-left: 0;
        order: 3;
        margin-top: 10px;
    }

    .user-cart a {
        font-size: 0.9rem;
    }

    .user-cart i {
        font-size: 1.2rem;
    }

}
.footer {
    background-color: #FACC15;
    padding: 50px 0;
    color: #333;
}

.footer .footer-logo {
    max-width: 200px;
    
}

.footer h5 {
    font-weight: bold;
    font-size: 18px;
}

.footer a {
    color: #333;
    text-decoration: none;
    
}

.footer a:hover {
    text-decoration: underline;
}

.footer .footer-bottom {
    border-top: 1px solid #f5f2f2;
    padding-top: 10px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}