@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700&display=swap');

:root {
   --main-color: #2980b9;
   --orange: #f39c12;
   --red: #e74c3c;
   --black: #333;
   --white: #fff;
   --light-color: black;
   --light-bg: #eee;
   --green: green;
   --border: .2rem solid var(--black);
   --yellow: #fed330;
   --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
   --color-primary: #2980b9; /* Added for preloader */
}

* {
   font-family: 'Nunito', sans-serif;
   margin: 0;    
   padding: 0;
   box-sizing: border-box;
   outline: none;
   border: none;
   text-decoration: none;
}

*::selection {
   background-color: var(--main-color);
   color: var(--white);
}

::-webkit-scrollbar {
   height: .5rem;
   width: 1rem;
}

::-webkit-scrollbar-track {
   background-color: transparent;
}

::-webkit-scrollbar-thumb {
   background-color: var(--main-color);
}

html {
   font-size: 62.5%;
   overflow-x: hidden;
}

body {
   background-color: var(--light-bg);
   margin: 0;
   font-family: 'Nunito', sans-serif; /* Unified font family */
}



/* Header Styles */
.site-header {
   width: 100%;
   position: relative;
   z-index: 1000;
}

.top-bar {
   background-color: #f5f5f5;
   padding: 1rem 0;
   font-size: 1.4rem;
   color: #333;
   border-bottom: 1px solid #e1e1e1;
}

.top-bar .container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

.top-bar a {
   color: #333;
   text-decoration: none;
   margin-left: 1.5rem;
   transition: color 0.3s ease;
}

.top-bar a:hover {
   color: var(--orange);
}

.main-header {
   background-color: #ffffff;
   padding: 1.5rem 0;
   box-shadow: var(--box-shadow);
}

.main-header .container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
   flex-wrap: wrap;
}

.logo {
   flex: 0 0 auto;
}

.logo a {
   font-size: 2.4rem;
   font-weight: bold;
   color: #ff9900;
   text-decoration: none;
}

.logo span {
   color: #000;
}

.search-bar {
   flex: 1;
   max-width: 500px;
   margin: 0 2rem;
}

.search-bar form {
   display: flex;
   border: 1px solid #ccc;
   border-radius: .5rem;
   overflow: hidden;
}

.search-bar input[type="text"] {
   flex: 1;
   padding: 1rem;
   border: none;
   font-size: 1.6rem;
}

.search-bar button {
   background-color: var(--orange);
   color: white;
   padding: 0 1.5rem;
   border: none;
   cursor: pointer;
   font-size: 1.6rem;
}

.header-icons {
   display: flex;
   align-items: center;
   gap: 1.5rem;
}

.header-icons a {
   color: #333;
   text-decoration: none;
   font-size: 1.6rem;
   position: relative;
}

.header-icons .count {
   position: absolute;
   top: -0.8rem;
   right: -0.8rem;
   background-color: var(--red);
   color: white;
   border-radius: 50%;
   width: 1.8rem;
   height: 1.8rem;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1rem;
}

    /* Navigation */
    .main-nav { background: #333; }
    .nav-links { list-style: none; display: flex; flex-wrap: wrap; }
    .nav-links li { position: relative; }

    .nav-links > li > a {
      display: block;
      padding: 15px 20px;
      color: white;
      text-decoration: none;
    }

    .nav-links > li:hover > a,
    .dropdown-menu li a:hover {
      background-color: #f68b1e;
      color: #fff;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      background: white;
      min-width: 200px;
      top: 100%;
      left: 0;
      z-index: 999;
      border: 1px solid #ddd;
    }

    .dropdown:hover > .dropdown-menu {
      display: block;
    }

    .dropdown-menu li a {
      padding: 10px 15px;
      display: block;
      color: #333;
      text-decoration: none;
    }

    /* Submenu */
    .dropdown-submenu {
      position: relative;
    }

    .dropdown-submenu > a:after {
      content: "▶";
      float: right;
      font-size: 12px;
      margin-left: 5px;
    }

    .dropdown-submenu .dropdown-menu {
      top: 0;
      left: 100%;
      margin-left: 1px;
      display: none;
    }

    .dropdown-submenu.open > .dropdown-menu {
      display: block;
    }

    /* Mobile */
    .mobile-menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
    }
    @media screen and (max-width: 768px) {
      .nav-links {
        flex-direction: column;
        display: none;
        background: #333;
      }

      .main-nav.active .nav-links {
        display: flex;
      }

      .mobile-menu-toggle {
        display: block;
      }

      .dropdown-menu,
      .dropdown-submenu .dropdown-menu {
        position: static;
        border: none;
        min-width: 100%;
        background: #fff;
      }

      .dropdown-submenu .dropdown-menu {
        display: none;
      }

      .dropdown-submenu.open .dropdown-menu {
        display: block;
      }

      .dropdown > .dropdown-menu {
        display: none;
      }

      .dropdown.active > .dropdown-menu {
        display: block;
      }
    }

