
.new_header_top_v {
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid #e2e2e2;
  position: relative;
  /* z-index: 9999; */
  z-index: 9;

  display: flex;
}

.new_header_top_v_container {
  max-width: 1200px;
  margin: auto;
  padding: 8px 20px;

  display: flex;
  flex-direction: row;
  justify-content: flex-start; /* align like words */
  align-items: center;

  flex-wrap: nowrap; /* keep in one line on desktop */
  gap: 40px; /* smaller gap for word-like spacing */
}

/* Boxes */
.new_header_top_v_box {
  display: inline-flex; /* inline-like behavior */
  align-items: center;
  gap: 6px;
  white-space: nowrap; /* prevent wrapping inside box */
  flex-shrink: 0; /* do not shrink */
}

.new_header_top_v_box a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}



/* Social icons */
.new_header_top_v_social_box a {
  font-size: 16px;
  margin-left: 10px;
}





/* MOBILE */
@media (max-width: 768px) {
  .new_header_top_v_container {
    justify-content: center;
    flex-wrap: wrap; /* allow wrapping on very small screens */
    gap: 8px; /* tighter spacing on mobile */
  }

  .new_header_top_v_box:not(.new_header_top_v_social_box) {
    display: none; /* hide phone/email on mobile */
  }

  .new_header_top_v_social_box a {
    font-size: 18px;
  }

  .new_header_top_v.new_header_top_v_hide {
    transform: translateY(-100%);
  }
}
