*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root{
    --main-color : #eebf00 ;
    --secondary-color :#232b38 ;
    --main-font : "Raleway", sans-serif; 
    --secondary-font : sans-system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

}


body{
    display: flex;
    flex-direction: column;
    font-family: var(--main-font);
    color: var(--secondary-color);
    /* background-color: #f0f0f0; */
    position: relative;
}


nav{
    position: sticky;
    z-index: 10;
    top: 0;
    box-shadow: 0 2px 5px 0px #e6e208;
}
.top-nav{
    padding: 8px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--secondary-color);
    color: #fff;
}
.top-nav .social{
    display: flex;
    gap: 14px;
}
.top-nav .social i{
    cursor: pointer;
    font-size: 13px;
}
.top-nav .social i:hover{
    color: var(--main-color);
}
.top-nav .auth{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.top-nav .auth div{
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.top-nav .auth div i{
    font-size: 14px;
}
.top-nav .auth div span{
    transition: 0.5s;
    cursor: pointer;
    
}
.top-nav .auth div span:hover{
    color: var(--main-color);
}

.top-nav .auth div:not( :last-of-type )::after{
    position: absolute;
    content: '';

    width: 1px;
    height: 90%;
    background-color: #fff;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
}

.top-nav .auth div:last-of-type i {
    font-size: 18px;
    transition: 0.5s;
    cursor: pointer;
}
.top-nav .auth div:last-of-type i:hover{
    transform: rotate(360deg);
    color: var(--main-color);
}
.top-nav .auth div:last-of-type span{
    width: 25px;
    height: 25px;
    color: red;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.down-nav{
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 10px  50px 5px;
    gap: 10px;
}
.down-nav .info{
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.down-nav .info > div{
    display: flex;
    align-items: center;
    gap: 10px;
}

.down-nav .navbar ul{
    display: flex;
    justify-content:center;
    gap: 8px;
}
.down-nav .navbar ul li{
    list-style: none;
}
.down-nav .navbar ul li a{
    display: block;
    color: #000;
    text-decoration: none;
    padding: 18px 20px ;
    transition: 0.5s;
    font-weight: 500;
    font-size: 15px;
}
.down-nav .navbar ul li a:hover , 
.down-nav .navbar ul li a.active{
    color: #fff;
    background-color: var(--main-color);
}

.fa-bars{
    font-size: 20px;
    cursor: pointer;
    transition: 0.5s;
    display: none;
}
.fa-bars:hover{
     transform: scale(1.2) rotate(0);

}
.fa-bars.open{
    transform: scale(1.2) rotate(90deg);
    text-shadow: 2px 2px 5px var(--main-color), -2px -2px 5px var(--main-color);

}

@media (max-width: 768px) {
    .top-nav{
        padding: 8px 20px;
    }
    .down-nav{
        padding: 20px;
    }
    .down-nav .info > div:nth-of-type(2){
        display: none;
    }
    .down-nav .info > img{
        display: none;
    }
    .fa-bars{
        display: block;
    }
    
    .down-nav .details:nth-of-type(2){
        display: none;
    }
    .down-nav ul{
        flex-direction: column;
        visibility: hidden;
        opacity: 0;
        height: 0;
    }
    .down-nav ul.open{
        visibility: visible;
        opacity: 1;
        height: 296px;
        z-index: 20;
    }
    .down-nav ul li{
        width: 100%;
    }
    .down-nav ul li a{
        text-align: center;
    }
}


/* start header */
header{
    min-height: 50vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: url(../images/images/hero.png) bottom no-repeat;
    background-size: cover;
}
header .details{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
header .details >div:first-of-type{
    display: flex;
    align-items: center;
    gap: 8px;
}
header .details > h1{
    font-size: 38px;
}
header .details > h1 span{
    color: var(--main-color);
}
header .details > p{
    opacity: 0.7;
    max-width: 400px;

}
header .details >div:last-of-type button{
    padding: 8px 15px;
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    cursor: pointer;
    color: #fff;
    transition: 0.5s;
    border-radius: 5px;
}
header .details >div:last-of-type button:nth-of-type(2){
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
header .details >div:last-of-type button:hover{
    color: var(--main-color);
    background-color: #fff;
}
header .details >div:last-of-type button:nth-of-type(2):hover{
    background-color: #fff;
    color: var(--secondary-color);
}
header > div:nth-of-type(2) img{
    width: 300px;
    animation: slide 1s linear infinite alternate;
}
@keyframes slide {
    100%{
        transform: translateY(-20px);
    }
}
/* update */
@media (max-width: 768px) {
    header{
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }
    header > div:nth-of-type(2) img{
        width: 100%;
    }
}
/* end header */


/* start  section */
section{
    padding: 80px 10%;
    border-bottom: 1px dashed var(--secondary-color);
}
section .sec-title{
    text-transform: capitalize;
    font-weight: bold;
    font-style: italic;
    font-size: 38px;
    width: max-content;
    margin: auto;
    position: relative;
}
section .sec-title::after{
    content: '';
    position: absolute;

    width: 150%;
    height: 35px;
    background: url(../images/icons-js/hr.svg) center no-repeat;
    background-size: 100% 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
}
@media (max-width: 768px) {
    section .sec-title{

    font-size: 28px;

}
section .sec-title::after{
    width: 100%;
    height: 25px;
    background-size: 100% 100%;
    left: 30%;
    transform: translateX(-50%);
}
    
}




/* end section */


/*              top-product */


.top-products{
    background-color: #eee;

}
.top-products .slider{
    margin-top: 80px;

}
.top-products .slider .card{
    transition: 0.5s;
    background-color: #fff;
    box-shadow: 3px 3px 25px 2px rgba(0, 0, 0, 0.2) ;
    border: 1px solid rgb(240, 240, 240);
    
}
.top-products .slider .card:hover{
    box-shadow: 3px 3px 25px 2px var(--main-color) ;
    border-radius: 25px;
    border: 1px solid var(--main-color);
}
.top-products .slider .card >div:nth-of-type(1){
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgb(240, 240, 240);
}
.top-products .slider .card >div:nth-of-type(1) img{
    width: 60%;
    height: 70%;
}
.top-products .slider .card .details{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding: 30px 0;
}
.top-products .slider .card .details h2{
    font-size: 23px;
    font-style: italic;
}
.top-products .slider .card .details div:first-of-type{
    font-size: 14px;
    color: var(--main-color);
}
.top-products .slider .card .details p {
    color: green;
    font-weight: bold;
}
.top-products .slider .card .details p del {
    color: red;
    margin-left: 10px;
}
.top-products .slider .card .details .addToCart {
    width: 50%;
    display: flex;
    gap: 10px;
    cursor: pointer;
    border: 2px solid var(--main-color);
    overflow: hidden;
    border-radius: 3px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    align-items: center;
}
.top-products .slider .card .details .addToCart .fa-cart-shopping {
    padding: 8px 12px;
    background-color: var(--main-color);
    color: #fff;
}
.top-products .slider .card .details .addToCart .fa-arrow-right{
    color: #fff;
}
.top-products .slider .card .details .addToCart span {
    transition: 0.5s;
    white-space: nowrap;
    font-size: 14px;
    font-weight: bold;
}
.top-products .slider .card .details .addToCart::after{
    content: '';
    position: absolute;
    left: 0;
    background-color: var(--main-color);
    top: 0;
    width: 0;
    height: 100%;
    transition: 0.5s;
    z-index: -1;
}
.top-products .slider .card .details .addToCart:hover::after{
    width: 100%;
}
.top-products .slider .card .details .addToCart:hover{
    border-radius: 10px;
}
.top-products .slider .card .details .addToCart:hover span{
    color: #fff;
}

.top-products .slick-track{
    padding: 50px 0;
}
.top-products .slick-slide{
    margin: 0 30px;
}

.top-products {
    position: relative;
}
.top-products .slider-icons{
    width: 45px;
    height: 45px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    border: none;
    transition: 0.5s;
    
    top: 23%;
    right: 200px ;
}
.top-products .slider-icons:hover{
    box-shadow: 2px 2px 25px 0 rgba(0, 0, 0, 0.3);
}
.top-products .slider-icons.prev{
    right: 50px ;
    top: 50%;
}
.top-products .slider-icons.next{
    left: 50px;
    top: 50%;
}



.Fresh-Meal{
    display: flex;
    flex-direction: column;
}
.Fresh-Meal > div{
    display: flex;
    align-items: center;
    gap: 70px;
    margin-top: 50px;

}

.Fresh-Meal > div img{
    width: 45%;
}
.Fresh-Meal > div .right{
    display: flex;
    flex-direction: column;
   gap: 30px;
}
.Fresh-Meal > div .right h2{
    font-style: italic;
    font-size: 25px;
    color: var(--secondary-color);

}
.Fresh-Meal > div .right p{
    opacity: .7;
    font-family:  var(--secondary-font)
}
.read{
    width: max-content;
    padding: 10px;
    font-size: 16px;
    background-color: var(--secondary-color);
    color: white;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 7px;

}
@media (max-width: 768px) {
    .Fresh-Meal > div{
        /* display: flex; */
        flex-direction: column;
    }
    .Fresh-Meal > div img{
     width: 100%;
}
}

.activ{
    border: 4px solid gray;
}


.Servcies{
    display: flex;
    flex-direction: column;
    gap: 120px;
}
.Servcies .container{
    display: flex;
    gap: 30px;

}
.Servcies .container .card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    box-shadow: 1px 1px 2px 2px #eee;
    transition: .5s ;

}
.Servcies .container .card .pic{
    position: absolute;
    top: -50%;
    right: 50%;
    transform: translate(50%, 75%);

}
.Servcies .container .card:hover .pic{
    transform: translate(50%, 50%);

}

.Servcies .container .card .details{
    padding: 40px 20px;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    transition: .5s;
}
.Servcies .container .card .details:hover{
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    /* transform: translateY(10%); */
}
.Servcies .container .card:nth-of-type(2) .details:hover{
    border: 2px solid var(--main-color);
     border-radius: 10px;
}
.Servcies .container .card .details h2{
    color: var(--secondary-color);

}
.Servcies .container .card .details p{
    font-family: var(--secondary-color);
    opacity: .7;
    font-size: 16px;
    
}
.Servcies .container .card:nth-last-of-type(2) .details .read{
    background-color: var(--main-color);

}

@media (max-width: 991px) {
    .Servcies .container{
    flex-direction: column;
    gap: 50px;
    

}
    
}

.Big-Deals{
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/images/food-table.jpg) center no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.Big-Deals .sec-title{
    color: white;
}
.Big-Deals .container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

}
.Big-Deals .container div{
    width: 150px;
    height: 150px;
    background-color: var(--main-color);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 15px;
    font-size: 24px;
    transition: .5s;
    font-style: italic;
}
.Big-Deals .container div:hover{
    border-radius: 0%;
}
.Big-Deals .container div span:first-of-type{
    font-weight: bold;

}

@media (max-width: 365px) {
    .Big-Deals .container{
    flex-wrap: wrap;
    }
}


.Lastest-News{
    display: flex;
    flex-direction: column;
    gap: 50px;
    background-color: #f0f0f0;
}
.Lastest-News .container{
    padding: 0 80px;
    display: flex;
    gap: 20px;
    transition: .5s;
}
.Lastest-News .container .card{
    width: 30%;
        border: 2px solid gainsboro;

}
.Lastest-News .container .card:hover{
    border-radius: 10px;
        border: 2px solid var(--main-color) ;
        box-shadow: 0 0 2px 2px  var(--main-color);

}
.Lastest-News .container .card .imag{
    transition: .5s;
    overflow: hidden;
}
.Lastest-News .container .card .imag img{
    width: 100%;
    
}
.Lastest-News .container .card .imag img:hover{
    transform: scale(1.2);

}
.Lastest-News .container .card .details{
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

}
.Lastest-News .container .card .details .spann{
    display: flex;
    gap: 20px;
    /* opacity: .8; */
    font-style: italic;
}

.Lastest-News .container .card .details .spann:hover{
    text-decoration: underline;
}

.Lastest-News .container .card:hover .details h2{
    color: var(--main-color);

}
.Lastest-News .container .card .details p{
    line-height: 1.8;
    font-family:  var(--secondary-font);
    opacity: .8;
}
.Lastest-News .view{
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
    cursor: pointer;
    transition: 1s ;
    z-index: 1;
}
.Lastest-News .view span{
    padding: 10px;
    border: 3px  solid black;
    border-radius: 5px;
    font-weight: bolder;
    font-style: italic;
    text-align: center;
  
}
 .Lastest-News .view span:hover{
    
        border: 3px  solid var(--main-color);
        color: white;
        width: 142px;
        
    }



.Lastest-News .view:hover{

    background-color: var(--main-color);
}



.Lastest-News .view::before , .Lastest-News .view::after{
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--main-color);
    position: absolute;

}
.Lastest-News .view::before {
    left: -20px;
}
.Lastest-News .view::after{
    right: -20px;
}

.Lastest-News .view:hover::before {
    animation: animatleft 1s .5s linear ;
}
@keyframes animatleft {
    0%{
        height: 45px;
        width: 51px;
        border-radius: 0%;
        left: -20px;
        z-index: 2;
        
    }
    50%{
        left: 0;
        z-index: -1;
    }
    100%{
        content: none;
        /* opacity: 0;
        visibility: hidden; */
        }
    }
    

 .Lastest-News .view:hover::after{
         animation: animatright 1s .5s linear;
 }

@keyframes animatright {
    0%{
        height: 45px;
        width: 51px;
        border-radius: 0%;
        right: -20px;
        z-index: 2;  
    }

    50%{
        right: 0;
        z-index: -1;
    }
    100%{
        content: none;
        /* opacity: 0;
        visibility: hidden; */
        }
    }

@media (max-width: 991px)  {
    .Lastest-News .container{
        flex-direction: column;
        padding: 0 20px;

    }

.Lastest-News .container .card{
    width: 100% ;

}

.Lastest-News .container .card .details{
    padding: 10px;
    gap: 10px;

}
.Lastest-News .container .card .details .spann{
    gap: 5px;
    line-height: normal;
}


.Lastest-News .view span{
   font-size: 14px;
  
}
 .Lastest-News .view span:hover{
    
        border: 3px  solid var(--main-color);
        color: white;
        width: 70px;
        }
 }

    
.subscribe{
    padding: 60px;
    background-color: var(--main-color);
    display: flex;
    gap: 50px;
}

.subscribe .imag img{
    width: 100%;
}
.subscribe .details{
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.subscribe .details h2{
    font-size: 30px;
}
.subscribe .details p{
    font-family: var(--bs-font-sans-serif);
}
.subscribe .details .mail{
    position: relative;
}
.subscribe .details .mail input{
    height: 50px;
    width: 100%;
    padding: 0 20px;
    border: 3px solid white;
    border-radius: 3px;

}
.subscribe .details .mail input:focus{
       outline: 5px solid rgb(184, 177, 177);

}
.subscribe .details .mail .in{
    position: absolute;
    width: max-content;
    padding: 10px;
    background-color: var(--main-color);
    color: white;
    border: 1px solid black;
    border-radius: 5px;
    right: 4px;
    top: 4px;
    cursor: pointer;

}
.subscribe .details .mail .in:hover{
    background-color: gray;
}

@media (max-width: 680px) {
    .subscribe{
        flex-direction: column;
    }
}

.Contact{
    display: flex;
    justify-content: space-between;
    /* gap: 40px; */
    padding:  0 ;
    margin: 0 20px;

}
.Contact .right{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: auto;
    padding: auto;
}
.Contact .location{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.Contact .right .details{
    display: flex;
    flex-direction: column;
    margin: auto; 
   gap: 10px;
    padding-top: 50px;

}
.Contact .right .details .icon{

    display: flex;

    gap: 10px;
}
.Contact .right .details .icon div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;

}
.Contact .right .details .icon div span:first-of-type {
    font-weight: bold;
}
.Contact .right .details .icon div span:last-of-type {
    font-family: var(--bs-font-sans-serif);
    font-style: italic;
    font-size: 14px;
}

@media (max-width: 680px) {
    .Contact{
        flex-direction: column;
        gap: 30px;
    }
    .Contact .location {
    margin: 20px;
}

}

footer{
    display: flex;
    flex-direction: column;
}
footer .top{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: #232b38;
    color: white;
    
}
footer .top .one{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    gap: 10px;
    position: relative;

}

footer .top .one h2::after{
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);

}
footer .top .one div{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

}
footer .top .one div p{
    font-family: var(--bs-font-sans-serif);
    line-height: 1.8;
    text-align: center;
    font-weight: 14px;

}
footer .top .one div .read{
    background-color: var(--main-color);
        cursor: pointer;
        transition: .5s;


}
footer .top .one div .read:hover{
    background-color: yellow;

}

footer .top .two{

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;

}

footer .top .two h2::after{
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);

}
footer .top .two div{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;

}
footer .top .two div a{
    cursor: pointer;
    color: white;
    text-decoration: none;
    font-family: var(--bs-font-sans-serif);
    font-size: 14px;
    transition: .5s;

}
footer .top .two div a:hover{
    color: var(--main-color);
}


footer .top .three{

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;

}

footer .top .three h2::after{
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);

}
footer .top .three .social{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
    font-family: var(--bs-font-sans-serif);

}
footer .top .three .social div{
    display: flex;
    gap: 20px;
    cursor: pointer;

}
footer .top .three .social div span:hover{
    color: var(--main-color);
} 

footer .top .four{

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;

}

footer .top .four h2::after{
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);

}
footer .top .four div{
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
}
footer .top .four div div {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;

}
footer .top .four div div img{
    width: 100%;
}