@media (max-width: 450px) {
   html {
      font-size: 50%;
   }
   
   .header-icons {
      gap: 1rem;
   }
   
   .header-icons a {
      font-size: 1.4rem;
   }
}
.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #ff9900;
    text-decoration: none;
}

.logo span {
    color: #000;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.search-bar form {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.search-bar input[type="text"] {
    flex: 1;
    padding: 8px;
    border: none;
}

.search-bar button {
    background-color: #ff9900;
    color: white;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
}

.header-icons a {
    color: #333;
    text-decoration: none;
    margin-left: 15px;
    font-size: 16px;
}

.nav-menu {
    background-color: #333;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff9900;
}


#menu-btn{
   display: none;
}

/* home page */

.home-bg{
   background:url(../images/home-bg.png) no-repeat;
   background-size: cover;
   background-position: center;
}

.home-bg .home .slide{
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap:1.5rem;
   padding-bottom: 6rem;
   padding-top: 2rem;
   user-select: none;
}

.home-bg .home .slide .image{
   flex:1 1 40rem;
}

.home-bg .home .slide .image img{
   height: 40rem;
   width: 100%;
   object-fit: contain;
}

.home-bg .home .slide .content{
   flex:1 1 40rem;
}

.home-bg .home .slide .content span{
   font-size: 2rem;
   color:var(--white);
}

.home-bg .home .slide .content h3{
   margin-top: 1rem;
   font-size: 4rem;
   color:var(--white);
   text-transform: uppercase;
}

.home-bg .home .slide .content .btn{
   display: inline-block;
   width: auto;
}

.swiper-pagination-bullet-active{
   background-color: var(--main-color);
}

.category .slide{
   margin-bottom: 5rem;
   box-shadow: var(--box-shadow);
   border:var(--border);
   text-align: center;
   padding:2rem;
   background: var(--orange);
   border-radius: .5rem;
}

.category .slide:hover{
   background-color: var(--black);
}

.category .slide:hover img{
   filter:invert();
}

.category .slide:hover h3{
   color:var(--white);
}

.category .slide img{
   height: 7rem;
   width: 100%;
   object-fit: contain;
   margin-bottom: 1rem;
   user-select: none;
}

.category .slide h3{
   font-size: 2rem;
   color:var(--black);
   user-select: none;
}

.home-products .slide{
   position: relative;
   padding:2rem;
   border-radius: .5rem;
   border:var(--border);
   background-color: var(--wheat);
   box-shadow: var(--box-shadow);
   margin-bottom: 5rem;
   overflow: hidden;
   user-select: none;
  
}

.home-products .slide img{
   width: 100%;
   height:20rem;
   object-fit: contain;
   margin-bottom: 2rem;
}

.home-products .slide .name{
   font-size: 2rem;
   color:var(--black);
}

.home-products .slide .flex{
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap:1rem;
}

.home-products .slide .flex .qty{
   width: 7rem;
   padding:1rem;
   border:var(--border);
   font-size: 1.8rem;
   color:var(--black);
   border-radius: .5rem;
}

