
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Pacifico&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   font-family: "Noto Sans", sans-serif;

/* border: 2px solid red; */
}

:root{
  --lead: #212121;
  --gold-finger: #F2BD12;
  --eye-ball: #FFFDF7;
  --hint-yellow: #FCF1CC;
  --pure-white: #FFF;
}

body{
  background-color: var(--eye-ball);
}


/* BACIC STYLING */



.m-half{
  margin-top: 0.5rem;
}
a{
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--lead);
}


.flex{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.between{
  justify-content: space-between;
}

.gap-2{
  gap: 2rem;
}
.gap-3{
  gap: 3rem;
}
  li{
    list-style: none;
  }


  .p-top{
    padding: 10rem;
  }
  .text-center{
    text-align: center;
  }

  .m-auto{
    margin: auto;
  }

 
/* HEADER STYLING */

/* header{
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s ease;
}

header.scrolled{
  position: fixed;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
} */
.navbar{
  min-height: 14vh;
  
  
}

.wrapper{
  max-width: 1450px;
  margin: auto;
  padding-inline: 1.5rem;
}

.logo{
  
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold-finger);
}

.btn{
  display: inline-block;
  padding: .9rem 2rem;
  background: var(--gold-finger);
  border-radius: 1rem;
  font-size: 1.1rem;
transition: 0.3s ease-in;
  color: var(--pure-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 1px;
}

.btn:hover{
  background-color: var(--lead);
}


.cart-icon{
  font-size: 1.3rem;
  color: var(--lead);
  position: relative;
}

.cart-icon .cart-value{
  position: absolute;
  top: 50%;
  right: -10px;
  font-size: 0.85rem;
  width: 20px;
  aspect-ratio: 1;
  border-radius: 100vw;
  background: var(--gold-finger);
  color: var(--lead);
  text-align: center;
}


.hamburger{
  font-size: 1.5rem;
  display: none;
}

.mobile-menu{
  display: none;
}

/* SECTION STYLING */

.hero-section{

  min-height: calc(100vh - 14vh);
}


img{
  max-width: 100%;
  height: auto;
  margin: auto;
  display: block;
}

.content,
.image-container,
.service-card{
  flex: 1;
  flex-basis: 300px;
}


h1{
  font-size: 5vw;
  color: var(--lead);
}
 h1 span{
  color: var(--gold-finger);
 }

 p{
  font-size: 1.25rem;
  color: gray;
  line-height: 1.8rem;
  font-weight: 400;
 }

 .para{
  margin-block: 2rem;
  max-width: 550px;
 }

 .social-icons{
  background-color: var(--hint-yellow);
  padding: 8px;
  border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 1px;
 }

 .social-icons:hover{
  background: var(--lead);
  color: var(--pure-white);
  transition: 0.3s ease-in;
 }


   /* SECTION 01 */

  h5{
    font-size: 1.2rem;
    letter-spacing: .2rem;
    color: var(--gold-finger);
    text-transform: uppercase;
  }

  h2{
    font-size: 3.2rem;
    text-transform: capitalize;
    color: var(--lead);
  }
  h3{
    font-size: 1.8rem;
    text-transform: capitalize;
    color: var(--lead);
  }

.service-card{
  margin-top: 2rem;
}
  .service-card h3{
    margin-block: 1.7rem;
  }




  /* SECTION 02 */


  .order-card{

    flex: 1;
    flex-basis: 300px;
    padding: 0rem 1rem 2rem 1rem;
    background: var(--pure-white);
    border: .1rem solid var(--gold-finger);
     border-radius: 2rem;
  box-shadow: 
  rgba(0, 0, 0, 0.09) 8px 8px 8px, rgba(0, 0, 0, 0.09) 8px 8px 8px inset;

  }

 .order-card h4{
    font-size: 1.4rem;
    color: var(--lead);
  }


  
.card-image img{
  width: 15rem;

  filter: drop-shadow(rgba(0, 0, 0, 0.531)   0  10px 10px);
}

.mt-4{
  margin-top: 4rem;
}

.mt-2{
  margin-top: 1rem;
}

.order-card .price{
    font-size: 1.7rem;
    color: var(--gold-finger);
    padding: 1.3rem 0rem 2rem 0rem;
  }


    /* CART TAB STYLING */

    .cart-tab{
      background-color: var(--hint-yellow);
      position: fixed;
      inset: 0 -500px 0 auto;
      width: 25rem;
      padding-block: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 99;
      box-shadow: rgba(0, 0, 0, 0.298) -10px -10px 20px;
         transition: 0.5s ease-in-out;
    }


    .cart-tab-active{
       inset: 0 0 0 auto;
    
    }
    .cart-list{
      flex: 1;
      width: 100%;
      margin-top: 1.5rem;
      overflow: auto;
    }

    .cart-list::-webkit-scrollbar{
       width: 0;
    }

    .total-container{
      width: 100%;
      background-color: var(--gold-finger);
      text-align: center;
      margin-block: 1rem;
      padding-block: 1rem;
    }

    .total-container h4{
      display: inline-block;
      font-size: 1.3rem;
      font-weight: 400;
    }

    .btn-container .btn {
      background-color: var(--lead);
      transition: 0.3s ease-in-out;
    }

    .btn-container .btn:hover{
      background-color: var(--gold-finger);
      color: var(--lead);
    }

    .item{
      display: flex;
     padding: .7rem 1rem;
      align-items: center;
      gap: 1rem;
      transition: all 0.5s ease-in-out;
    }

    .item.slide-out{
     transform: translateX(50%);
         opacity: 0;
      }

    .item .detail{
      flex: 2;
    }

.item .img-container img{
  width: 5rem;
}

.item h4{
  font-size: 1rem;
  font-weight: bolder;
  color: var(--lead);
}
.item .item-total{
  font-weight: 400;
  margin-top: .3rem;
}

.quantity-btn{
  background-color: var(--lead);
  color: var(--pure-white);
  width: 1.7rem;
  aspect-ratio: 1;
  border-radius: 100vw;
  text-align: center;
  line-height: 1.7rem;
  
}

/* .qq{
  margin-left: 1.5rem;
} */

.item .quantity-value{
  font-size: 1.2rem;
  font-weight: 400;
  margin-inline: .6rem;
  
}



.cart-list .item:nth-child(even){
  background: var(--eye-ball);
}


   /* SECTION 03 */

   
    .swiper {
      width: 100%;
      height: 100%;
    }

    .review-container{
      width: 650px;
      max-width: 100%;
      flex: 1;
    }


    .profile{
      width: 4rem;
       aspect-ratio: 1;
       border-radius: 100vw;
       overflow: hidden;
    }

    .profile img{
        width: 100%;
       height: 100%;
       object-fit: cover;
    }


    .fa-star{
      color: var(--gold-finger);
    }
    

    .arrow{
  width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 100vw;
  background: var(--gold-finger);
  color: var(--lead);
  text-align: center;
  line-height: 2.5rem;
}
    
    
    /* SECTION 04 */

.app-container{
  background-color: var(--hint-yellow);
  padding: 3rem 6rem;
  border-radius: 3rem;
}





.app-container .image-container img{
  width: 25rem;
}


/* SECTION 05 */
  .input-container{
    width: 43rem;
    max-width: 100%;
    background-color:var(--pure-white);
    padding: 0.8rem;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 5px 7px 4px;
    border-radius: 1rem;
  }
  input[type="email"]{
    flex: 1;
    height: 7vh;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    padding-left: 1rem;
  }

  input[type="email"]:focus{
    outline: none;
  }


/* FOOTER STYLING */

.footer-container{
 
  padding-block: 4rem;
  background-color: var(--hint-yellow);
}

.footer-container .flex{
  align-items: flex-start;
}

.footer-wrapper{
  flex: 1;
  flex-basis: 200px;
}

.footer-wrapper:nth-child(1){
  flex: 2;
  flex-basis: 300px;
}

.footer-wrapper .social-icons{
  background-color: var(--pure-white);
  border-radius: 0.8rem;
}
.footer-wrapper .social-icons:hover{
  background-color: var(--lead);
  color: var(--pure-white);
}

ul li{
  margin-top: 1.5rem;
}

ul h3{
  margin-top: 2.5em;
}

.footer-link{
  color: gray;
  font-size: 1.1rem;
  transition: 0.3s ease-in-out;
}

.footer-link:hover{
  color: var(--lead);
}


.copy p{
  display: flex;
  margin: auto;
}









/* MEDIA QUERIES */

@media screen and (max-width:780px) {


  /* HEADER STYLING */

  .navlist,
  .desktop-action .btn{
    display: none;
  }

  .desktop-action .hamburger{
    display: block;
  }

  .mobile-menu{
    display: flex;
    flex-direction:column ;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: absolute;
    top: 20%;
    left: -100%;
    transform: translateX(-50%);
    width: 20rem;
    border: 1px solid var(--gold-finger);
    padding: 2rem;
    background-color: var(--pure-white);
    border-radius: 2rem;
  box-shadow: 
  rgba(0, 0, 0, 0.09) 8px 8px 8px, rgba(0, 0, 0, 0.09) 8px 8px 8px inset;

  transition: all 0.5s ease-in-out;
  }

  .mobile-menu-active{
    left: 50%;
    transform: translateX(-50%);
  }


  /* SECTIONS STYLING */

  h1{
    font-size: 3rem;
  }
    
  .content{
    padding-top: 3rem;
  }

  .gap-2{
    gap: 0.9rem;
  }

  p{
     font-size: 1.2rem;
  }

  .gap-4{
    gap: 4rem;
  }

  .hamburger{
    margin-left: 5px;
  }
  

  .btn{
  display: inline-block;
  padding: .7rem 1rem;
  background: var(--gold-finger);
  border-radius: 1rem;
  font-size: 1.1rem;
transition: 0.3s ease-in;
  color: var(--pure-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 1px;
}


.text-center h2{
  font-size: 2.1rem;
}


.service-card h3{
  font-size: 1.4rem;
}
.service-card p{
  font-size: 1rem;
}

 .gap-4{
    gap: 2rem;
  }

  .p-top{
    padding-top: 8rem;
  }
  
  .para{
    font-size: 1.1rem;
  }

/* section 03 */

.content h2{
  font-size: 2.5rem;
}

  /* SECTION 04 */

  .app-container{
    padding: 2.2rem;
  }
  .app-container .content h2{
    font-size: 2.1rem;
  }
  .app-container .content h5{
    font-size: 0.9rem;
  }

  .app-container .content p{
       font-size: 0.9rem;
  }

  .review-container{
    width: 22rem;
  }

  /* SECTION 05 */

  .input-container{
    width: 43rem;
    max-width: 100%;
  }

  input::placeholder{
    font-size: 1rem;
  }

   .input-container{
    gap: 5px;
  }

  .input-container .btn{
    padding: 8px 10px;
    font-size: 14px;
  }

  .input-container input{
    font-size: 14px;
  }

  .pp{
    font-size: 1rem;
  }

}