@media (max-width: 768px) {
    footer .top{   
    /* grid-template-rows: repeat(4, 1fr);  */
    grid-template-columns: 1fr;
    gap: 70px;
    justify-items: start;
}
footer .top .one div{
    justify-items: start;
    text-align: left;
}
footer .top .four div{
   
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);  
}
footer .top .four div div {
    width: 150px;
    height: 150px;
}

}

footer .bottom{
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #141920;
    color: white;
    font-size: 12px;
}

footer .bottom div a{
    color: var(--main-color);
    text-decoration: none;
}

.fa-arrow-up{
    width: 40px;
    height: 40px;
    outline: 2px solid var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 50%;
    background-color: var(--main-color);
    color: white;
    position: fixed;
    left: 50px;
    bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: arrow 2s ease infinite alternate;
    transition: .5s;
    visibility: hidden;
    opacity: 0;
}
@keyframes arrow {
    100%{
        transform: translateY(-20px);
    }
    
}
.fa-arrow-up:hover{
    animation-play-state: paused;
    outline-offset: 5px var(--main-color);
    background-color: white;
    color: var(--main-color);
}

             /*             products              */


.prod{
    background-color: #eee;

}
.prod .container{
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;

}

.prod .container .card{
    width: 30%;
    transition: 0.5s;
    background-color: #fff;
    box-shadow: 3px 3px 25px 2px rgba(0, 0, 0, 0.2) ;
    border: 1px solid rgb(240, 240, 240);
    
}
.prod .container .card:hover{
    box-shadow: 3px 3px 25px 2px var(--main-color) ;
    border-radius: 25px;
    border: 1px solid var(--main-color);
}
.prod .container .card >div:nth-of-type(1){
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgb(240, 240, 240);
}
.prod .container .card >div:nth-of-type(1) img{
    width: 60%;
    height: 70%;
    overflow: hidden;
    transition: .5s;
}
.prod .container .card:hover >div:nth-of-type(1) img{
    transform: scale(1.2);
}
.prod .container .card .details{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px 0;
    margin: 0 10% ;
    color: var(--secondary-color);

}