.home-products .slide .flex .price{
   margin:1rem 0;
   font-size: 2rem;
   color:var(--red);
}

.home-products .slide .fa-heart,
.home-products .slide .fa-eye{
   position: absolute;
   top:1rem;
   height: 4.5rem;
   width: 4.5rem;
   line-height: 4.2rem;
   font-size: 2rem;
   background-color: var(--white);
   border:var(--border);
   border-radius: .5rem;
   text-align: center;
   color:var(--black);
   cursor: pointer;
   transition: .2s linear;
}

.home-products .slide .fa-heart{
   right: -6rem;
}

.home-products .slide .fa-eye{
   left: -6rem;
}

.home-products .slide .fa-heart:hover,
.home-products .slide .fa-eye:hover{
   background-color: var(--black);
   color:var(--white);
}

.home-products .slide:hover .fa-heart{
   right: 1rem;
}

.home-products .slide:hover .fa-eye{
   left: 1rem;
}

.quick-view form{
   padding:2rem;
   border-radius: .5rem;
   border:var(--border);
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   margin-top: 1rem;
}

.quick-view form .row{
   display: flex;
   align-items: center;
   gap:1.5rem;
   flex-wrap: wrap;
}

.quick-view form .row .image-container{
   margin-bottom: 2rem;
   flex:1 1 40rem;
}

.quick-view form .row .image-container .main-image img{
   height: 30rem;
   width: 100%;
   object-fit: contain;
}

.quick-view form .row .image-container .sub-image{
   display: flex;
   gap:1.5rem;
   justify-content: center;
   margin-top: 2rem;
}

.quick-view form .row .image-container .sub-image img{
   height: 7rem;
   width: 10rem;
   object-fit: contain;
   padding:.5rem;
   border:var(--border);
   cursor: pointer;
   transition: .2s linear;
}

.quick-view form .flex .image-container .sub-image img:hover{
   transform: scale(1.1);
}

.quick-view form img{
   width: 100%;
   height: 20rem;
   object-fit: contain;
   margin-bottom: 2rem;
}

.quick-view form .row .content{
   flex:1 1 40rem;
}

.quick-view form .row .content .name{
   font-size: 2rem;
   color:var(--black);
}

.quick-view form .row .flex{
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap:1rem;
   margin:1rem 0;
}

.quick-view form .row .flex .qty{
   width: 7rem;
   padding:1rem;
   border:var(--border);
   font-size: 1.8rem;
   color:var(--black);
   border-radius: .5rem;
}

.quick-view form .row .flex .price{
   font-size: 2rem;
   color:var(--red);
}

.quick-view form .row .content .details{
   font-size: 1.6rem;
   color:var(--light-color);
   line-height: 2;
}  

.products .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit,27rem);
   gap:2rem;
   justify-content: space-evenly;
   align-items: flex-start;
}

.products .box-container .box{
   position: relative;
   background-color:#dce0e1;
   box-shadow: 0 40px 40px #757676;
   border-radius: .5rem;
   /* border:var(--border); */
   padding:2rem;
   overflow: hidden;
}

.products .box-container .box img{
   height: 20rem;
   width: 100%;
   object-fit: contain;
   margin-bottom: 1rem;
}
.products .box-container .box:hover{
  border:1px solid black;
  transition: all ease-in;

}

.products .box-container .box .fa-heart,
.products .box-container .box .fa-eye{
   position: absolute;
   top:1rem;
   height: 4.5rem;
   width: 4.5rem;
   line-height: 4.2rem;
   font-size: 2rem;
   background-color: var(--white);
   border:var(--border);
   border-radius: .5rem;
   text-align: center;
   color:var(--black);
   cursor: pointer;
   transition: .2s linear;
}

.products .box-container .box .fa-heart{
   right: -6rem;
}

.products .box-container .box .fa-eye{
   left: -6rem;
}


.products .box-container .box .fa-heart:hover,
.products .box-container .box .fa-eye:hover{
   background-color: var(--black);
   color:var(--white);
}

