/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Dec 29, 2024, 8:53:09 PM
    Author     : SANDHYA PRAJAPATI
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root{
    --orange:#ff7800;
    --black:#130f40;
    --light-color:#666;
    --box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);
    --border:.2rem solid rgba(0,0,0,.1);
    --outline:.1rem solid rgba(0,0,0,.1);
    --outline-hover:.2rem solid var(-black);
}

*{
    font-family: 'Poppins',sans-serif;
    margin:0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none; 
    text-transform: capitalize;
    transition: all .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x:hidden;
    scroll-behavior: smooth;
    scroll-padding-top:7rem;
}

body{
    background: #eee;
}

section{
    padding: 2rem 9%;
}

.heading{
    text-align: center;
    padding: 2rem 0;
    padding-bottom: 3rem;
    font-size: 3.5rem;
    color: var(--black);
}

.heading span{
    background: var(--orange);
    color: #fff;
    display: inline-block;
    padding: .5rem 3rem;
    clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: .8rem 3rem;
    font-size: 1.7rem;
    border-radius: .5rem;
    border: .2rem solid var(--black);
    color: var(--black);
    cursor: pointer;
    background: none;
}

.btn:hover{
    background: var(--orange);
    color: #fff;
}

.header{
    position:fixed;
    top:0;
    left:0;
    right: 0;
    z-index:1000;
    display: flex;
    align-items:center;
    justify-content: space-between;
    padding:2rem 9%;
    background: #fff;
    box-shadow: var(--box-shadow);
}


.header .logo img{
    width:9rem;
 }

.header .navbar a{
    font-size:1.7rem;
    margin: 0 1rem;
    color:var(--black);
}

.header .navbar a:hover{
    color: var(--orange);
}

.header .icons div{
    height: 4.5rem;
    width:4.5rem;
    line-height: 4.5rem;
    border-radius: .5rem;
    background: #eee;   
    color:var(--black);
    font-size: 2rem;
    cursor: pointer;
    margin-right: .3rem;
    text-align: center;
}

.header .icons div:hover{
    background: var(--orange);
    color: #fff;
}

#menu-btn{
    display: none;
}

.header .search-form{
    position: absolute;
    top: 110%;
    right: -110%;
    width: 50rem;
    height: 5rem;
    background: #fff;
    border-radius: .5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: var(--box-shadow);
}

.header .search-form.active{
    right: 5rem;
    transition: .6s  linear;
}

.header .search-form input{
     height: 100%;
     width: 100%;
     background: none;
     text-transform: none;
     font-size: 1.6rem;
     color: var(--black);
     padding: 0 1.5rem;
}

.header .search-form label{
    font-size: 2.2rem;
    padding-right: 1.5rem;
    color: var(--black);
    cursor: pointer;
}

.header .search-form label:hover{
    color: var(--orange);
}

.header .shopping-cart{
    position: absolute;
    top: 110%;
    right: -110% ;
    padding: 1rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    width: 35rem;
    background: #fff;
}

.header .shopping-cart.active{
    right: 2rem;
    transition: .4s linear;
}

.header .shopping-cart .box{
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    margin: 1rem 0;
}

.header .shopping-cart .box img{
    height: 10rem;
}

.header .shopping-cart .box .fa-trash{
    font-size: 2rem;
    position: absolute;
    top: 50%;
    right: 2rem;
    cursor: pointer;
    color: var(--light-color);
    transform: translateY(-50%);
}

.header .shopping-cart .box .fa-trash:hover{
    color: var(--orange);
}

.header .shopping-cart .box .content h3{
    color: var(--black);
    font-size: 1.7rem;
    padding-bottom: 1rem;
}

.header .shopping-cart .box .content span{
    color: var(--light-color);
    font-size: 1.6rem;
}

.header .shopping-cart .box .content .quantity{
    padding-left: 1rem;
}

.header .shopping-cart .total{
    font-size: 2.5rem;
    padding: 1rem 0;
    text-align: center;
    color: var(--black);
}

.header .shopping-cart .btn{
    display: block;
    text-align: center;
    margin: 1rem;
} 

.header .login-form{
    position: absolute;
    top: 110%;
    right: -110%;
    width: 35rem;
    box-shadow: var(--box-shadow);
    padding: 2rem;
    border-radius: .5rem;
    background: #fff;
    text-align: center;
}

