/* font */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    list-style: none;
    
}
body{
    background: #f5f6f9;
    direction: rtl;
}

:root{
    --main-color:#000;
    --dark-color: #222222;
    --parg-color: #666666;
    --name-item: #0066c0;
    --drak-red : #d01418;
    --border-color: #6666662c;
    --border : 1px solid #6666662c;
}
*::selection{
    background-color: #FB0404;
    color: #fff;
}
html{
    scroll-behavior: smooth;
}
.btn{
    padding: 15px 20px ;
    background-color: #FB0404;
    border: 2px solid #FB0404;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
}
.btn:hover{
    background-color: transparent;
    color: var(--dark-color);
}
.vv{
    display: none;
}

.pr
p{
    color: var(--parg-color);
}
.eg h1{
    display: flex;
    justify-content: center;
    font-size: 40px;
    margin: 20px 0;
}
.contanier{
    width: 80%;
    margin: auto;
}
.logo-benn{
    width: 11%;
}

.banner .boxs .box,
.banner2 .boxs .box{
    position: relative;
}
.glass-hover{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.glass-hover::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(50deg, transparent 50%, rgba(255, 255, 255, 0.1) 60%, rgba(255, 255, 255, 0.5) 70% , transparent 71%);
    background-size: 200% 100%;
    background-position: 200% 0;
    transition: 0.8s;
    cursor: pointer;
}
.glass-hover:hover:after{
    background-position: -20% 0;
}


.drobdwon{
    display: none;
    position: absolute;
    top: 100%;
    right: 0px;
    width: 200px;
    background-color: #fff;
    box-shadow: 0px 15px 30px 0px rgba(75, 67, 67, 0.342);
    border: 1px solid #b0c6c66e;
    z-index: 100;
    padding: 10px;
}
header .header-bottom .nav-links li:hover .drobdwon li::after{
    display: none;
}
.drobdwon li{
    width: 100%;
    padding: 10px 0 10px 20px !important;
    border-top: var(--border);
}
.drobdwon li:first-child{
    border: none;
}
header .header-bottom .nav-links .drobdwon li a:hover{
    color: #4e4e4e;
}
.drobdwon li a{
    width: 100%;
    padding: 5px 0 !important;
    margin-right: 0 !important;
    font-size: 13px;
}
.boxs{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* section-head */
.section-head{
    border-bottom: var(--border);
    margin-bottom: 30px;
    position: relative;
}
.section-head::after{
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: #FB0404;

}
.section-head h4{
    padding: 20px 0;
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--dark-color);

}
.section-head span{
    font-size: 24px;
    font-weight: 300;
}
.swiper-btn{
    position: absolute;
    top: 25px;
    color: #fff;
    width: 30px !important;
    font-size: 30px;
    background-color: var(--main-color);
    border-radius: 3px;
}
.swiper-btn::after{
    font-size: 20px;
    font-weight: bold;
    
}

.swiper-button-next{
    right: 0;
}
.swiper-button-prev{
    right: calc(100% - 100px) !important;
}

/* product item */
.product-item {
    border-radius: 5px;
    box-shadow: 0px 3px 8px 0px rgba(0, 3, 143, 0.1);
    border: 1px solid #b0c6c64d;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    overflow: hidden;
}
.product-item .div-img{
    position: relative;
    cursor: pointer;

}
.product-item .div-img img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0.8);
}
.product-item .div-img .hover-img{
    opacity: 0;
    transform: scale(0.8);
}
.product-item:hover .div-img .img-product{
    opacity: 0;
}
#m2 i{
    position: relative;
    top: 50px;
}
#m3 i{
    position: relative;
    top: 28px;
}
#si{
    position: relative;
    left: 8px;
    width: 70%;
}

.product-item:hover .div-img .hover-img{
    opacity: 1;
    transform: scale(1);
}

.product-item .discount{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 25px;
    background-color: var(--drak-red);
    z-index: 100;
    color: #fff;
    text-align: center;
    line-height: 25px;
}
.product-item .product-item-link{
    color: var(--name-item);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
}

.product-item .product-item-link:hover{
    text-decoration: underline;
}
.product-item .stars {
    margin: 20px 0;
}
.product-item .stars i{
    color: #FB0404;
    cursor: pointer;
}
.product-item .price span{
    color: var(--main-color);
    font-size: 18px;
    font-weight: 500;
    margin-right: 15px;
}
.product-item .price del{
    color: var(--parg-color);
    text-decoration: line-through;
    font-weight: 500;
}
.product-item .product-parg{
    margin: 20px 0;
}
.product-item .countdown {
    margin-top: 30px;
    display: flex;
}
.product-item .countdown li{
    width: 60px;
    height: 60px;
    background-color: #efeeee;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}
.product-item:hover .product-btn{
    right: 20px;
}
.product-btn{
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    z-index: 1000;
}
.product-action{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-action li{
    color: var(--dark-color);
    width: 50px;
    height: 50px;
    background-color: #efeeee;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
}
.product-action li:hover{
    background-color: #FB0404;
}
.product-action li a{
    color: #FB0404;
}
.product-action li:hover a i{
    color: #fff;
}



/* start header  */
header {
    background-color: #fff;
    border-bottom: var(--border);
}
header .header-top{
    border-bottom: var(--border);
}
header .header-top .contanier{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-top .link-top-heder a{
    color: var(--parg-color);
    line-height: 45px;
    padding: 0 20px;
    border-right: var(--border);
}
.header-top .link-top-heder a{
    font-size: 20px;
}
.header-top .link-top-heder a:last-child{
    border-right: var(--border);
    padding-right: none;
}
.header-top .link-top-heder a:hover{
    color: var(--main-color);
}
.header-top .link-top-heder i{
    font-size: 20px;
}
.link-top-heder #face:hover{
    color: #0066c0;
}
#insta:hover{
    color: purple;
}
#tik:hover{
    color: black;
}
#whats:hover{
    color: green;
}
header .header-info{
    border-bottom: var(--border);
}

