a{
    text-decoration: none;
    color: transparent;
}

.herosection {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.herosection .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
}

.hero-content {
  position: relative;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 600;
  color: var(--black);
}

.hero-content h1 span {
  color: var(--white);
}

.hero-content p {
  margin: 15px 0 30px;
  font-size: 24px;
  color: var(--light-black);
  font-weight: bold;
}

.btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: flex;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  justify-content: center;
  align-items: center;
  gap: 10px;

}

.herobtnimage{
    display: block;
    width: 20px;
    height: 20px;
}

.btn.primary {
  background: linear-gradient(to right,var(--main-blue) 35%,  var(--greenish-blue) 100%);
  color: var(--black);
  font-weight: 600;
  color: var(--white);
}

.btn.secondary {
  border: 2px solid var(--light-blue);
  color: #06beb6;
  background: var(--white);
  font-weight: 600;
}

.btn.secondary:hover {
  background: #06beb6;
  color: #fff;
}









.categories-section {
  padding: 20px;
  text-align: center;
}

.categories-section h2 {
  font-size: 40px;
  margin: 80px 0px;
  color: var(--black);
  font-weight: 600;
}

.categories-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  background: linear-gradient(to right, var(--bg-color1) 50%, var(--bg-color2)100%);
  flex: 1 0 250px;
  height: 150px;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.category-card .categoryimage {
  display: block;
  width: 40px;
  height: 40px;
}