.products .box-container .box:hover .fa-heart{
   right:1rem;
}

.products .box-container .box:hover .fa-eye{
   left:1rem;
}

.products .box-container .box .name{
   font-size: 2rem;
   color:var(--black);
}

.products .box-container .box .flex{
   display: flex;
   align-items: center;
   gap:1rem;
}

.products .box-container .box .flex .qty{
   width: 7rem;
   padding:1rem;
   border:var(--border);
   font-size: 1.8rem;
   color:var(--black);
   border-radius: .5rem;
}

.products .box-container .box .flex .price{
   font-size: 2rem;
   color:var(--red);
   margin-right: auto;
}


.form-container form h3{
   font-size: 2.5rem;
   text-transform: uppercase;
   color:var(--black);
}

.form-container form p{
   font-size: 2rem;
   color:var(--light-color);
   margin:1.5rem 0;
}

.form-container form .box{
   margin:1rem 0;
   background-color: var(--light-bg);
   padding:1.4rem;
   font-size: 1.8rem;
   color:var(--black);  
   width: 100%;
   border-radius: .5rem;
}

.about .row{
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap:1.5rem;
}

.about .row .image{
   flex:1 1 40rem;
}

.about .row .image img{
   width: 100%;
}

.about .row .content{
   flex:1 1 40rem;
}

.about .row .content h3{
   font-size: 3rem;
   color:var(--black);
}

.about .row .content p{
   line-height: 2;
   font-size: 1.5rem;
   /* color:var(--light-color); */
   padding:1rem 0;
}

.about .row .content .btn{
   display: inline-block;
   width: auto;
}

.reviews .slide{
   padding:2rem;
   text-align: center;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   border:var(--border);
   margin-bottom: 5rem;
   user-select: none;
}

.reviews .slide img{
   height: 10rem;
   width: 10rem;
   border-radius: 50%;
   margin-bottom: .5rem;
}

.reviews .slide p{
   padding:1rem 0;
   line-height: 2;
   font-size: 1.5rem;
   /* color:var(--light-color); */
}

.reviews .slide .stars{
   display: inline-block;
   margin-bottom: 1rem;
   background-color: var(--light-bg);
   padding:1rem 1.5rem;
   border-radius: .5rem;
}

.reviews .slide .stars i{
   margin:0 .3rem;
   font-size: 1.7rem;
   color:var(--orange);
}

.reviews .slide h3{
   font-size: 2rem;
   color:var(--black);
}

.contact form{
   padding:2rem;
   text-align: center;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   border:var(--border);
   max-width: 50rem;
   margin:0 auto;
}

.contact form h3{
   margin-bottom: 1rem;
   text-transform: capitalize;
   font-size: 2.5rem;
   color:var(--black);
}

.contact form .box{
   margin:1rem 0;
   width: 100%;
   background-color: var(--light-bg);
   padding:1.4rem;
   font-size: 1.8rem;
   color:var(--black);
   border-radius: .5rem;
}

.contact form textarea{
   height: 15rem;
   resize: none;
}

.search-form form{
   display: flex;
   gap:1rem;
}

.search-form form input{
   width: 100%;
   border:var(--border);
   border-radius: .5rem;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   padding:1.4rem;
   font-size: 1.8rem;
   color:var(--black);
}

.search-form form button{
   font-size: 2.5rem;
   height: 5.5rem;
   line-height: 5.5rem;
   background-color: var(--main-color);
   cursor: pointer;
   color:var(--white);
   border-radius: .5rem;
   width: 6rem;
   text-align: center;
}

.search-form form button:hover{
   background-color: var(--black);
}

.wishlist-total{
   max-width: 50rem;
   margin:0 auto;
   margin-top: 3rem;
   background-color: var(--white);
   border:var(--border);
   border-radius: .5rem;;
   padding:2rem;
   text-align: center;
}

.wishlist-total p{
   font-size: 2.5rem;
   color:var(--black);
   margin-bottom: 2rem;
}