header .header-info .contanier{
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
header .header-info .search-bar{
    width: 40%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--main-color);
}
header .header-info .search-bar input{
    width: 100%;
    border: none;
    outline: none;
    padding: 16px 30px 16px  20%;
}
header .header-info .search-bar .btn-srch{
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    height: 100%;
    width: 130px;
    background-color: var(--main-color);
    color: #fff;
    cursor: pointer;
}


.card{
    display: flex;
    align-items: center;
}
.card a i{
    color: var(--dark-color);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    font-size: 20px;
}
.card a{
    position: relative;
}
.card a i:hover{
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}
.card .price{
    margin-left: 20px;
    color: var(--parg-color);
    line-height: 1.8;
}
.card .count-in-card{
    position: absolute;
    top: -8px;
    left: -8px;
    background: #FB0404;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
}


header .header-bottom .contanier{
    display: flex;
    align-items: center;
    position: relative;
}
header .header-bottom .nav-links{
    margin-left: 120px;
}
header .header-bottom .nav-links li{
    display: inline-block;
    padding: 19px 0;
    position: relative;
    margin-left: 50px;
}
header .header-bottom .nav-links li:hover::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
}
header .header-bottom .nav-links li:hover .drobdwon{
    display: block;
}
header .header-bottom .nav-links li:last-child{
    margin-left: 0;
}
header .header-bottom .nav-links li a{
    color: var(--dark-color);
    font-weight: 500;
    text-transform: uppercase;
    padding: 19px 0;
}
header .header-bottom .nav-links li a i{
    font-size: 12px;
}
header .header-bottom .nav-links li a:hover{
    color: var(--main-color);
}
header .header-bottom .headr-bottom-right{
    display: flex;
    align-items: center;
}
header .header-bottom .headr-bottom-right .currency{
    padding: 0 15px;
    border-right:var(--border);
}
header .header-bottom .headr-bottom-right .lnag{
    padding: 0 0 0 15px;
}
header .header-bottom .headr-bottom-right select{
    outline: none;
    padding: 8px 5px;
    border: none;
    cursor: pointer;
}
header select:hover{
    color: var(--main-color);
}
header select option{
    cursor: pointer;
}

#open-side{
    display: none;
}


/* start slide-sec */
.slide-sec{
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.slide-sec .side-bar{
    width: 300px;
    background-color: #fff;
    border-radius: 5px;
}
.slide-sec .side-bar h5{
    color: var(--dark-color);
    padding: 20px 0px 20px 20px;
    font-size: 16px;
}
.slide-sec .side-bar h5 i{
    margin-right: 10px;
}
.slide-sec .side-bar .side-links{
    width: 100%;
}
.slide-sec .side-bar .side-links a li{
    width: 100%;
    padding: 15px 20px;
    color: var(--dark-color);
    font-weight: 500;
    text-transform: capitalize;
    border-top: var(--border);
}
.slide-sec .side-bar .side-links a li:hover{
    color: var(--main-color);
}
.slide-sec .slide{
    width: 100%;
}
.slide-sec .slide .swiper{
    height: 100%;
}
.slide-sec .slide .swiper-slide{
    height: 100%;
    width: 100%;
}
.slide-sec .slide .swiper-slide img{
    width: 100%;
    border-radius: 5px;
}
.slide-sec .swiper-pagination span{
    background-color: #fff;
    padding: 3px 15px; 
    border-radius: 30px ;
}
.slide-sec .logo-slide{
    display: none;
    width: 70%;
}
#btn-close{
    display: none;
}
.slide-sec .card{
    display: none;
}

/* start features */

.features{
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 30px;
}
.features .boxs .box{
    display: flex;
    align-items: center;
    border-right: var(--border);
    padding: 0 30px 0 0;
    justify-content: space-between;
}
.features .boxs .box:first-child{
    border: none;
    padding: 0 ;
}
.features .boxs .box img{
    width: 45px;
    margin-right: 15px;
}
.features .boxs .box .content h6{
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 13px;
}

/* start banner */

.banner{
    border-radius: 5px;
    margin-bottom: 30px;
    background: transparent;
}
.banner .boxs .box{
    width: 32%;
}
.banner .boxs .box img{
    width: 100%;
}