.header .login-form.active{
    right: 2rem;
    transition: .4s linear;
}

.header .login-form h3{
    font-size: 2.7rem;
    text-transform: uppercase;
    color: var(--black);
}

.header .login-form .box{
    display: flex;
    width: 100%;
    margin: 1rem 0;
    background: #eee;
    border-radius: .5rem;
    padding: 1rem;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
}

.header .login-form p{
    font-size: 1.4rem;
    padding: 1rem 0;
    line-height: 0.75rem;
    color: var(--light-color);
}

.header .login-form p a{
    color: var(--orange);
    text-decoration: underline;
}


.banner {
    background:url('banner.png') no-repeat center center/cover; ;
    color: #fff;
    text-align: center;
    padding: 15rem 1rem;
    height:10px;
}

.banner-content h2 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.banner-content p {
    font-size: 2rem;
}


h1{
    text-align: center;
    font-size: 40px;
}
body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
}
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}
.category-card {
    position: relative;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.category-card img {
    width: 250px;
    height: 250px;
    background-size: cover;
    transition: transform 0.3s;
}

.shop-now {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.category-card:hover img {
    height:250px;
    width:250px;
    transform: scale(1.1);
}
.category-title {
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}
.shop-now {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}
.category-card:hover .shop-now {
    width:200px;
    opacity: 1;
}


.products .product-slider{
    padding: 1rem;
}

.products .product-slider:first-child{
    margin-bottom: 2rem;
}

.products .product-slider .box{
    background: #fff;
    border-radius: .5rem;
    text-align: center;
    padding: 3rem 2rem;
    outline-offset: -1rem;
    outline: var(--outline);
    box-shadow: var(--box-shadow);
    transition: .2s linear;
}

.products .wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(26rem,1fr));
    gap: 1.5rem;
}

.products .product-slider .box:hover{
    outline-offset: 0rem;
    outline: var(--outline-hover);
}

.products .product-slider .box img{
    height: 20rem;
}

.products .product-slider .box h3{
    font-size: 2.5rem;
    color: var(--black);
}

.products .product-slider .box .price{
    font-size: 2rem;
    color: var(--light-color);
    padding: .5rem 0;
}

.products .product-slider .box .stars i{
    font-size: 1.7rem;
    color: var(--orange);
    padding: .5rem 0;
}


.space{
    min-height: 7vh;
}

.footer{
    background: #fff;
}

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

.footer .box-container .box img{
    width: 9rem;
}
.footer .box-container .box h3{
    font-size: 2.5rem;
    color: var(--black);
    padding: 1rem 0;
}

.footer .box-container .box h3 i{
    color: var(--orange);
}

.footer .box-container .box .links{
    display: block;
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
}

.footer .box-container .box .links i{
    color: var(--orange);
    padding-right: .5rem;
} 

.footer .box-container .box .links:hover i{
    padding-right: 2rem;
}

.footer .box-container .box p{
    line-height: 1.8;
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
}

.footer .box-container .box .share a{
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    border-radius: .5rem;
    font-size: 2rem;
    color: var(--black);
    margin-left: .2rem;
    background: #eee;
    text-align: center;
}

.footer .box-container .box .share a:hover{
    background: var(--orange);
    color: #fff;
}

.footer .box-container .box .email{
    width: 100%;
    margin: .7rem 0;
    padding: 1rem;
    border-radius: .5rem;
    background: #eee;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
}

.footer .box-container .box .payment-img{
    margin-top: 2rem;
    height: 3rem;
}

.footer .credit{
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    padding-top: 2.5rem;
    font-size: 2rem;
    color: var(--black);
    border-top: var(--border);
}

.footer .credit span{
    color: var(--orange);
}



@media screen and (min-width: 1025px){
    
    .footer .box-container{
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(20rem,1fr));
      gap: 1.5rem;
  }
}