.wishlist-total p span{
   color:var(--red);
}

.shopping-cart .fa-edit{
   height: 4.5rem;
   border-radius: .5rem;
   background-color: var(--orange);
   width: 5rem;
   font-size: 2rem;
   color:var(--white);
   cursor: pointer;
}

.shopping-cart .fa-edit:hover{
   background-color: var(--black);
}

.shopping-cart .sub-total{
   margin:2rem 0;
   font-size: 2rem;
   color:var(--light-color);
}

.shopping-cart .sub-total span{
   color:var(--red);
}

.cart-total{
   max-width: 50rem;
   margin:0 auto;
   margin-top: 3rem;
   background-color: var(--white);
   border:var(--border);
   border-radius: .5rem;;
   padding:2rem;
   text-align: center;
}

.cart-total p{
   font-size: 2.5rem;
   color:var(--black);
   margin-bottom: 2rem;
}

.cart-total p span{
   color:var(--red);
}

.display-orders{
   text-align: center;
   padding-bottom: 0;
}

.display-orders p{
   display: inline-block;
   padding:1rem 2rem;
   margin:1rem .5rem;
   font-size: 2rem;
   text-align: center;
   border:var(--border);
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
}

.display-orders p span{
   color:var(--red);
}

.display-orders .grand-total{
   margin-top: 1.5rem;
   margin-bottom: 2.5rem;
   font-size: 2.5rem;
   color:var(--light-color);
}

.display-orders .grand-total span{
   color:var(--red);
}

.checkout-orders form{
   padding:2rem;
   border:var(--border);
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
}

.checkout-orders form h3{
   border-radius: .5rem;
   background-color: var(--black);
   color:var(--white);
   padding:1.5rem 1rem;
   text-align: center;
   text-transform: uppercase;
   margin-bottom: 2rem;
   font-size: 2.5rem;
}

.checkout-orders form .flex{
   display: flex;
   flex-wrap: wrap;
   gap:1.5rem;
   justify-content: space-between;
}

.checkout-orders form .flex .inputBox{
   width: 49%;
}

.checkout-orders form .flex .inputBox .box{
   width: 100%;
   border:var(--border);
   border-radius: .5rem;
   font-size: 1.8rem;
   color:var(--black);
   padding:1.2rem 1.4rem;
   margin:1rem 0;
   background-color: var(--light-bg);
}

.checkout-orders form .flex .inputBox span{
   font-size: 1.8rem;
   color:var(--light-color);
}

.orders .box-container{
   display: flex;
   flex-wrap: wrap;
   gap:1.5rem;
   align-items: flex-start;
   
}

.orders .box-container .box{
   padding:1rem 2rem;
   flex:1 1 40rem;
   border:var(--border);
   background-color:rgb(221, 221, 74);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;

}
.orderbody{
   background-color: #f39c12;
}
.orders .box-container .box p{
   margin:.5rem 0;
   line-height: 1.8;
   font-size: 2rem;
   color:var(--black);
}

.orders .box-container .box p span{
   color:var(--main-color);
}

@media (max-width:991px){

   html{
      font-size: 55%;
   }

}
@media screen and (max-width: 768px) {
   [data-aos-delay] {
     transition-delay: 0 !important;
   }
 }
@media (max-width:768px){

   #menu-btn{
      display: inline-block;
   }

   .header .flex .navbar{
      position: absolute;
      top:99%; left:0; right:0;
      border-top: var(--border);
      border-bottom: var(--border);
      background-color: var(--white);
      transition: .2s linear;
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
   }

   .header .flex .navbar.active{
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
   }

   .header .flex .navbar a{
      display: block;
      margin:2rem;
   }

   .home-bg .home .slide .content{
      text-align: center;
   }

   .home-bg .home .slide .content h3{
      font-size: 3rem;
   }

}