/* start deals */
.deals{
    margin-bottom: 30px;
    padding-bottom: 20px;
}
.deals .boxs .box{
    width: 49%;
    padding: 20px;
}
.deals .boxs .box .div-img{
    width: 50%;
    height: 360px;
}
.deals .boxs .box .content{
    width: 50%;
}





/* start sale-sec */
.sale-sec{
    margin-bottom: 40px;
    padding-bottom: 20px;
}
.boxs .box.column{
    flex-direction: column;
    text-align: center;
}

.boxs .box.column .div-img{
    width: 200px;
    height: 200px;
}
.boxs .box.column .content{
    width: 80%;
    margin-top: 20px;
}



/* slide-with-img */

.slide-with-img{
    margin-bottom: 40px;
    padding-bottom: 20px;
}
.slide-with-img .cont{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.slide-with-img .img-with-slide{
    width: 20%;
}
.slide-with-img .img-with-slide img {
    width: 100%;
    height: 100%;
    border: var(--border-color) solid 2px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out; 
}

.slide-with-img .img-with-slide img:hover {
    transform: scale(1.05); 
    border-color: var(--border-color); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}


.slide-with-img .swip-with-img{
    width: 75%;
}
.slide-with-img .boxs .box.column .div-img{
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}
.slide-with-img .swiper-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.slide-with-img .swiper-button-prev{
    right: 5px !important;
}






 /* start banner2 */

.banner2{
    border-radius: 5px;
    margin-bottom: 30px;
}
.banner2 .boxs{
    display: flex;
    justify-content: space-between;
}
.banner2 .boxs .box{
    width: 49%;
}
.banner2 .boxs .box img{
    width: 100%;
}


/* start newsletter*/




.newsletter{
    background-color: #fff;
    margin-top: 50px;
}
.newsletter .contanier{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
}
.newsletter .contanier .subscribe-content{
    display: flex;
    align-items: center;
}
.newsletter .subscribe-content img{
    margin-left: 20px;
}
.newsletter .subscribe-content .text h4{
    color: var(--dark-color);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.newsletter .subscribe-form{
    width: 40%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}
.newsletter .subscribe-form input{
    width: 100%;
    border: none;
    outline: none;
    padding: 16px 30px 16px 20%;
    border-radius: 30px;
    border: 2px solid var(--border-color);
}
.newsletter .subscribe-form .btn-srch{
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    height: 100%;
    width: 150px;
    background-color: var(--main-color);
    color: #fff;
    cursor: pointer;
}


/* back-top */
.back-top{
    width: 100%;
    text-align: center;
}
.back-top a{
    display: block;
    border-radius: 0;
    background: #4d5669;
    color: #ffffff;
    text-transform: uppercase;
    padding: 22px 0;
    width: 100%;
    font-weight: 500;
}
.back-top a:hover{
    color: #FB0404;
}

/* footer */

footer{
    background-color: #394150;
}
footer .top-footer{
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
}
footer .top-footer .row img{
    width: 30%;
}
footer .top-footer .row{
    width: 25%;
}

footer .top-footer .small-row{
    width: 15%;
}
footer .top-footer .row .hotline{
    display: flex;
    align-items: center;
    margin: 20px 0;
}
footer .top-footer .row .hotline i{
    color: #32CD32;
    font-size: 60px;
    margin-right: 15px;
}
footer .top-footer .row .hotline .hotline-text h6{
    color: #dddddd;
    margin-bottom: 10px;
    font-size: 16px;
}
footer .top-footer .row .hotline .hotline-text span{
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
}
footer .top-footer .row p{
    color: #ddd;
    margin-bottom: 10px;
}
footer .top-footer .small-row{
    width: 15%;
}
footer .top-footer .small-row h6{
    color: #ddd;
    font-size: 18px;
    margin-bottom: 30px;
}
footer .top-footer .small-row .links-row{
    display: flex;
    flex-direction: column;
}
footer .top-footer .small-row .links-row a{
    color: #ddd;
    margin-bottom: 12px;
    position: relative;
    right: 0;
}
footer .top-footer .small-row .links-row a i{
    margin-left: 5px;
}
footer .top-footer .small-row .links-row a:hover{
    color: #FB0404;
    right: 10px;
    text-decoration: underline;
}
footer .payment img{
    filter: grayscale(100%);
    cursor: pointer;
}
footer .payment img:hover{
    filter: grayscale(0%);
}

footer .bottom-footer{
    background-color: #202935;
}
footer .bottom-footer .contanier{
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .bottom-footer .contanier p span{
    color: var(--main-color);
}



















/*mycart index */


.cart{
    background-color: #fff;
    padding: 60px 0 120px;
}

.opc-sidebar{
    width: 70%;
    margin: auto;
    border: 1px solid #FB0404;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 50px;
}

.opc-sidebar h4{
    font-size: 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid #6666665b;
    padding-bottom: 20px;
}
.opc-sidebar .totl{
    margin-bottom: 20px;
    font-size: 18px;
}

.opc-sidebar .opc-box .cont-p{

    padding-bottom: 15px;
}


.opc-sidebar .item {
    border-top: 1px solid #6666662c;
    display: flex;
    align-items: center;
    padding: 20px 0;
}
.opc-sidebar .item img{
    width: 100px;
    margin-left: 10px;
}
.opc-sidebar .item p{
    margin-bottom: 10px;
}
.opc-sidebar .btn-div{
    text-align: center;
    padding: 20px 0;
}
.opc-sidebar .btn{
    padding: 10px 25px;
    
}










.row .coupon-all{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
    text-align: center;
}
.row .coupon-all .coupon input{
    outline: none;
    border: 2px solid var(--border-color);
    padding: 12px;
    margin-right: 20px;
    font-size: 16px;
}
.row .coupon-all .coupon input:focus{
    border-color: #FB0404;
}
.row .coupon-all button{
    padding: 16px 50px;
    border: 2px solid #FB0404;
    background-color: transparent;
    border-radius: 30px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
}
.row .coupon-all button:hover{
    background-color: #FB0404;
    color: #fff;
}

.row .cart-page-total h2{
    color: var(--dark-color);
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}
.row .cart-page-total ul{
    border: var(--border);
    width: 350px;
    margin-bottom: 50px;
}
.row .cart-page-total ul li{
    list-style: none;
    font-size: 15px;
    color: #6f7172;
    padding: 20px 30px;
    border-bottom: var(--border);
    font-weight: 400;
    display: flex;
    justify-content: space-between;
}
.row .cart-page-total ul li span{
    float: right;
}
.row .cart-page-total .button{
    padding: 16px 50px;
    border: 2px solid #FB0404;
    background-color: #FB0404;
    color: #fff;
    border-radius: 30px;
    text-transform: uppercase;
}
.row .cart-page-total .button:hover{
    background-color: transparent;
    color: var(--dark-color);
}


/* infromation user and oreder */


.cont-box-info{
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
}
.cont-box-info .box{
    width: 48%;
    margin-bottom: 20px;
}
.cont-box-info .brd-box{
    border: 1px solid #FB0404;
    margin-bottom: 15px;
    border-radius: 5px;
}
.cont-box-info h4{
    background: #FB0404;
    padding: 15px;
    color: #fff;
}
.cont-box-info .pad-box{
    padding: 20px;
}
.cont-box-info h5{
    margin-bottom: 20px;
}
.cont-box-info .info-acount,
.cont-box-info .radio-inp{
    margin-bottom: 20px;

}
.cont-box-info .show-inp-new-info .div-inp{
    margin-bottom: 25px;
    position: relative;
}

.cont-box-info .show-inp-new-info .div-inp input{
    padding: 12px 40px 12px 10px;
    border-radius: 30px;
    outline: none;
    border: 1px solid #6666666b;
    width: 100%;
    height: 100%;

}

.cont-box-info .show-inp-new-info .div-inp input:focus{
    border-color: #FB0404;
}

.cont-box-info .show-inp-new-info .div-inp i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    color: #FB0404;
}










/* product buy bag */
.buy-product-bag{
    background-color: #fff;
}
.product-details{
    padding: 10px 0 80px;
}
.product-details .product-buy{
    display: flex;
}
.product-details .product-buy .img-product{
    width: 60%;

}
.product-details .product-buy .img-product img{
    width: 100%;
}
.product-details .product-buy .product-name-price{
    width: 58%;
}
.product-details .product-buy .img-product .small-img img{
    width: 100px;
    cursor: pointer;
}
.product-details .product-name-price {
    padding-top: 60px;
}
.product-details .product-name-price .product-item-link{
    color: var(--dark-color);
    font-size: 22px;
    font-weight: 500;
}
.product-details .product-name-price .stars{
    margin: 20px 0;
}
.product-details .product-name-price .stars i{
    color:#FB0404;
    cursor: pointer;
}
.product-details .product-name-price .price span{
    color: var(--main-color);
    font-size: 20px;
    font-weight: bold;
    margin-left: 30px;
}
.product-details .product-name-price .price del{
    font-size: 20px;
    color: var(--parg-color);
    text-decoration: line-through;
}
.product-name-price .stock-model{
    margin: 30px 0;
}
.product-name-price .stock-model p{
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 500;
}
.product-name-price .stock-model p span{
    color: var(--main-color);
    margin-left: 10px;
}
.product-name-price .product-text{
    line-height: 1.7;
    margin-bottom: 30px;
}
.product-name-price h6{
    color: var(--dark-color);
    font-size: 18px;
}
.product-name-price form{
    display: flex;
    margin: 50px 0;
}
.product-name-price form button{
    padding: 14px 40px !important;
    margin-left: 15px;
}
.product-name-price form .quantity{
    margin-right: 20px;
}
.product-name-price form .quantity span{
    font-size: 18px;
}

.product-name-price form input{
    border: none;
    outline: none;
    font-size: 18px;
    width: 120px;
    padding: 10px;
    margin-right: 5px;
    border: 1px solid #666666a6;
    border-radius: 5px;
    
}
.product-name-price form input:focus{
    border-color: #FB0404 !important;
}
.product-name-price form  button{
    padding: 15px 60px ;
    background-color: #FB0404;
    border: 2px solid #FB0404;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
}
.product-name-price form  button:hover{
    background-color: transparent;
    color: var(--dark-color);
}
.product-name-price form  button.addtcart{
    background-color:var(--main-color);
    border: 2px solid var(--main-color);
}
.product-name-price form  button.addtcart:hover{
    background-color: transparent;
}
.product-name-price .product-action{
    position: relative;
    flex-direction: row;
}
.product-action li{
    margin-right: 15px;
    margin-bottom: 0;
    cursor: pointer;
}

.details h3{
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 20px;
}
.details p{
    line-height: 1.7;
    margin-bottom: 30px;
}

/* اشتري  الأن */
.creatacountfast {
    height: 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.creatacountfast .contfast{
    opacity: 0;
    display: block;
}
.creatacountfast .contfast form{
    display: block;
}
.creatacountfast .contfast form input{
    margin-bottom: 10px;
}
.creatacountfast .contfast form button{
    margin-top: 25px;
}
.creatacountfast.active{
    height: auto;
    transition: 0.3s;
    height: 10vh;
}
.creatacountfast.active .contfast{
    position: relative;
    opacity: 1;
}
.creatacountfast h4{
    font-size: 25px;
    color: #222;
}
.creatacountfast form input{
    width: 200px;
    margin-left: 15px;
}



@media (max-width: 1400px){
    .contanier{
        width: 90%;
    }
    .slide-sec .side-bar{
        width: 230px;
    }
    .slide-sec .slide{
        width: 100%;
    }
    .slide-sec .side-bar h5{
        font-size: 14px;
    }
    .slide-sec .side-bar .side-links a li{
        padding: 10px 20px ;
    }
    .features .boxs .box{
        padding: 0 10px 0 0;
        margin-left: 10px;
    }
}

@media (max-width: 1200px) {
  
    header .header-info .search-bar{
        width: 60%;
    }
    .slide-sec .side-bar{
        width: 400px;
        position: fixed;
        top: 0;
        right: -500px;
        bottom: 0;
        z-index: 100;
        padding: 40px 20px;
        box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    }
    .slide-sec .side-bar.active{
        right: 0;
    }
    .slide-sec .side-bar.active::before{
        left: 0;
        opacity: 1;
        z-index: 10;
    }
    .slide-sec .side-bar::before{
        content: '';
        position: fixed;
        top: 0;
        left: -100%;
        opacity: 0;
        width: calc(100% - 400px);
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.352);
        z-index: -2;
        transition: 0.3s;
    }
    .slide-sec .side-bar h5{
        display: none;
    }
    .slide-sec .side-bar .side-links a li{
        padding: 17px 20px ;
        font-size: 16px;
    }
    
    .slide-sec .logo-slide{
        display: block;
        padding: 20px 20px 50px;
    }

    .slide-sec .slide{
        width: 100%;
    }

    /* start .features */
    .features .boxs{
        flex-wrap: wrap;
        justify-content: left;
    }
    .features .boxs .box{
        padding: 30px 20px;
        width: 32%;
        border-bottom: var(--border);
        border-right: none;
    }
    .features .boxs .box:last-child{
        padding: 30px;
    }
    .features .boxs .box:nth-child(4){
        border-bottom: none;
    }
    .boxs .box.column .content{
        width: 95%;
    }
    .slide-with-img .img-with-slide{
        width: 30%;
    }
    .slide-with-img .swip-with-img{
        width: 65%;
    }
    .newsletter .subscribe-form .btn-srch{
        height: 100%;
        width: 110px;
        font-size: 13px;
    }
    footer .top-footer{
        flex-wrap: wrap;
    }
    footer .top-footer .row{
        width: 35%;
        margin-bottom: 50px;
    }
    footer .top-footer .small-row{
        width: 25%;
    }
    header .header-bottom .nav-links li{
        margin-left: 35px;
    }
}

@media (max-width: 950px){
    header .header-bottom .nav-links li a{
        margin-right: 40px;
    }
    header .header-bottom .nav-links{
        margin-left: 0;
    }
    header .header-bottom .nav-links li{
        margin-left: 0;
    }
    header .header-top p,
    header .header-top a
    {
        font-size: 12px;
    }
    .banner .boxs,
    .banner2 .boxs {
        flex-wrap: wrap;
    }
    .banner .boxs .box{
        width: 48%;
        margin-bottom: 20px;
    }
    .banner2 .boxs .box{
        width: 100%;
        margin-bottom: 20px;
    }
    .features .boxs .box{
        width: 45%;
    }
    .features .boxs .box:nth-child(4){
        border-bottom:var(--border);
    }
    .newsletter .contanier{
        justify-content: center;
        flex-direction: column;
        gap: 40px;
    }
    .newsletter .subscribe-form{
        width: 70%;
    }

    .creatacountfast .contfast form{
        display: flex;
        flex-direction: column;
      
    }
    .creatacountfast .contfast form input{
        width: 300px;
    }
    .creatacountfast.active{
        height: 10vh;
    }

   
    .cont-box-info .box{
        width: 48%;
        margin-bottom: 20px;
    }
    .cardt{
        margin-right: 12px;
    }
}
@media (max-width: 700px){
    header .header-top p{
        display: none;
    }
    header .header-top .contanier{
        justify-content: center;
    }
    header .header-bottom .nav-links{
        display: none;
    }
    header .header-info .contanier{
        flex-direction: column;
        gap: 25px;
    }
    header .header-bottom{
        padding: 20px 0;
    }
    header .header-info .search-bar{
        width: 80%;
    }

    .banner .boxs .box{
        width: 100%;
        margin-bottom: 20px;
    }
    .banner2 .boxs .box{
        width: 100%;
        margin-bottom: 20px;
    }
    .product-item {
        padding: 15px 10px;
    }
    .boxs .box.column .div-img{
        width: 150px;
        height: 150px;
    }
    .product-item .product-item-link{
        font-size: 13px;
    }
    .product-item .price span{
        font-size: 14px;
    }
    .slide-with-img .cont{
        flex-direction: column;
        justify-content: center;
    }
    .slide-with-img .img-with-slide{
        width: 60%;
        margin: auto;
    }
    .slide-with-img .swip-with-img{
        width: 100%;
    }
    .newsletter .subscribe-form{
        width: 90%;
    }
    footer .top-footer .row{
        width: 50%;
    }
    
    footer .top-footer .small-row{
        width: 32%;
    }
    footer .bottom-footer .contanier{
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }
    .cont-box-info{
        flex-wrap: wrap;
    }
    .cont-box-info .box{
        width: 100%;
        margin-bottom: 20px;
    }
    .opc-sidebar{
        width: 90%;
    }
    .logo-benn{
        width: 20%;
    }
    .vv{
        display: inline;
    }

}
@media ((min-width: 400px) and (max-width:499px)){
    .cardt{
        margin-right: 50px;
    }


    .vv{
        display: inline;
    }


}
@media (max-width: 600px){
    .contanier{
        width: 80%;
    }
    .features .boxs .box{
        width: 100%;
    }
    header .header-info .search-bar{
        width: 90%;
    }
    header .header-info .search-bar input{
        font-size: 12px;
    }
    .slide-with-img .img-with-slide{
        width: 100%;
    }
    .section-head h4{
        font-size: 20px;
    }
    .deals .boxs .box{
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    .deals .boxs .box .div-img{
        width: 70%;
        height: 300px;
    }
    .deals .boxs .box .content{
        width: 100%;
    }
    footer .top-footer .row{
        width: 100%;
    }
    footer .top-footer .small-row{
        width: 48%;
    }
    .logo-benn{
        width: 25%;
    }
}
@media (max-width: 500px){
    .contanier{
        width: 90%;
    }
    .header-top .link-top-heder a{
        padding: 0 10px;
    }
    header .header-info .search-bar{
        width: 100%;
    }
    .creatacountfast .contfast form{
    align-items: center;
      
    }
    .creatacountfast .contfast form input{
        width: 280px;
    }
    .creatacountfast.active{
        height: 10vh;
    }
    header .header-info .search-bar .btn-srch{
        width: 90px;
    }
    footer .top-footer .row img{
        width: 45%;
        margin-right: 75px;
    }
    .logo-benn{
        width: 30%;
    }
    .eg h1{
        font-size: 14px;
    }

}

@media (width: 500px){
    .cardt{
        margin-right: 80px;
    }
}







/* buy product page */
.buy-product-bag.menu-side-in-bag{
    background-color: #fff;
}
.menu-side-in-bag .slide-sec .side-bar{
    width: 400px;
    position: fixed;
    top: 0;
    right: -500px;
    bottom: 0;
    z-index: 100;
    padding: 40px 20px;
    box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}
.menu-side-in-bag .slide-sec .side-bar.active{
    right: 0;
}
.menu-side-in-bag .slide-sec .side-bar.active::before{
    left: 0;
    opacity: 1;
    z-index: 10;
}
.menu-side-in-bag .slide-sec .side-bar::before{
    content: '';
    position: fixed;
    top: 0;
    left: -100%;
    opacity: 0;
    width: calc(100% - 400px);
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.352);
    z-index: -2;
    transition: 0.3s;
}
.menu-side-in-bag .slide-sec .side-bar h5{
    display: none;
}
.menu-side-in-bag .slide-sec .side-bar .side-links a li{
    padding: 17px 20px ;
    font-size: 16px;
}
.menu-side-in-bag #btn-close{
    display: block;
    position: absolute;
    top: 50px;
    left: 50px;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    background-color: var(--main-color);
    border-radius: 50px;
    font-size: 20px;
    color: #fff;
}
.menu-side-in-bag .slide-sec .logo-slide{
    display: block;
    padding: 20px 20px 50px;
}
.menu-side-in-bag .slide-sec{
    display: block;
}
.menu-side-in-bag #open-side{
    display: block;
    font-size: 18px;
    cursor: pointer;
    margin-left: 50px;
    border: 2px solid #000;
    padding: 4px  6px;
    border-radius: 5px;
}
.menu-side-in-bag #open-side:hover{
    background-color: #e4e1e1;
}

