@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    margin: 0px;
    padding: 0px ;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
/* font-family: "Inter", sans-serif; */
/* font-family: "Poppins", sans-serif; */

/* =========================header============== */

/* ===========contact-head============== */

.black-Ground{
    background-color: black;
}
.contact-head{
    color:  rgba(255, 255, 255, 1);
    ;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    text-align: left;
    font-family: "Inter", sans-serif;
    width: 90%;
    margin: auto;
}
.contact-head img{
    width: 36px;
    height: 36px;
}
.userNav{
    width: 90%;
    margin: auto;
}

.userImg{
    border: 2px solid black;
    border-radius: 50%;
    position: relative;
}
#green-dot{
    position: absolute;
    bottom: 0px;
    right: -5px;
}
.userNav h5{
    font-family: "Poppins";
    font-size: 15px;
    font-weight: 500;
    line-height: 22.5px;
    text-align: left;
    color: rgba(77, 79, 92, 1);


}
.userNav .user-details span{
    font-family: "Poppins";
    font-size: 13px;
    font-weight: 400;
    line-height: 19.5px;
    text-align: left;
    color: rgba(147, 158, 170, 1);

}

/* ============header end=========== */

/* ==============main=============/ */
 /* ---------herosection-------- */
.heroSection{
    background-image: url(/ images/bg-image.svg);
    position: relative;
    background-repeat: no-repeat;
    height: 250px;
    object-fit: contain !important;
   
}
.heroSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/images/index-hero.png);
   /* Top image */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8; 
 
  }
  .heroSection .heroContent{
    z-index: 2;
    width: 90%;
    margin: auto;
  }
  .heroSection .heroContent h4{
    font-family: "Inter";
    font-size: 42px;
    font-weight: 700;
    line-height: 50.83px;
    text-align: left;
    color: rgba(255, 255, 255, 1);
    
  }
  .heroSection .heroContent p{
    font-family: "Inter";
    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    text-align: left;
    color: rgba(255, 255, 255, 1);
    
  }
  


  /* ---------herosection ends-------------- */
  /* ============containerA============== */
  /* headings */
  .containerA h5{
    font-family: "Poppins";
    font-size: 26px;
    font-weight: 500;
    line-height: 39px;
    text-align: center;
    color: #676767;
 
  }
  .containerA h3{
    font-family: "Poppins";
    font-size: 50px;
    font-weight: 600;
    line-height: 75px;
    text-align: center;

  }
  /* headings ends */


/* ------------filtersection-starts------------- */

  .filter-buttons {
    display: flex;
    gap: 10px;
}

.filter-btn {
    width: 176px;
    height: 56px;
    border-radius: 32px;
    background-color: white;
    color: black;
    border: 2px solid black;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.filter-btn.active {
    background-color: black;
    color: white;
}




.type-buttons {
    display: flex;
    gap: 10px;
}

.type-btn {
    padding: 10px 20px;
    background-color: white;
    color: gray;
    text-decoration: none;
    cursor: pointer;
    font-weight: normal;
    transition: color 0.3s;
    border: none;
}

.type-btn.active {
    color: black;
    font-weight: bold;
}
.type-buttons span{
    opacity: 0.7;
}

/* -----------filter-section-ends----------------- */

/* ------------product-list and product-card-------------- */

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product-card {
    margin: 10px;
    padding: 20px;
    width: 302px;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
}

.product-card:hover {
    transform: scale(1.03);
}

.product-card img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.product-card .product-type {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    text-align: center;
    color: #000;
    margin: 0px;

}
.product-card .product-dis{
    font-family: 'Inter';
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #676767;
    margin: 0px;

}
.product-card .price span{
    font-size: 15px;
    font-weight: 400;
    line-height: 18.15px;
    text-align: center;

}
.product-card .price {
    font-family: "Inter";
    font-size: 20px;
    font-weight: 700;
    line-height: 24.2px;
    text-align: center;

}
.product-card .min-order .bold-text-min-order{
    color: #313131;
    
}

.product-card .min-order {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 0.8em;
    color:#676767;
    font-weight: 600;
    background-color: #FFF;
    padding: 4px 8px;
    border-radius: 0px 0px 10px 10px;
}
.view-more-button {
    height: 80px;
}
.view-more-button button{
    border-radius: 32px;
    font-size: 16px;
    height: 50px;
    width: 150px;
    box-shadow: 0px 10px 20px 0px #0000004D;
    ;
} 
footer{
    height: 350px;
    background-color: #000;
    color: #FFF;
    border-radius: 180px 180px 0px 0px;
    
}
footer .footer-login-container{
    font-family: 'Inter';
    font-size: 15px;
    font-weight: 400;
    line-height: 18.15px;
    text-align: center;

}
footer .copyright{
    font-family: 'Inter';
    font-size: 15px;
    font-weight: 400;
    line-height: 18.15px;
    text-align: left;

}