.prod .container .card:hover .details b{
    font-weight: 900;
    color: var(--main-color);
}
.prod .container .card .details div:first-of-type{
    font-size: 14px;
    color: var(--main-color);
}
.prod .container .card:hover .details p {
    color: green;
    font-weight: bold;
}

.prod .container .card .details button {
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
    border: 2px solid  rgb(125, 125, 125);
    overflow: hidden;
    border-radius: 5px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    align-items: center;
    color: white;
    background-color: rgb(125, 125, 125);
}

.prod .container .card .details button:hover{
    border-radius: 10px;
    background-color: var(--main-color);
    border: 2px solid  var(--main-color);
    color: #eee;
}
@media (max-width: 790px) {
    .prod .container .card{
        flex: 1 1 calc((100% - 30px) / 2);
    }
    
}
@media (max-width: 680px) {
    .prod .container{
        flex-direction: column;
    }
    .prod .container .card{
        width: 100%;
    }
    
}

/*                   cart                    */

.cart{
    position: fixed;
    width: 400px;
    height: 99vh;
    bottom: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: white;
    border-top: 2px solid var(--main-color);
    border-left: 2px solid var(--main-color);
    border-radius: 20px 0 0 0;
    z-index: 12;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 20px 5px;
    text-align: center;
    right: -400px;
    transition: .5s;
}

