@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Lato&family=Oswald:wght@300&family=Poppins:wght@100;300;400;500&display=swap');
:root{
  --orange:#ff7800;
   --green:#2af42d;
  --dark-green:#067408;
  --black:#130f40;
  --light-color:#666;
  --box-shadow:0 1rem 1.5rem rgba(0,0,0,0.1);
  --border:0.2rem solid rgba(0,0,0,0.1);
  --outline:0.1rem solid rgba(0,0,0,0.1);
  --outline-hover:0.2rem solid var(--black);
}
*{
  font-family: 'Poppins', sans-serif;
  text-transform: capitalize;
  text-decoration: none;
  margin:0px;
  padding:0px;
  box-sizing: border-box;
  outline:none;
  border:none;
  transition: all 0.2s linear;
}
html{
  font-size:62.5%;
  overflow-x:hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
body{
  background:#eee;
}
.heading{
  font-size:3.5rem;
  text-align:center;
  padding:2rem 0;
  padding-bottom:3rem;
  color:var(--black);
}
.heading span{
  background:var(--green);
  color:#fff;
  padding:0.5rem 3rem;
  display:inline-block;
  clip-path:polygon(100% 0,93% 50%,100% 99%,0% 100%,7% 50%,0% 0%);
}
.btn{
  margin-top:1rem;
  padding:0.8rem 3rem;
  border-radius:0.5rem;
  font-size:1.7rem;
  border:0.2rem solid var(--black);
  color:var(--black);
  cursor:pointer;
  display:inline-block;
}
.btn:hover{
  color:#fff;
  background:var(--green);
  border:0.2rem solid var(--dark-green);
}
.checkbtn{
  margin-top:1rem;
  padding:0.8rem 3rem;
  border-radius:0.5rem;
  font-size:1.7rem;
  border:0.2rem solid var(--black);
  color:var(--black);
  cursor:pointer;
  display:inline-block;
}
.checkbtn:hover{
  color:#fff;
  background:var(--green);
  border:0.2rem solid var(--orange);
}
section{
  padding:2rem 9%;
}
.header{
  position:fixed;
  top:0;
  z-index:1000;
  left:0;
  right:0;
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: space-between;
  padding:2rem 9%;
  box-shadow: var(--box-shadow);
}
.header .Logo{
  font-size:2.5rem;
  font-weight:bolder;
  color:var(--black);
}
.header .Logo i{
  color:var(--green);
}

.header .navbar a{
  font-size:1.5rem;
  margin:0 1rem;
  color:var(--black);
}
.header .navbar a:hover{
  color:var(--green);
}
.header .icons div{
  height:4.5rem;
  width:4.5rem;
  background:#eee;
  color:var(--black);
  margin-right: 0.3rem;
  line-height:4.5rem;
  font-size:2rem;
  cursor:pointer;
  border-radius:0.5rem;
  text-align:center;
}
.header .icons div:hover{
  background:var(--green);
  color:#fff;
}
#menu-btn{
  display:none;
}
.header .search-form{
  position:absolute;
  top:110%;
  right:-110%;
  background:#fff;
  width:50rem;
  height:5rem;
  border-radius:0.5rem;
  overflow:hidden;
  display:flex;
  align-items:center;
  box-shadow:var(--box-shadow);
}
.header .search-form input{
  width:100%;
  height:100%;
  text-transform: none;
  color:var(--black);
  padding:0rem 1.5rem;
  font-size:1.5rem;
  background:transparent;
}
.header .search-form label{
  padding-right:1.5rem;
  font-size:2.2rem;
  cursor:pointer;
}
.header .search-form label:hover{
  color:var(--green);
}
.header .search-form.active{      /* Toggle class hai yeh */
  right:2rem;
  transition: 0.5s ease-in-out;
}
.header .shopping-cart.active{    /* Toggle class hai yeh */
  top:110%;
  right:2rem;
  transition:all 0.3s ease-in-out;
}
.header .shopping-cart{
  position:absolute;
  top:110%;
  right:-110%;
  background: #fff;
  border-radius:0.5rem;
  padding:1rem;
  box-shadow: var(--box-shadow);
  width:35rem;
}
.header .shopping-cart .box{
  position:relative;
  display:flex;
  gap:1rem;
  align-items: center;
  margin:1rem 0rem;
}
.header .shopping-cart img{
  height:10rem;
}
.header .shopping-cart .fa-trash{
  font-size: 2rem;
  position:absolute;
  top:50%;
  right:2rem;
  cursor:pointer;
  color:var(--light-color);
  transform:translateY(-50%);
}
.header .shopping-cart .fa-trash:hover{
  color:var(--green);
}
.header .shopping-cart .box .content h3{
  font-size: 1.7rem;
  padding-bottom:1rem;
  color:var(--black);
}
.header .shopping-cart .box .content span{
  font-size: 1.6rem;
  color:var(--light-color);
}
.header .shopping-cart .box .content .quantity{
  padding-left: 1rem;
}
.header .shopping-cart .total{
  font-size: 2.2rem;
  color:var(--black);
  text-align:center;
  padding:1rem 0;
}
.header .shopping-cart .checkbtn{
    display: block;
  text-align:center;
  font-size:1.8rem;
  font-weight: 500;
  margin:1rem;
}

