.section-gap {
  margin-top: 20px;
}


#mainCarousel {
  height: 50vh;
}

.top-selling-product {
  height: 260px;
  border-radius: 4px;

  position: relative;

}

.top-selling-product-content {
  position: absolute;
  padding: 20px;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  border: 2px solid var(--accentColorLight);
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  align-content: center;
  text-align: center;
}

.top-selling-product-content h2
{
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 35px;
  max-height: 70px;
}
.top-selling-product-content p
{
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 15px;
  max-height:45px;
}

.top-selling-product-description {
  font-size: 12px;
  font-weight: 400;
  margin-top: 10px;

}

.top-selling-product-cart {
  border: none;
  background-color: transparent;
  color: white;
  border: 2px solid var(--accentColor);
  border-radius: 4px;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

.top-selling-product-cart:hover {
  background-color: var(--accentTransparent);
  color: white;
  cursor: pointer;
}

/* .featured-category-container{
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: var(--max-width);
  background-color: yellow ;
  padding: 10px;
}
.featured-category-container::-webkit-scrollbar {
  display: none;
} */
.featured-category-item {
  /* height: 150px; */
  width: 100px;
  border-radius: 4px;
  border-radius: 6px;
  padding: 6px;
  margin-right: 10px;
  text-align: center;
}

.featured-category-item img {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background-color: var(--accentColorLight);
  object-fit: cover !important;
}


.featured-category-item-content {
  margin-top: 6px;
  width: inherit;
  color: var(--font-color);
  text-align: center;
  line-height: 20px;
  max-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
}


#popular-containerId {
  scrollbar-width: none;
}


.all-product-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  column-gap: 1rem;
  row-gap: 1rem;
}
/* Product details */

.product-details-images{
  height: 440px;
}



.counter-input{
  border: none;
  max-width: 40px;
  border: 1px solid var(--accentColor);
  margin: 0px;
  padding: 0 5px;
  text-align: center;

}
.counter-input:focus{
  outline: none;
}

.rating-section{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.rating-item{
  border-top:1px solid grey ;
  padding: 14px;

}

.comment-images{
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
 
  gap: 10px;
}
.comment-images .comment-img-item{
  min-height: 100px;
  max-height: 150px;
}

@media screen and (max-width: 768px) {
  #mainCarousel {
    height: 30vh;
  }

}