.secondary-navbar li {
  position: relative;
  cursor: pointer;
}

.secondary-navbar li #active-point {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #b5bab8;
}
.dropdown-container {
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 50;
  background: rgba(168, 174, 172, 0.85);
}

.dropdown-open {
  height: 270px; /* Adjust this height to fit your content */
  padding: 40px 30px 30px;
  transition: all 0.5s ease-in-out;
}

.dropdown-closed {
  height: 0;
  padding: 0;
  transition: all 0.5s ease-in-out;
}

/* Card animation based on height */
.card-animation {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s ease-in-out;
}

.card-animation-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease-in-out;
}

.dropdown-container .product-card {
  width: 100px;
  max-width: 100px;
  margin: 0 35px;
}

.dropdown-container .product-card h3 {
  text-align: center;
  font-size: 12px;
  margin-top: 6px;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .dropdown-open {
    padding: 40px 10px 20px;
  }
  .dropdown-container .product-card {
    margin: 0 13px;
    max-width: 80px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1086px) {
  .dropdown-container .product-card {
    width: 80px;
    max-width: 80px;
    margin: 0 20px;
  }
}
