@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;700&family=Quicksand:wght@400;500;600;700&display=swap');
*{
    text-decoration: none;
}
.container .product-item {
    border: none;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    padding:0px 25px
}

.container .product-item .product {
    width: 100%;
 height: auto;
 position: relative;
 overflow: hidden;
 cursor: pointer;
 border: 1px solid #eaeaea;
 vertical-align: middle;
 align-items: center;
 display: flex;
}

.container .product-item .product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .product-item .product .icons .icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s ease;
    transform: rotate(180deg);
    cursor: pointer
}

.container .product-item .product .icons .icon:hover {
    background-color: #b71c1c;
    color: #fff
}

.container .product-item .product .icons .icon:nth-last-of-type(3) {
    transition-delay: 0.2s
}

.container .product-item .product .icons .icon:nth-last-of-type(2) {
    transition-delay: 0.15s
}

.container .product-item .product .icons .icon:nth-last-of-type(1) {
    transition-delay: 0.1s
}

.container .product-item:hover .product .icons .icon {
    transform: translateY(-60px)
}

.container .product-item .tag {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    position: absolute;
    top: 10px;
    left:35px;
    padding: 0 0.4rem
}
.container .product-item .tag-wishlist {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    position: absolute;
    top: 10px;
    right:35px;
    padding: 0 0.4rem

}
.container .product-item .tag-wishlist a{color: #1a4824;}
.container .product-item .tag-wishlist a:hover, .container .product-item .tag-wishlist a.active{color: #bb3535;}
.container .product-item .title {
    font-size: 0.95rem;
    letter-spacing: 0.5px
}

.container .product-item .fa-star {
    font-size: 0.65rem;
    color: goldenrod
}

.container .product-item .price {
    margin-bottom:5px;
    font-weight: 500; text-align: left; font-size: 15px; color: #000;
}
.add-cart-btn-group{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.add-cart{
    color: #fff; 
    text-decoration: none; 
    font-size: 12px; 
    font-weight: 500;
    border: 1px #f6be68 solid;
    text-align: center;
    padding: 3px 15px;
    background-color: #f6be68;
}
.add-cart:hover{
    background-color: #e32b24;
    color: #ffffff;
    border: 1px #e32b24 solid;
}
.fw-800 {
    font-weight: 800
}

.bg-green {
    background-color: #208f20 !important;
    color: #fff
}

.bg-black {
    background-color: #1f1d1d;
    color: #fff
}

.bg-red {
    background-color: #bb3535;
    color: #fff
}
/* 
@media (max-width: 767.5px) {

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
        background-color: #b71c1c;
        color: #fff !important
    }

    .navbar-nav .nav-link {
        border: 3px solid transparent;
        margin: 0.8rem 0;
        display: flex;
        border-radius: 10px;
        justify-content: center
    }
} */
.container .product-item .title{font-size: 14px; margin-top: 10px; color: #333;}
@media (max-width:1366px){
    .container .product-item .title{font-size: 13px; margin-top: 10px;}
  }