.cart.open{
    right:0 ;
}

.cart .fa-circle-xmark{
    position: absolute;
    left: 10px;
    top: 10px;

}
.cart b{
    font-size: 36px;
}
.cart hr{
    width: 100%;
}

.cart .totall{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    cursor: pointer;

}
.cart .totall b{
    font-size: 20px;

}
.cart > b span{
    color: var(--main-color);
    text-transform: uppercase;
}
.cart .container{
    width: 100%;
    display: flex;
    flex-direction: column;


}
.bobabbox{
    width: 100vw;
    height: 100vh; 
    position: fixed;
    top: 0;
    left: 0;
    color: rgba(0,0,0,0.8);
    z-index: 11;
    visibility: hidden;
    opacity: 0;
    transition: .5s;
}
.bobabbox.open{
    visibility: visible;
    opacity: 1;
}

.cart .container .card{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background-color: rgb(50, 50, 50);
    margin: 3px;

}
.cart .container .card img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--main-color);

}
.cart .container .card div:nth-of-type(2) button{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: 1px solid var(--main-color);
    color: var(--main-color);
    text-align: center;
    cursor: pointer;
}
.cart .container .card .fa-trash{
    color: red;

}

.checkBox{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    z-index: 12;
    width: 400px;
    height: 300px;
    font-size: 20px;
    text-align: center;
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    border: 5px solid var(--main-color);
    border-radius: 10px;
    display: none;

}
.checkBox i{
    color: green;
    font-size: 60px;
    width: 50px;
    height: 50px;
    animation: britghen .5s  infinite ease;
}
@keyframes britghen {
    100%{
        transform: scale(1.2);

    }
    
}