.container {
    background-color: #fbfbfb;
    padding: 15px 0;
}

.swiper-pagination {
    position: revert;
    margin-top: 10px;
}

.container .products {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 25px;
    width: 90%;
    margin: 20px auto;
}

.container .products .product {
    border-radius: 15px;
    box-shadow: 0 0 5px #e3e3e3;
    padding: 10px;
    background-color: white;
    min-width: 23%;
    max-width: 25%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.container .products .product .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.container .products .product .top .star {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.container .products .product .top .star img {
    width: 15px;
    height: 15px;
}

.container .products .product .top .star span {
    color: #bebebe;
    font-size: 12px;
    font-family: 'YekanBakhFaNum-Regular', sans-serif;
}

.container .products .product .top .new {
    background-color: #18d418;
    color: white;
    border-radius: 15px;
    padding: 4px 10px;
    font-family: 'YekanBakhFaNum-Regular', sans-serif;
    font-size: 10px;
}

.container .products .product .top .offer {
    background-color: #e53124;
    color: white;
    border-radius: 15px;
    padding: 4px 10px;
    font-family: 'YekanBakhFaNum-Regular', sans-serif;
    font-size: 10px;
}

.container .products .product .top .disable {
    background-color: #9f9f9f;
    color: white;
    border-radius: 15px;
    padding: 4px 10px;
    font-family: 'YekanBakhFaNum-Regular', sans-serif;
    font-size: 10px;
}

.container .products .product img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.container .products .product .title {
    font-family: 'YekanBakhFaNum-Bold', sans-serif;
    font-size: 15px;
    color: black;
}

.container .products .product .description {
    font-family: 'YekanBakhFaNum-Regular', sans-serif;
    font-size: 12px;
    color: black;
    text-align: justify;
}

.container .products .product .detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container .products .product .detail .price {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container .products .product .detail .price div {
    font-family: 'YekanBakhFaNum-Regular', sans-serif;
    font-size: 14px;
    color: black;
}

.container .products .product .detail .price div span {
    font-family: 'YekanBakhFaNum-Regular', sans-serif;
    font-weight: bold;
    font-size: 15px;
    color: black;
}

.container .products .product .detail .price .price-offer {
    text-decoration: line-through;
    text-decoration-color: red;
    font-size: 10px;
    font-family: 'YekanBakhFaNum-Regular', sans-serif;
}

.container .products .product .detail .buy {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2463f5;
    border-radius: 50%;
}

.container .products .product .detail .buy.disable-buy {
    display: none !important;
}

.container .products .product .detail .price.disable-buy div,
.container .products .product .detail .price.disable-buy div span,
.container .products .product .detail .price.disable-buy .price-offer div,
.container .products .product .detail .price.disable-buy .price-offer div span {
    color: #9d9d9d !important;
}

.container .products .product .detail .buy img {
    width: 50%;
    height: 50%;
}

@media all and (max-width: 1200px) {
    .container .products .product {
        min-width: 30%;
        max-width: 35%;
    }
}

@media all and (max-width: 850px) {
    .container .products .product {
        min-width: 40%;
        max-width: 49%;
    }
}