.header .login-form{
  position:absolute;
  top:110%;
  right:-110%;
  text-align:center;
  padding:2rem;
  border-radius:0.5rem;
  box-shadow:var(--box-shadow);
  width:35rem;
  background: #fff;
}
.header .login-form.active{
  right:2rem;
  top:110%;
  transition:all o.3s ease-in-out;
}
.header .login-form h3{
    font-size:2.5rem;
    text-transform: uppercase;
    color:var(--black);
}

.header .login-form .box{
  margin:0.7rem;
  width:100%;
  padding:1rem;
  background:#eee;
  color:var(--black);
  text-transform: none;
  font-size: 1.6rem;
  border-radius:0.5rem;
}
.header .login-form .box:focus{
  box-shadow:var(--box-shadow);
}
.header .login-form p{
  font-size:1.3rem;
  margin:1rem 0.5rem;
  color:var(--light-color);
}
.header .login-form a{
  font-size:1.3rem;
  color:var(--orange);
  text-decoration: underline;
}
.header .login-form .btn:hover{
  background: var(--orange);
}
.home{
  display:flex;
  justify-content:center;
  align-items: center;
  padding-top:17rem;
  padding-bottom: 15rem;
  background:url('../gimages/banner-bg.webp') no-repeat;
  background-size: cover;
  background-position: center;
}
.home .content{
  width: 60rem;
  text-align: center;
}
.home .content h3{
  font-size:3rem;
  color:var(--black);
}
.home .content h3 span{
  color:var(--green);
  font-size:3rem;
}
.home .content p{
  color:var(--light-color);
  font-size:1.7rem;
  line-height: 1.8;
}

.features .box-container{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(30rem, 1fr));
  gap:1.5rem;
}

.features .box-container .box{
  padding:3rem 2rem;
  text-align: center;
  outline:var(--outline);
  border-radius:0.3rem;
  outline-offset: -1.1rem;
  box-shadow: var(--box-shadow);
  background: #fff;
}
.features .box-container .box:hover{
  outline: var(--outline-hover);
  outline-offset: 0rem;
}
.features .box-container .box img{
  margin:1rem 0;
  height:15rem;
}
.features .box-container .box h3{
  font-size: 2.5rem;
  line-height:1.8;
  color:var(--black);
}
.features .box-container .box p{
  font-size:1.5rem;
  line-height: 1.5;
  color:var(--light-color);
  padding:1rem 0;
}
.products .products-slider{
  padding:1rem;
}
.products .products-slider:first-child{
  margin-bottom:2rem;
}
.products .products-slider .box{
  background:#fff;
  padding:3rem 2rem;
  outline:var(--outline);
  outline-offset: -1rem;
  border-radius:0.5rem;
  text-align:center;
  box-shadow: var(--box-shadow);
}
.products .products-slider .box:hover{
  outline: var(--outline-hover);
  outline-offset:0rem;
}
.products .products-slider .box img{
  height:20rem;
}
.products .products-slider .box h3{
  font-size:2.5rem;
  color:var(--black);
}
.products .products-slider .box .price{
  font-size: 2rem;
  color:var(--light-color);
  padding:0.5rem 0;
}
.products .products-slider .box .stars i{
  font-size:1.7rem;
  color:var(--orange);
  padding:0.5rme 0;
}

.categories .box-container{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(26rem, 1fr));
  gap:1.5rem;
  padding: 3rem 1rem;
}
.categories .box-container .box{
  padding:3rem 2rem;
  background:#fff;
  text-align:center;
  outline: var(--outline);
  outline-offset: -1rem;
  border-radius:0.5rem;
  box-shadow:var(--box-shadow);
}
.categories .box-container .box:hover{
  outline:var(--outline-hover);
  outline-offset: 0rem;
}

.categories .box-container .box img{
    margin:1rem 0;
    height:15rem;
}

.categories .box-container .box h3{
   font-size: 2rem;
   color:var(--black);
   line-height: 1.8;
}