@media (max-width: 950px){
    
    .product-details .product-buy .img-product{
        width: 50%;
    }
    .product-details .product-buy .img-product img{
        width: 100%;
    }
    .product-details .product-buy .product-name-price{
        width: 50%;
    }
    .product-details .product-buy .img-product .small-img img{
        width: 80px;
    }
    .product-name-price form input{
        margin-right: 25px;
        width: 60px;
    }
    .product-name-price form  button{
        padding: 13px 35px;
        font-size: 13px;
    }
}
@media (max-width: 700px){
    .product-details .product-buy{
        flex-direction: column;
    }
     
    .product-details .product-buy .img-product{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .product-details .product-buy .img-product img{
        width: 50%;
        margin: auto;
    }
    .product-details .product-buy .img-product .small-img {
        margin: auto;
    }
    .product-details .product-buy .product-name-price{
        width: 100%;
    }
}
@media (max-width: 600px){
    .product-details .product-buy .img-product img{
        width: 70%;
        margin: auto;
    }
}
@media (max-width: 500px){
    .product-details .product-buy .img-product img{
        width: 85%;
        margin: auto;
    }
   
}


/* my cart */
@media(max-width:950px){
    th,td{
        padding:10px 25px;
    }
    th{
        font-size: 14px;
    }
    .product-name a{
        font-size: 14px;
    }
    td .amount{
        font-size: 18px;
    }
    td input{
        width: 75px;
    }
    .cart img{
        width: 120px;
    }
    .row .coupon-all .coupon input{
        width: 160px;
    }
    .cart .table-content{
        display: flex;
        justify-content: flex-start;
        margin-bottom: 60px;
        padding: 0 40px;
        overflow-x: auto;
    }
    .row .coupon-all{
        flex-direction: column;
        gap: 40px;
    }
}
@media(max-width:500px){
    .row .coupon-all button{
        padding: 16px 30px;
    }
    .row .cart-page-total ul{
        width: 100%;
    }
    .menu-side-in-bag .slide-sec .side-bar{
        width: 100%;
    }
    .menu-side-in-bag .slide-sec .side-bar::before{
        content: '';
        position: fixed;
        top: 0;
        left: -100%;
        opacity: 0;
        width: calc(100% - 500px);
    }
    .row .coupon-all .coupon input{
        width: 90%;
        margin: auto;
    }
    #m2 i{
        position: relative;
        top: 20px;
    }
}








