#green-menu-bar .row.d-flex {
    align-items: center;
  }
  #green-menu-bar .bloc-green-menu-bar-margin-top {
    margin-top: 0 !important;
  }
  #top-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-right: 24px; /* breathing room before Our Locations button */
  }
  .top-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .top-nav > li {
    position: relative;
    display: flex;
    align-items: center;
  }
  /* Clean sans-serif (Alef) for the nav items - pairs with the Rancho
     script used on CTA buttons and major headings across the site.
     Font-size uses clamp() so items scale smoothly between 992px and
     1600px+ without abrupt breakpoint jumps. */
  .top-nav-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff !important;
    font-family: 'Alef', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(0.82rem, 0.8vw + 0.35rem, 1.08rem);
    line-height: 1;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    padding: 14px clamp(6px, 0.7vw, 14px);
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0,40,20,0.35);
    white-space: nowrap;
    transition: color 0.15s ease, transform 0.15s ease;
  }
  /* Belt-and-suspenders fallback for older browsers that do not support
     clamp(). Also useful for fine-tuning at specific breakpoints. */
  @media (max-width: 1199px) {
    .top-nav-link { letter-spacing: 0.8px; }
  }
  @media (max-width: 1099px) {
    .top-nav-link { letter-spacing: 0.5px; }
    .top-nav { gap: 0; }
  }
  .top-nav > li:hover > .top-nav-link,
  .top-nav-link:hover,
  .top-nav-link:focus {
    color: #FFE52B !important;
    text-decoration: none;
  }
  .top-nav > li > .top-nav-link::after {
    content: "";
    display: block;
    height: 2px;
    background: transparent;
    margin-top: 4px;
    transition: background 0.15s ease;
  }
  .top-nav > li:hover > .top-nav-link::after {
    background: #FFE52B;
  }

  /* Dropdown panel (opens on hover) */
  .top-dd {
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    min-width: 260px;
    background: #FFE52B;
    border: 2px solid #008653;
    border-radius: 0 0 10px 10px;
    padding: 18px 20px 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 1000;
    box-shadow: 0 14px 30px rgba(0,60,30,0.28);
  }
  /* Last dropdown opens aligned to right edge to avoid overflow */
  .top-dd.top-dd-right {
    left: auto;
    right: 0;
  }
  .top-nav > li:hover > .top-dd,
  .top-nav > li:focus-within > .top-dd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .top-dd-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid rgba(0,134,83,0.25);
    font-family: 'Rancho', 'Alef', sans-serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #008653;
    letter-spacing: 0.3px;
  }
  .top-dd-icon {
    width: 22px; height: 22px;
    color: #008653;
    flex-shrink: 0;
  }
  .top-dd-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .top-dd-list li {
    margin: 0;
  }
  .top-dd-list li a {
    display: block;
    padding: 7px 4px;
    color: #1c2a24;
    font-family: 'Alef', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted rgba(0,60,30,0.08);
    transition: color 0.15s ease, padding-left 0.15s ease;
  }
  .top-dd-list li:last-child a {
    border-bottom: none;
  }
  .top-dd-list li a:hover,
  .top-dd-list li a:focus {
    color: #008653;
    padding-left: 8px;
    text-decoration: none;
  }
  .top-dd-list li.top-dd-sep {
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1.5px solid rgba(0,134,83,0.25);
  }
  .top-dd-list li.top-dd-sep a {
    color: #008653;
    border-bottom: none;
    font-weight: 700;
  }
  /* Locations dropdown: wider, shows each farm's address + phone inline */
  .top-dd-locations { min-width: 300px; }
  .top-dd-list.locations-dd li a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 4px;
  }
  .top-dd-list.locations-dd li a strong {
    color: #008653;
    font-family: 'Alef', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
  }
  .top-dd-list.locations-dd li a .loc-sub {
    font-size: 0.82rem;
    color: #556;
    font-weight: 500;
  }
  .top-dd-list.locations-dd li a .loc-phone {
    font-size: 0.92rem;
    color: #1c2a24;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .top-dd-list.locations-dd li a:hover strong,
  .top-dd-list.locations-dd li a:hover .loc-phone { color: #003d26; }
  .top-dd-list.locations-dd li a:hover .loc-sub { color: #008653; }
  