@media screen and (min-width: 768px) and (max-width: 1024px){
   


    .products .wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
        gap: 1.3rem;
      }
      
      
      .products .product-slider .box img{
        height: 10rem;
      }
      
      .products .product-slider .box h3{
        font-size: 1.7rem;
        color: var(--black);
      }
      
      .products .product-slider .box .price{
        font-size: 1rem;
        color: var(--light-color);
        padding: .5rem 0;
      }
      
      .products .product-slider .box .stars i{
        font-size: 1rem;
        color: var(--orange);
        padding: .5rem 0;
      }
      
      
      .btn {
        margin-top: 0.1rem;
        display: inline-block;
        padding: .2rem .2rem;
        font-size: 1.5rem;
        border-radius: .5rem;
        border: .2rem solid var(--black);
        color: var(--black);
        cursor: pointer;
        background: none;
      }
      
      
      .category-card{
        height: 230px;
        width: 160px;
      }
      
      
      
      .shop-now {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px;
        background: #ff6f61;
        color: #fff;
        border: none;
        border-radius: 20px;
        cursor: pointer;
        opacity: 0;
        transition: opacity 0.3s;
      }
      
      .category-card:hover {
      
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      }
      .category-card:hover img {
        height:160px;
        width:140px;
      
      }
      .category-card:hover {
           color:white;
      }
      .category-card:hover .shop-now {
        width:100px;
        opacity: 1;
      }
      
      .categories {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
          gap: 30px;
          padding: 10px;
          margin-top: 10px;
          margin-bottom: 1px;
      }
      
      
      .banner {
        background:url('/images/banner.png') no-repeat center center/cover; ;
        color: #fff;
        text-align: center;
        padding: 15rem 1rem;
        height:100px;
        width: 100%;
        padding-bottom: 50px;
        margin-top: 120px;
        padding-top: 20px;
      }
      
      .banner-content h2 {
          font-size: 2.9rem;
          margin-bottom: 0.5rem;
      }
      
      .category-card img {
          width: 135px;
          height: 140px;
          background-size: cover;
          transition: transform 0.3s;
      }
      
      .banner-content p {
        font-size: 2rem;
      }  
      
          
          .footer .box-container{
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(25rem,1fr));
            gap: 1.5rem;
        }
      
  
}



























@media screen and (min-width: 481px) and (max-width: 768px) {
    
  .header .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header .navbar.active {
    display: flex;
}

#menu-btn {
    display: block;
}

.header .search-form{
    position: absolute;
    top: 110%;
    right: -130%;
    width: 50rem;
    height: 5rem;
    background: #fff;
    border-radius: .5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: var(--box-shadow);
}

.header .search-form.active{
    right: 2rem;
    transition: .7s  linear;
}




.products .wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.3rem;
}


.products .product-slider .box img{
  height: 10rem;
}

.products .product-slider .box h3{
  font-size: 1.7rem;
  color: var(--black);
}

.products .product-slider .box .price{
  font-size: 1rem;
  color: var(--light-color);
  padding: .5rem 0;
}

.products .product-slider .box .stars i{
  font-size: 1rem;
  color: var(--orange);
  padding: .5rem 0;
}


.btn {
  margin-top: 0.1rem;
  display: inline-block;
  padding: .2rem .2rem;
  font-size: 1.5rem;
  border-radius: .5rem;
  border: .2rem solid var(--black);
  color: var(--black);
  cursor: pointer;
  background: none;
}


.category-card{
  height: 190px;
  width: 130px;
}



.shop-now {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  background: #ff6f61;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card:hover {

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.category-card:hover img {
  height:160px;
  width:140px;

}
.category-card:hover {
     color:white;
}
.category-card:hover .shop-now {
  width:100px;
  opacity: 1;
}

.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 30px;
    padding: 2px;
    margin-top: 10px;
    margin-bottom: 1px;
}

.banner {
  background:url('banner.png') no-repeat center center/cover; ;
  color: #fff;
  text-align: center;
  padding: 15rem 1rem;
  height:100px;
  width: 100%;
  padding-bottom: 50px;
  margin-top: 120px;
  padding-top: 20px;
}

.banner-content h2 {
    font-size: 2.9rem;
    margin-bottom: 0.5rem;
}

.category-card img {
    width: 135px;
    height: 140px;
    background-size: cover;
    transition: transform 0.3s;
}

.banner-content p {
  font-size: 2rem;
}  

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

  
   
}