/* feature-bag */
.feature-bag .top-catg img{
    width: 100%;
    margin-bottom: 40px;
}


.feature-bag .top-fuature{
    text-align: center;
    margin: 80px 0;

}
.feature-bag .top-fuature h1{
    color: var(--main-color);
    font-size: 40px;
    margin-bottom: 30px;


}
.feature-bag .top-fuature p{
    font-size: 18px;
    width: 50%;
    margin: auto;
}
.feature-bag .boxs{
    flex-wrap: wrap;
}
.feature-bag .boxs .box{
    width: 18%;
    margin-bottom: 50px;
    position: relative;
}
.feature-bag  .btn-page{
    text-align: center;
}
.feature-bag  .btn-page li{
    display: inline-block;
    margin: 15px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background-color: #efeeee;
    cursor: pointer;
    color: #FB0404;
}
.ddd{
    color: red;
}
.dd:hover .ddd{
    color: white;
}
.feature-bag  .btn-page li:hover,
.feature-bag  .btn-page li.active{
    background-color: #FB0404;
    color: #fff;
}

@media(max-width:1200px){
    .feature-bag .boxs .box{
        width: 22%;
        margin-bottom: 50px;
    }
}

@media(max-width:950px){
    .feature-bag .top-fuature h1{
        font-size: 30px;
    }
    .feature-bag .top-fuature p{
        font-size: 16px;
        width: 70%;
    }
    .feature-bag .boxs .box{
        width: 30%;
        margin-bottom: 50px;
    }
    .feature-bag  .btn-page li{
        display: inline-block;
        margin: 8px;
        width: 40px;
        height: 40px;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        background-color: #efeeee;
        cursor: pointer;
        color: var(--dark-color);
    }
}