.categories .box-container .box p{
    font-size: 1.7rem;
    color:var(--light-color);
    line-height: 1.8;
    padding:1rem 0;
}
.review .review-slider{
  padding:1rem;
}
.review .review-slider .box{
   padding:3rem 2rem;
  background:#fff;
  text-align:center;
  outline: var(--outline);
  outline-offset: -1rem;
  border-radius:0.5rem;
  box-shadow:var(--box-shadow);
}
.review .review-slider .box:hover{
  outline:var(--outline-hover);
  outline-offset: 0rem;
}
.review .review-slider .box img{
  height:10rem;
  width:10rem;
  border-radius:50%;
}
.review .review-slider .box p{
  font-size:1.4rem;
  color:var(--light-color);
  line-height:1.8;
  padding:1rem 0;
}
.review .review-slider .box h3{
  font-size:2rem;
  padding-bottom:0.5rem;
  color:var(--black);
}
.review .review-slider .box .stars i{
  color:var(--orange);
  font-size:1.1rem;
  padding-top:0.5rem;
}
.blogs .box-container{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(30rem, 1fr));
  gap:1.5rem;
  padding: 3rem 1rem;
}
.blogs .box-container .box{
  overflow:hidden;
  border-radius:0.5rem;
  box-shadow:var(--box-shadow);
  background:#fff;
}
.blogs .box-container .box img{
  height:25rem;
  width:100%;
  object-fit: cover;
}
.blogs .box-container .box .content{
  padding:2rem;
}
.blogs .box-container .box .content .icons{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-bottom:1.5rem;
  margin-bottom:1rem;
  border-bottom: var(--border);
}
.blogs .box-container .box .content .icons a{
  font-size:1.5rem;
  color:var(--light-color);
}
.blogs .box-container .box .content .icons a:hover{
  color:var(--black);
}
.blogs .box-container .box .content .icons a i{
  color:var(--dark-green);
  padding-right: 0.5rem;
}
.blogs .box-container .box .content h3{
  font-size:2.2rem;
  color:var(--black);
  padding:0.5rem 0;
  line-height:1.8;
}
.blogs .box-container .box .content p{
  font-size:1.5rem;
  color:var(--light-color);
  padding:0.5rem 0;
  line-height:1.8;
}

.footer{
  background:#fff;
}
.footer .box-container{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(25rem,1fr));
  gap:1.5rem;
}
.footer .box-container h3{
  font-size:2.3rem;
  color:var(--black);
  padding:1rem 0;
}
.footer .box-container .box h3 i{
  color:var(--green);
}
.footer .box-container .box .links i{
  color:var(--green);
  padding-right: 0.5rem;
}
.footer .box-container .box .links:hover i{
  padding-right: 2rem;
  color:var(--orange);
}
.footer .box-container .box .links:hover{
  color:var(--black);
}
.footer .box-container .box .links{
  display: block;
  font-size:1.5rem;
  padding:1rem 0;
  font-weight:500;
  color:var(--light-color);
}
.footer .box-container .box p{
  line-height: 1.8;
  font-size:1.5rem;
  padding:1rem 0;
  color:var(--light-color);
}
.footer .box-container .box .share a{
  height:4rem;
  width:4rem;
  line-height:4rem;
  font-size:2rem;
  border-radius:0.5rem;
  margin-left:0.2rem;
  color:var(--black);
  background:#eee;
  text-align: center;
}
.footer .box-container .box .share a:hover{
  background:var(--green);
  color:#fff;
}
.footer .box-container .box .share .fa-facebook-f:hover{
  background:#1b1bbb;
}
.footer .box-container .box .share .fa-instagram:hover{
   background: #f09433; 
background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  }
.footer .box-container .box .share .fa-twitter:hover{
  background:#5db2f4;
}
.footer .box-container .box .share .fa-linkedin:hover{
  background:#0b30c1;
}

.footer .box-container .box .email{
  width:100%;
  margin:0.7rem 0;
  padding:1rem;
  font-size:1.6rem;
  text-transform:none;
  border-radius:0.5rem;
  background:#eee;
  color:var(--black);
}
.footer .box-container .box .payment{
  margin-top:2rem;
  display:block;
  height:3rem;
}
.footer .credits{
  margin-top:2rem;
  padding:1rem;
  text-align:center;
  padding-top: 2.5rem;
  border-top:var(--border);
  font-size:2rem;
  color:var(--black);
}
.footer .credits span{
  color:var(--green);
}
@media(max-width:991px){
  html{
    font-size:55%;
  }
  .header{
    padding:2rem;
  }
  section{
    padding:2rem;
  }
}
@media (max-width:768px){
  #menu-btn{
    display:inline-block;
  }
  .header .search-form{
    width:90%;
  }
  .header .navbar{
    position:absolute;
    text-align:center;
    top:110%;
    right:-110%;
    box-shadow:var(--box-shadow);
    width:30rem;
    background:#fff;
    border-radius: 0.5rem;
  }
  .header .navbar.active{
    transition:all 0.1s ease-in-out;
    top:110%;
    right:5rem;
  }
  .header .navbar a{
    font-size: 2rem;
  display:block;
    margin:2rem 2.5rem;
  }
}

@media(max-width:450px){
  html{
    font-size:50%;
  }
  .heading{
    font-size:2.5rem;
  }
  .home{
    padding-bottom:6rem;
  }
  .footer{
    text-align:center
  }
   .footer .box-container .box .payment{
        margin: 2rem auto;
    }
}