/*@media screen and (max-width: 480px){
  .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 9px 2%;
        background: #fff;
        box-shadow: var(--box-shadow);
        height:80px;
        width:100%;
    }
      .header .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        height: 350px;
    }
   .header .navbar.active {
      display: flex;
  }
    .header .navbar a {
    font-size: 1.7rem;
    margin: 0 1rem;
    color: var(--black);
    line-height: 3;
}
    #menu-btn {
        display: block;
        font-size:12px;
        margin-right: 20px;
    }
   
        .header .search-form {
        position: absolute;
        top: 110%;
        right: -130%;
        width: 30rem;
        height: 5rem;
        background: #fff;
        border-radius: .5rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        box-shadow: var(--box-shadow);
    }
    
    .products .product-slider .box .price {
    font-size: 12px;
    color: var(--light-color);
}
    
    .products .product-slider .box img{
    height:6rem;
    width:5rem;
}

.products .product-slider .box h3{
    font-size:10px;
    color: var(--black);
}

.btn {
        margin-top: 1px;
        display: inline-block;
        padding: 3px;
        font-size: 12px;
        border-radius: .5rem;
        border: .2rem solid var(--black);
        color: var(--black);
        cursor: pointer;
        background: none;
    }
.products .product-slider .box {
    background: #fff;
    border-radius: .5rem;
    text-align: center;
    padding: 15px 15px;
    outline-offset: -1rem;
    outline: var(--outline);
    box-shadow: var(--box-shadow);
    transition: .2slinear;
}

        .header .logo img {
        width: 7rem;
    }
    
    .header .navbar a {
    font-size: 1.7rem;
    margin: 0 1rem;
    color: var(--black);
    line-height: 3;
}

   
  
   .header .icons #search-btn {
    display:none;
}

.header .icons #cart-btn {
    display:none;
}
.header .icons #login-btn {
    display:none;
}
  
   
   
        .header .search-form {
        position: absolute;
        top: 110%;
        right: -130%;
        width: 30rem;
        height: 5rem;
        background: #fff;
        border-radius: .5rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        box-shadow: var(--box-shadow);
    }
    
    .header .search-form.active{
        right: 3rem;
        transition: .4s  linear;
    }

    
.header .search-form input {
    height: 100%;
    width: 100%;
    background: none;
    text-transform: none;
    font-size: 1.6rem;
    color: var(--black);
    padding: 0 2rem;
}
.header .search-form label{
    font-size: 2.2rem;
    padding-right: 1rem;
    color: var(--black);
    cursor: pointer;
}

.header .search-form label:hover{
    color: var(--orange);
}

.products .wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: 2rem;
    }

.banner {
  background:url('banner.png') no-repeat center center/cover; ;
  color: #fff;
  text-align: center;
  padding: 15rem 1rem;
  height:100px;
  width: 103%;
  padding-bottom: 50px;
  margin-top: 70px;
  padding-top: 10px;
}

.banner-content h2 {
    font-size: 2.9rem;
    margin-bottom: 0.5rem;
}


.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    padding: 4px;
    margin: 20px;
}

    .category-card {
        height: 190px;
        width: 130px;
    }

.heading {
    text-align: center;
    padding-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--black);
}
.category-card img {
    width: 130px;
    height: 140px;
    background-size: cover;
    transition: transform 0.3s;
}
h1{
    text-align: center;
    font-size: 30px;
    margin-left:30px;
}
.shop-now {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}
.category-title {
    padding: 15px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}

.category-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.category-card:hover img {
    height:160px;
    width:140px;
  
}
.category-card:hover {
       color:white;
}
.category-card:hover .shop-now {
    width:150px;
    opacity: 1;
}
section {
    padding: 2rem 1%;
}



  .footer .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
        gap: 1.5rem;
    }
    .footer{
        text-align: center ;
         width: 103%;
        height: 100%;
    }
    
.footer .box-container .box p {
    line-height: 1.8;
    font-size: 13px;
    color: var(--light-color);
    padding: 1rem 0;
}
.footer .box-container .box .links {
    display: block;
    color: var(--light-color);
    padding: 2px;
    font-size: 13px;
}

.footer .box-container .box h3 {
    font-size: 2rem;
    color: var(--black);
}
    
    .footer .credit {
    text-align: center;
    margin-top: 2rem;
    padding: 3px;
    font-size: 1rem;
    color: var(--black);
    border-top: var(--border);
}
  
}*/