@media(max-width:600px){
    .feature-bag .boxs .box{
        width: 48%;
        margin-bottom: 50px;
    }
    .feature-bag .top-fuature h1{
        font-size: 25px;
    }
    .feature-bag .top-fuature p{
        font-size: 14px;
        width: 90%;
    }
    .feature-bag .top-fuature{
        text-align: center;
        margin: 50px 0;
    
    }
}
.aboutus{
    display: flex;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 20px;
}
.str{
    font-size: 30px;
    margin-bottom: 20px;
}
.cards-s{
    display: flex;
    justify-content: space-between;
}
.spn{
    font-size: 25px;
    margin-bottom: 10px;
}
.Aboutc{
    font-size: 18px;
    letter-spacing: 0.5px;
}
.cardt{
    width: 250px;
    padding: 20px;
    margin-top: 70px;
    margin-bottom: 50px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s, box-shadow 0.3s; 
}
.cardt:hover {
    transform: scale(1.05); 
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}
.icon, .strr {
    display: block;
    height: auto; 
    width: 100%;
    margin-bottom: 20px;
}
.storyh2{
    font-size: 18px;
    margin: 10px 0;
    color: #333;
}

.pcard{
    font-size: 18px;
    color: #666;
    margin-top: 15px;
}
.faq{
    max-width: 700px;
    margin-top: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--main-color);
    cursor: pointer;
}