@media (max-width:450px){

   html{
      font-size: 50%;
   }

   .heading{
      font-size: 3rem;
   }

   .flex-btn{
      flex-flow: column;
      gap:0;
   }

   .quick-view form .row .image-container .sub-image img{
      width: 8rem;
   }

   .checkout-orders form .flex .inputBox{
      width: 100%;
   }

}
@keyframes animate-loading {
   0% {
     transform: rotate(0deg);
   }
 
   100% {
     transform: rotate(360deg);
   }
 }
 /*--travel-- */
 
/* New Arrivals */
li {
   list-style: none;
 }
 
.title {
   text-align: center;
   margin-bottom: 5rem;
 }
 
 .title h1 {
   font-size: 3rem;
   text-transform: uppercase;
   margin-bottom: 1rem;
   font-weight: 500;
   color:black;
 }
 .title p{
   display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
 }
 
 .product-center {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   max-width: 120rem;
   margin: 0 auto;
   padding: 0 2rem;
 }
 
 .product-item {
   position: relative;
   width: 27rem;
   margin: 0 auto;
   margin-bottom: 3rem;
 }
 
 .product-thumb img {
   width: 100%;
   height: 31rem;
   object-fit: cover;
   transition: all 500ms linear;
 }
 
 .product-info {
   padding: 1rem;
   text-align: center;
 }
 
 .product-info span {
   display: inline-block;
   font-size: 1.2rem;
   color: #666;
   margin-bottom: 1rem;
 }
 
 .product-info a {
   font-size: 1.5rem;
   display: block;
   margin-bottom: 1rem;
   transition: all 300ms ease;
 }
 
 .product-info a:hover {
   color: var(--green);
 }
 
 .product-item .icons {
   position: absolute;
   left: 50%;
   top: 35%;
   transform: translateX(-50%);
   display: flex;
   align-items: center;
   text-decoration:none;
 }
 
 .product-item .icons li {
   background-color: var(--white);
   text-align: center;
   padding: 1rem 1.5rem;
   font-size: 2.3rem;
   cursor: pointer;
   transition: 300ms ease-out;
   transform: translateY(20px);
   visibility: hidden;
   opacity: 0;
 }
 
 .product-item .icons li:first-child {
   transition-delay: 0.1s;
 }
 
 .product-item .icons li:nth-child(2) {
   transition-delay: 0.2s;
 }
 
 .product-item .icons li:nth-child(3) {
   transition-delay: 0.3s;
 }
 
 .product-item:hover .icons li {
   visibility: visible;
   opacity: 1;
   transform: translateY(0);
 }
 
 .product-item .icons li:not(:last-child) {
   margin-right: 0.5rem;
 }
 
 .product-item .icons li:hover {
   background-color: var(--green);
   color: var(--white);
 }
 
 .product-item .overlay {
   position: relative;
   overflow: hidden;
   cursor: pointer;
   width: 100%;
 }
 
 .product-item .overlay::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   visibility: hidden;
   opacity: 0;
   transition: 300ms ease-out;
 }
 
 .product-item:hover .overlay::after {
   visibility: visible;
   opacity: 1;
 }
 
 .product-item:hover .product-thumb img {
   transform: scale(1.1);
 }
 
 input.discount {
   position: absolute;
   top: 1rem;
   background-color: var(--green);
   padding: 0.5rem 1rem;
   color: var(--white);
   border-radius: 2rem;
   font-size: 1.5rem;
   text-align:right;
   width:20%;

 }
 
 @media only screen and (max-width: 567px) {
   .product-center {
     max-width: 100%;
     padding: 0 1rem;
   }
 
   .product-item {
     width: 40%;
     margin-bottom: 3rem;
   }
 
   .product-thumb img {
     height: 20rem;
   }
 
   .product-item {
     margin-right: 2rem;
   }
 
   .product-item .icons li {
     padding: 0.5rem 1rem;
     font-size: 1.8rem;
   }
 }
 /* input.discount{
   width: 50%;
   float:left;
   align-items:center;
   border:var(--border);
   border-radius: .5rem;
   box-shadow: var(--box-shadow);
   padding:1.4rem;
   font-size: 1.8rem;
   color:var(--black);
} */