@media screen and (max-width: 480px) {
   .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 9px 2%;
        background: #fff;
        box-shadow: var(--box-shadow);
        height:80px;
        width:100%;
    }
      .header .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        height: 350px;
    }
   .header .navbar.active {
      display: flex;
  }
    .header .navbar a {
    font-size: 1.7rem;
    margin: 0 1rem;
    color: var(--black);
    line-height: 3;
}
    #menu-btn {
        display: block;
        font-size:12px;
        margin-right: 20px;
    }
   
        .header .search-form {
        position: absolute;
        top: 110%;
        right: -130%;
        width: 30rem;
        height: 5rem;
        background: #fff;
        border-radius: .5rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        box-shadow: var(--box-shadow);
    }
    
    .products .product-slider .box .price {
    font-size: 12px;
    color: var(--light-color);
}
    
    .products .product-slider .box img{
    height:6rem;
    width:5rem;
}

.products .product-slider .box h3{
    font-size:10px;
    color: var(--black);
}

.btn {
        margin-top: 1px;
        display: inline-block;
        padding: 3px;
        font-size: 12px;
        border-radius: .5rem;
        border: .2rem solid var(--black);
        color: var(--black);
        cursor: pointer;
        background: none;
    }
.products .product-slider .box {
    background: #fff;
    border-radius: .5rem;
    text-align: center;
    padding: 15px 15px;
    outline-offset: -1rem;
    outline: var(--outline);
    box-shadow: var(--box-shadow);
    transition: .2slinear;
}

        .header .logo img {
        width: 7rem;
    }
    
    .header .navbar a {
    font-size: 1.7rem;
    margin: 0 1rem;
    color: var(--black);
    line-height: 3;
}

   
  
   .header .icons #search-btn {
    display:none;
}

.header .icons #cart-btn {
    display:none;
}
.header .icons #login-btn {
    display:none;
}
  
   
   
        .header .search-form {
        position: absolute;
        top: 110%;
        right: -130%;
        width: 30rem;
        height: 5rem;
        background: #fff;
        border-radius: .5rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        box-shadow: var(--box-shadow);
    }
    
    .header .search-form.active{
        right: 3rem;
        transition: .4s  linear;
    }

    
.header .search-form input {
    height: 100%;
    width: 100%;
    background: none;
    text-transform: none;
    font-size: 1.6rem;
    color: var(--black);
    padding: 0 2rem;
}
.header .search-form label{
    font-size: 2.2rem;
    padding-right: 1rem;
    color: var(--black);
    cursor: pointer;
}

.header .search-form label:hover{
    color: var(--orange);
}
.products .wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
        gap: 2rem;
    }
.banner {
  background:url('banner.png') no-repeat center center/cover; ;
  color: #fff;
  text-align: center;
  padding: 15rem 1rem;
  height:100px;
  width: 103%;
  padding-bottom: 50px;
  margin-top: 70px;
  padding-top: 10px;
}

.banner-content h2 {
    font-size: 2.9rem;
    margin-bottom: 0.5rem;
}


.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    padding: 4px;
    margin: 10px;
}

    .category-card {
        height: 190px;
        width: 140px;
    }

.heading {
    text-align: center;
    padding-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--black);
}
.category-card img {
    width: 130px;
    height: 140px;
    background-size: cover;
    transition: transform 0.3s;
}
h1{
    text-align: center;
    font-size: 30px;
    margin-left:30px;
}
.shop-now {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}
.category-title {
    padding: 15px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}

.category-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.category-card:hover img {
    height:160px;
    width:140px;
  
}
.category-card:hover {
       color:white;
}
.category-card:hover .shop-now {
    width:150px;
    opacity: 1;
}
section {
    padding: 2rem 1%;
}

  .footer .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(20rem,1fr));
        gap: 1.5rem;
    }
    .footer{
        text-align: center ;
         width: 103%;
        height: 100%;
    }
    
.footer .box-container .box p {
    line-height: 1.8;
    font-size: 13px;
    color: var(--light-color);
    padding: 1rem 0;
}
.footer .box-container .box .links {
    display: block;
    color: var(--light-color);
    padding: 2px;
    font-size: 13px;
}

.footer .box-container .box h3 {
    font-size: 2rem;
    color: var(--black);
}
    
    .footer .credit {
    text-align: center;
    margin-top: 2rem;
    padding: 3px;
    font-size: 1rem;
    color: var(--black);
    border-top: var(--border);
}
}











