.home_Page .section-listProduct .section-listProduct {
  margin-bottom: 35px;
}

/* 
.section-listProduct ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
} */

.section-listProduct li {
  background: #fff;
  padding-bottom: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.section-listProduct .topImage {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.section-listProduct li h4 {
  text-align: center;
}

.section-listProduct li .product_info {
  padding: 0 20px;
}

.section-listProduct li .product_info>div {
  border-radius: 15px;
  padding: 15px 20px;
  margin-bottom: 20px;
}

.select-form {
  height: 44px !important;
  background: #fdfdfd;
  border-radius: 10px;
  border: 1px solid #f1e9ff;
}

.owl-stage {
  display: flex;
}



/*  */

/* Container carousel */
.owl-carousel-container {
  position: relative;
}


.owl-carousel-container:hover .custom-nav .nav-btn {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.custom-nav {
  z-index: 100;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.nav-btn {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Dots custom */
.custom-dots {
  text-align: center;
  margin-top: 15px;
}

.custom-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-dots span.active {
  background-color: #6f5dcf;
}

.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background-color: #6f5dcf;
}

.owl-theme .owl-dots .owl-dot {
  outline: none;
}