.secondary-navbar li {
  cursor: pointer;
}
.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: 275px; /* Adjust this height to fit your content */
  padding: 40px 30px 30px;
}

.dropdown-closed {
  height: 0;
  padding: 0;
}

/* 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);
}

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