.seasonal-menu {
  display: flex;
  gap: 100px;
  position: relative;
  background: #ebf3fb;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif !important;
}

.seasonal-menu .menu-item {
  width: 150px;
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: #004a99;
  cursor: pointer;
  transition: color 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.seasonal-menu .menu-icon {
  width: 40px;
  height: 40px;
}

.seasonal-menu .text-wrapper {
  position: relative;
}

.seasonal-menu .underline {
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: #004a99;
  width: 100%;
  opacity: 1;
  transform: scaleX(1.2);
  transition: transform 0.5s ease-in-out, background-color 0.3s ease-in-out;
}

.seasonal-menu .menu-item:hover .underline {
  transform: scaleX(1.5);
  background-color: #4ea6e0;
}

.seasonal-menu .menu-item:hover {
  color: #4ea6e0;
}