/*==Banner========================*/
#banner {
    max-width: 90vw;
    height: 500px;
    border-radius: 10px;
    background-color: #cfc8c8;
    margin: 35px auto;
    position: relative;
    overflow: hidden;
    background-image: url(../img/banner/bg.png);
    background-repeat: no-repeat;
    background-size: 1000px;
    background-position: bottom right;
    padding: 25px;
    display: flex;
    align-items: center;
}

.bg-1 {
    position: absolute;
    left: -50px;
    top: -150px;
    width: 300px;
    height: 300px;
    object-fit: contain;
    object-position: center;
}

.bg-2 {
    position: absolute;
    left: 60%;
    transform: translateX(-60%);
    top: -75px;
    width: 150px;
    height: 150px;
    object-position: center;
    object-fit: contain;
}

.banner-text {
    display: flex;
    flex-direction: column;
    width: 600px;
    margin-left: 100px;
    position: relative;
}

.banner-text h1 {
    font-size: 3rem;
    line-height: 55px;
    color: #202020;
}

.banner-text h2 {
    font-size: 2rem;
    line-height: 55px;
    color: #202020;
}

.banner-text strong {
    color: #4eb060;
    font-size: 1.4rem;
    margin-top: 4px;
}

/*==popular-product========================*/
#popular-product {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 50px auto;

}

/* #popular-product{
    margin: 80px auto;
} */
.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px;
    align-items: center;
    margin: 40px 0px;
}

.product-box img {
    width: 90%;
    height: 180px;
    object-fit: contain;
    object-position: center;
    margin: auto;
}

.product-box {
    width: 100%;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    background-color: #e3e3e3;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-box:hover {
    box-shadow: #000000;
    border: 1px solid black;
}

.product-box strong {
    color: #202020;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 10px;
}

.product-box .quantity {
    color: #949494;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.product-box .price {
    margin-top: 10px;
    font-weight: 600;
    font-size: 1.4rem;
    color: #393939;
}

.product-box .cart-btn {
    width: 100%;
    height: 40px;
    background-color: #ecf7ee;
    color: #4eb060;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    transition: all ease 0.3s;
}

.product-box .cart-btn i {
    margin-right: 10px;
}

.product-box .cart-btn:hover {
    background-color: #4eb060;
    color: #ffffff;
    transition: all ease 0.3s;
}

.product-box .login-btn {
    position: absolute;
    right: 30px;
    top: 20px;
    color: #ffffff;
    font-size: 1.3rem;
}

.product-box .like-btn {
    position: absolute;
    right: 30px;
    top: 20px;
    color: #c9c9c9;
    font-size: 1.3rem;
}