.question{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.question h3{
    font-size: 1.8rem;
}
.answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.4s ease;
}
.faq.active .answer{
    max-height: 300px;
    animation: fade 1s  ease-in-out;
}
.faq.active i{
    transform: rotate(180deg);
}
.qustion{
    transition: transform 0.5s ease-in;
}
.answer p{
    padding-top: 1rem;
    line-height: 1.6;
    font-size: 1.4rem;
}
@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

::-webkit-scrollbar{
    width: 15px;
}
::-webkit-scrollbar-track{
    border-radius: 20px;
    background-color: var(--parg-color);
}
::-webkit-scrollbar-thumb{
    border-radius: 20px;
    background-color: var(--name-item);
}

@media(max-width:700px){
    .cards-s{
        display: block;
    }
}
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: linear-gradient(130deg, rgb(12, 139, 12), rgb(209, 143, 20));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    font-family: Arial, sans-serif;
    z-index: 1000;
    transition: opacity 1s ease-in-out;
}

.loader {
    width: 100px;
    height: 60px;
    background: url('nwimgs/Logo/logo-removeBackground.png') no-repeat center center;
    background-size: cover;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.rig img{
    width: 60%;
    position: relative;
    right: 40%;
    top: 100%;
}
.contactus{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70vh;
}

.poh{
    position: relative;
    right: 50px;
    display: flex;
    margin: 20px;

}
.poh h1{
    font-size: 20px;
}
.poh i{
    margin-right:20px ;
    font-size: 20px;
}
main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

main h1 {
    color: #002147;
    text-align: center;
    margin-bottom: 1.5rem;
}

main article {
    margin-bottom: 1.5rem;
}

main article h2 {
    color: #002147;
    margin-bottom: 0.5rem;
}

main article p {
    line-height: 1.6;
}
.return-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.return-container .return-title {
    color: #002147;
    text-align: center;
    margin-bottom: 1.5rem;
}

.return-container .return-article {
    margin-bottom: 1.5rem;
}

.return-container .return-subtitle {
    color: #002147;
    margin-bottom: 0.5rem;
}

.return-container .return-text, .return-container .return-list {
    line-height: 1.6;
}

.return-container .return-list {
    padding-right: 1.5rem;
    list-style-type: disc;
}
.tracking-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tracking-title {
    color: #002147;
    text-align: center;
    margin-bottom: 1.5rem;
}

.tracking-article {
    margin-bottom: 1.5rem;
}

.tracking-subtitle {
    color: #002147;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.tracking-text {
    line-height: 1.6;
    color: #555;
}
.support-container {
    max-width: 800px;
    margin: 4.8rem auto;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.support-title {
    color: #002147;
    text-align: center;
    margin-bottom: 1.5rem;
}

.support-article {
    margin-bottom: 1.5rem;
}

.support-subtitle {
    color: #002147;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.support-text, .support-list {
    line-height: 1.6;
    color: #555;
}

.support-list {
    padding-right: 1.5rem;
    list-style-type: disc;
}
.addtcart a{
    color: white;
}
.addtcart a:hover{
    color: black;
}
form a{
    padding: 15px 20px ;
    background-color: #FB0404;
    border: 2px solid #FB0404;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    margin-left: 10px;
}
form a:hover{
    background-color: transparent;
    color: var(--dark-color);
}
.sect {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fff;
    color: #222;
    text-align: center;
    font-family: Arial, sans-serif;
    overflow: hidden;
    direction: rtl;
}    
.containers {
    position: relative;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

h1 {
    font-size: 2.5em;
    animation: bounceIn 1.5s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}

p {
    font-size: 1.2em;
    opacity: 0.8;
    margin-bottom: 10px;
}

        /* أنيميشن النقاط الثلاث */
.dots span {
    display: inline-block;
    font-size: 1.5em;
    animation: dotJump 1.5s infinite;
}

.dots span:nth-child(1) { animation-delay: 0s; }
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotJump {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-5px); opacity: 1; }
}

        /* شريط التحميل الجديد */
.progress-bars {
    width: 200px;
    height: 8px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin: 20px auto;
    position: relative;
}

.progress-bars span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #ff5733, #ffcc00, #33ff57);
    border-radius: 5px;
    animation: loading 3s infinite ease-in-out;
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

        /* انتظرونا */
.wait-text {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 15px;
    animation: fadeColor 3s infinite alternate;
}

@keyframes fadeColor {
    0% { color: #ff5733; }
    50% { color: #ffcc00; }
   100% { color: #33ff57; }
}