.category-card p {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  display: -webkit-box;
-webkit-line-clamp: 1;    
line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* Responsive for smaller screens */
@media screen and (max-width: 600px) {
  .categories-section h2 {
    font-size: 1.5rem;
  }
  .category-card {
    padding: 20px 10px;
  }
}








.why-choose {
  max-width: 1200px;
  text-align: center;
  margin: 0px auto;
  padding: 20px 20px 60px 20px;
}

.why-choose h2 {
  font-size: 40px;
  font-weight: 600;
  margin: 80px 0px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
}

.feature-card {
    position: relative;
  flex: 1 0 250px;
  padding: 15px;
  height: 250px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.whychooseimagearea{
    
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.whychooseimage{
    display: block;
    width: 50%;
    height: 50%;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.feature-card p {
    padding: 10px;
  font-size: 18px;
  color: #555;
  line-height: 1.4;
  font-weight: bold;
}





.featuredproductsdisplayarea{
    padding: 60px 20px 60px 20px;
    width: 100vw;
    background-color: var(--light-greenish-blue);
    
}

.featuredproductsdisplayarea .featuredproductareatitle{
    font-size: 40px;
    color: var(--black);
    letter-spacing: 1.5px;
    text-align: center;
    cursor: default;
    font-weight: 600;
    margin: 0px 0px 60px 0px;
}

.featuredproductsdisplayarea .seeallcategoryitemsbtn{
        position: absolute;
        background-color: transparent;
        border: none;
        top: 30px;
        right: 6vw;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        display: none;
        
}



.featuredproductsdisplayarea .featuredproductdisplayarea{
    position: relative;
    max-width: 1190px; 
    margin: 20px auto 20px auto;
}

.featuredproductsdisplayarea .featuredproduct {
    
    display: flex;
    overflow-x: auto;          
    scroll-behavior: smooth;
    scrollbar-width: none;       
    -ms-overflow-style: none; 
    padding: 5px;
    &::-webkit-scrollbar {
        display: none;               
    }
    
}

.featuredproductsdisplayarea .featuredproduct .productleftscrollbtn{
    position: absolute;
    background: linear-gradient(to right, var(--main-blue) , var(--greenish-blue));
    border-radius: 50%;
    font-size: 15px;
    padding: 15px;
    border: none;
    color: var(--white);
    top: 50%;
    left: 5px;
    display: none;
    z-index: 900;
    cursor: pointer; 
    transform: translateY(-50%);   
}



.featuredproductsdisplayarea .featuredproduct .productrightscrollbtn{
    position: absolute;
    background: linear-gradient(to right, var(--main-blue) , var(--greenish-blue));
    border-radius: 50%;
    font-size: 15px;
    padding: 15px;
    border: none;
    color: var(--white);
    top: 50%;
    right: 5px;
    display: none;
    z-index: 900;
    cursor: pointer;
    transform: translateY(-50%);
}

.featuredproductsdisplayarea .featuredproduct .slider {
    display: flex;
    gap: 20px;
                    
}


.product-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.1), -3px 0px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 280px;
  min-width: 280px;
  padding: 20px;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-img {
  width: 100%;
  height: 200px;
  position: relative;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.wishlistbadge{
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: var(--white);
    width: 30px;
    height: 45px;
    border-top-left-radius: 18px ;
    border-top-right-radius: 18px ;
    border-bottom-left-radius: 15px ;
    border-bottom-right-radius: 15px ;
    box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.1), -3px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    & img{
        display: block;
        width: 25px;
        height: 25px;
    }
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  color: var(--white);
  padding: 4px 8px;
  border-radius: 5px;
  overflow: hidden;
}

.badge.Discount { background: var(--red); }
.badge.New { background: var(--green); }
.badge.Bestseller { background: var(--light-blue); }


.product-card .productname{
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;    
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card .productshortdesc{
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 1;    
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--grey);
    margin: 10px 0px;
}

.rating {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 0px;
  margin: 10px 0px;
  position: relative;
  & span{
    color: var(--grey);
    font-size: 16px;
  }
}

.rating .discountbadge{
    position: absolute;
    top: 10px;
    right: 0px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    padding: 2px 4px;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--red);
    letter-spacing: 1px;
}

.star-icon{
    display: block;
    width: 25px;
    height: 25px;
}

.priceandbtnarea{
    margin: 20px 0px 10px 0px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.pricearea {
  
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10px;
  
}

.new-price {
  background: linear-gradient(to right, var(--main-blue) , var(--greenish-blue));
  background-clip: text;
  color: transparent;
  font-size: 21px;
}

.old-price {
  color: var(--light-grey);
  text-decoration: line-through;
  font-size: 13px;
}

.add-to-cart {
  background: linear-gradient(to right,var(--main-blue) 35%,  var(--greenish-blue) 100%);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight:normal;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
}


.remove-from-cart {
  background: linear-gradient(to right, var(--red) ,  var(--light-grey));
  color: white;
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight:normal;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 3px;
}

.cartbtnimage{
    display: block;
    width: 18px;
    height: 18px;
}




    .reviews-section {
        max-width: 1300px;
        margin: 0 auto;
        text-align: center;
    }

    .reviews-section h2 {
        font-size: 40px;
        margin: 40px 0px 20px 0px;
    }

    .reviews-section p {
        color: #555;
        margin-bottom: 50px;
        font-size: 18px;
    }

    .reviews-container {
        display: flex;
        overflow-x: hidden;
        scroll-behavior: smooth;
        gap: 20px;
        position: relative;
        margin: 20px;
    }

    .review-card {
        background: var(--light-greenish-blue);
        flex: 0 0 280px;
        border-radius: 12px;
        padding: 20px;
        text-align: left;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }

    

    .review-card img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        float: left;
        margin-right: 15px;
    }

    .review-card h3 {
        font-size: 1.1rem;
        margin: 0 0 5px;
        line-height: 1.2;
    }

    .review-card .stars {
        color: #fbc02d;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .review-card p {
        clear: both;
        font-size: 0.95rem;
        color: #333;
        margin-top: 10px;
    }





.faq-section {
    max-width: 1100px;
    margin: 60px auto 80px auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 60px;
    color: var(--black);
}

.faq-card {
    background-color: var(--pale-blue);
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.faq-question {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.faq-answer {
    font-size: 20px;
    color: var(--grey);
    line-height: 1.6;
}







        

      