.prod-nav {
    display: flex;
    align-items: center;
    gap: 48px;
  }
  .prod-nav ul {
    display: flex;
    list-style-type: none;
    height: 56px;
    margin: 0;
    gap: 48px;
  }
  .prod-nav ul li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .prod-nav ul li a {
    text-decoration: none;
    color: #787878;
    font-size: 1rem;
    font-weight: 400;
    font-family: GeneralSans;
  }

  .prod-nav ul .current_page_item a {
    color: #ffffff;
    position: relative; /* Make sure the element is positioned for ::after to work properly */
}

.prod-nav ul .current_page_item a::after {
    content: '';
    width: 16px;
    height: 6px;
    background-color: #96C942;
    position: absolute;
    bottom: -20px; /* Adjust position as needed */
    left: 50%;
    transform: translateX(-50%); /* Center the div horizontally */
    border-radius: 6px; /* Optional: to give it slightly rounded edges */
}