.seller {
    width: 100%;
}
.seller .container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.seller .container .shop-name{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.seller  .shop-name > div{
    text-align: right;
}
.seller  .shop-name > div h3{
    font-size: 20px ;
    font-weight: bold;
    margin-bottom: 20px;
}
.seller  .shop-name > div p{
    display: flex;
    align-items: center;
}
.seller  .shop-name > div p img{
    width: 10px;
    margin: 0 3px;
}
.seller  .shop-name img{
    margin-left: 30px;
}
.seller  .rating{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
.seller  .rating p:first-child{
    margin-left: 10px;
}
.seller  .rating ul{
    display: flex;
    align-items: center;
}
.seller  .rating ul li{
    position: relative;
    width: 30px;
    height: 30px;
    background-color: #F2F2F2;
    border-radius: 50%;
    margin: 0 5px ;
}
.seller  .rating ul li img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% ,-50%);
    width: 18px;
}
.seller  .rating p:last-child{
    margin-right: 15px;
}
.seller-products{
    padding: 60px 0;
}
.seller-products .Products-search{
    display: flex;
    justify-content: center;
    position: relative;
    width: 250px;
    margin: auto;
}
.seller-products .Products-search input{
    background-color: #F5F6FA;
    border-radius: 10px;
    padding: 10px 30px;
    font-size: 14px;
    width: 100%;
}
.seller-products .Products-search img{
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
}
.seller-products .container > h3{
    margin: 15px 0;
    text-align: right;
}

/*  */

.Products-display{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
}

.Products-display .item{
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--main-color);
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
}
.Products-display .item .item-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}
.Products-display .item .item-head .sale{
    background-color: #46CC15;
    font-size: 16px;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
}
.Products-display .item .item-img{
    display: flex;
    width: 100%;
    height: 200px;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.Products-display .item .item-content{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.Products-display .item .item-content .item-name{
    font-size: 16px;
    margin-bottom: 5px;
}
.Products-display .item .item-content .item-info{
    text-align: right;
    font-size: 14px;
    margin-bottom: 5px;
}
.Products-display .item .item-content .item-prices{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 5px;
}
.Products-display .item .item-content .item-prices p{
    font-size: 15px;
    font-weight: bold;
    margin-left: 6px;
}
.Products-display .item .item-content .item-prices p:nth-child(1){
    color: #134A1C;
}
.Products-display .item .item-content .item-prices p:nth-child(2){
    color: #34873E;
}
.Products-display .item .item-content .item-prices p:nth-child(3){
    color: var(--main-color);
}
.Products-display .item .item-content .item-tax {
    text-align: right;
    font-size: 12px;
    margin-bottom: 5px;
}
.Products-display .item .item-content .item-tax span{
    display: block;
    width: fit-content;
    margin-left: auto;
    position: relative;
}
.Products-display .item .item-content .item-tax span::after{
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: red;
}
.Products-display .item .item-content .item-count{
    font-size: 13px;
    color: #3D352D;
}
.Products-display .item .item-content .price{
    font-size: 14px;
    font-weight: bold;
    color: #000;
}


/* Start Offers */
.offers{
    background-color: #fff;
    position: relative;
}
.offers h2{
    text-align: right;
    margin-bottom: 20px;
}
.offers .offer_content{
    margin: 20px 0;
}
.offers .offer_content .item{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 20px;
    margin: 0 25px;
    box-shadow: 0px 1px 4px 0px #0a090973;
}
.offers .offer_content .item .item-head{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.offers .offer_content .item .item-head h3{
   font-size: 16px;
   margin-bottom: 5px;
}
.offers .offer_content .item .item-head p{
    font-size: 12px;
}
.offers .offer_content .item .item-img{
    margin: 10px 0;
    text-align: center;
}
.offers .offer_content .item .item-img img{
    width: 70%;
}
.offers .offer_content .item .item-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.offers .offer_content .item .item-content .seller-info{
    width: 110%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    margin-bottom: 20px;
}
.offers .offer_content .item .item-content .seller-info > img{
    width: 45px;
}
.offers .offer_content .item .item-content .seller-info p{
    font-size: 12px;
}
.offers .offer_content .item .item-content .seller-info .stars img{
    width: 10px;
    margin: 0 1px;
}
.offers .offer_content .item .item-content .porduct-prices{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.offers .offer_content .item .item-content .porduct-prices .offer{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--first-color);
    padding: 10px 0;
    border-radius: 10px;
    width: 30%;
}
.offers .offer_content .item .item-content .porduct-prices .offer:nth-child(2){
    background-color: var(--second-color);
}
.offers .offer_content .item .item-content .porduct-prices .offer:nth-child(3){
    background-color: var(--main-color);
}
.offers .offer_content .item .item-content .porduct-prices .offer div{
    text-align: center;
}
.offers .offer_content .item .item-content .porduct-prices .offer div p{
    color: #fff;
    font-size: 10px;
}
.offers .offer_content .item .item-content .porduct-prices .offer input{
    border-radius: 50%;
 }
 .offers .offer_content .item .item-content .discount{
     margin-top: 10px;
     width: 100%;
     text-align: center;
    }
.offers .offer_content .item .item-content .discount button{
        padding: 5px 15px;
        font-size: 16px;
        background-color: #F1F1F1;
        border-radius: 5px;
        color: #000;
        font-weight: bold;
        cursor: pointer;
}
.offers .offer_content .item .item-content .discount-details{
    /*display: none;*/
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}
.offers .offer_content .item .item-content .discount-details .col0 .of1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.offers .offer_content .item .item-content .discount-details .col0 .of1 div{
    margin-right: 5px;
}
.offers .offer_content .item .item-content .discount-details .col0 .of1 div p:first-child{
    color: red;
    margin-bottom: 4px;
}
.offers .offer_content .item .item-content .discount-details .col0 .of1 div p:last-child{
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
}
.offers .offer_content .item .item-content .discount-details .col1 .of1 div p:last-child{
    background-color: var(--second-color);
}
.offers .offer_content .item .item-content .discount-details .col2 .of1 div p:last-child{
    background-color: var(--first-color);
}
.offers .offer_content .item .item-content .discount-details .col3 .of1 div p:last-child{
    background-color: var(--main-color);
}
.glider2{
    padding: 40px 0;
}
/* End Offers */
