/*
 * Primary nav CTA button — loaded on every page so the "Request Account"
 * menu item (class: menu-cta) renders as a green button across the site.
 *
 * Color values mirror shopl9-styles.css :root vars so they survive
 * even when shopl9-styles.css isn't enqueued on the current page.
 */
li.menu-cta > a,
li.menu-cta > .menu-link {
  background: #f06432 !important;       /* brand orange (matches L9 logo) */
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
  padding: 10px 22px !important;
  margin-left: 8px;
  transition: background 0.2s ease;
}
li.menu-cta > a:hover,
li.menu-cta > a:focus,
li.menu-cta > .menu-link:hover,
li.menu-cta > .menu-link:focus {
  background: #d8501f !important;       /* darker orange — hover */
  color: #fff !important;
}
