/* ── Sitewide nav-outer enforcement (preserved from v1.5) ── */
.nav-outer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  padding: 10px 20px !important;
  pointer-events: none !important;
}
.nav-outer > * { pointer-events: auto !important; }

/* WP admin-bar offset */
body.admin-bar .nav-outer { top: 32px !important; }
@media screen and (max-width: 782px) {
  body.admin-bar .nav-outer { top: 46px !important; }
}

/* Reset theme container top spacing + ensure legacy header is hidden */
#page { margin-top: 0 !important; padding-top: 0 !important; }
.site-header { display: none !important; }

/* Hide legacy theme + Elementor header sitewide */
#masthead,header.site-header,.site-header,header[role=banner],.main-navigation,.nav-primary,.elementor-location-header{display:none!important}

/* TRT-page-scoped strip hide — scoped to ALL 10 TRT page IDs found in DB to catch the legacy .strip element on any /trt/* page. .trt-nav and .trt-header-nav are TRT-specific class names so kept sitewide. */
body.page-id-344897 .strip, /* TRT Monitoring Subscription */
body.page-id-346040 .strip, /* TRT Enquiry */
body.page-id-346748 .strip, /* TRT Applications */
body.page-id-347118 .strip, /* TRT Client */
body.page-id-347138 .strip, /* TRT Agreement */
body.page-id-352332 .strip, /* TRT Eligability Test */
body.page-id-354696 .strip, /* TRT (overview) */
body.page-id-354854 .strip, /* TRT Eligibility Check */
body.page-id-354855 .strip, /* TRT Monitoring Only */
body.page-id-354883 .strip, /* Move Your TRT */
.trt-nav, .trt-header-nav { display: none !important; }

/* Nav pill white background enforcement — defeats dark-page-background bleed through */
.nav { background: #ffffff !important; }

/* Product page nav stacking fix — force pill nav above WooCommerce single-product + shop layouts */
.single-product .nav-outer,
.woocommerce .nav-outer { position: fixed !important; z-index: 9999 !important; }

/* ── v4 design CSS (hero-mock + annotations stripped) ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: #1c2b4a;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}


/* ── NAV ── */
.nav-outer {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  pointer-events: none;
}

.nav {
  background: #fff;
  border-radius: 100px;
  height: 54px;
  display: flex;
  align-items: center;
  padding: 0 8px 0 20px;
  width: 100%;
  max-width: 1160px;
  box-shadow: 0 2px 8px rgba(14,21,32,0.10), 0 8px 32px rgba(14,21,32,0.16), 0 0 0 0.5px rgba(28,43,74,0.08);
  pointer-events: auto;
  position: relative;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 6px;
}
.logo-mark {
  width: 30px; height: 30px;
  background: #1c2b4a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 15px; height: 15px; }
.logo-name {
  font-size: 11px; font-weight: 600;
  color: #1c2b4a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-sep {
  width: 1px; height: 22px;
  background: #e8e4de;
  flex-shrink: 0;
  margin: 0 8px;
}

/* Links */
.nav-links { display: flex; align-items: center; flex: 1; }

.nav-item { position: relative; }
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -8px;
  right: -8px;
  height: 12px;
  background: transparent;
  z-index: 299;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 54px;
    padding: 0 13px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 400 !important;
    color: #1c2b4a !important;
    background: none !important;
    border: none !important;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.15s;
    text-decoration: none;
}
.nav-btn:hover { color: #c8a96e; }
.nav-btn.active { 
  color: #c8a96e;
  font-weight: 500;
}
.chevron {
  width: 11px; height: 11px;
  flex-shrink: 0;
  opacity: 0.4;
  transition: transform 0.2s, opacity 0.15s;
}
.nav-item:hover .chevron { transform: rotate(180deg); opacity: 0.75; }

/* ── DROPDOWN SHELL ── */
.dropdown {
  position: absolute;
  top: 100%;
  left: -8px;
  display: flex;
  gap: 0;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 300;
  padding-top: 8px;
}
.nav-item:hover .dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* Invisible bridge pseudo-element — fills the gap between button and dropdown */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

/* List panel */
.drop-list {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(14,21,32,0.10), 0 16px 48px rgba(14,21,32,0.13), 0 0 0 0.5px rgba(28,43,74,0.07);
  padding: 8px;
  min-width: 230px;
}

.drop-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px 9px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.12s;
  cursor: pointer;
  position: relative;
}
.drop-link:hover { background: #f7f4ef; }
.drop-link.has-preview:hover { background: #f7f4ef; }

.drop-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.drop-text {
  font-size: 13.5px; color: #1c2b4a;
  font-weight: 400;
  font-family: 'Outfit', sans-serif;
  flex: 1;
}
.drop-link.featured .drop-text { color: #2563c8; font-weight: 500; }

.drop-hr { height: 0.5px; background: #ede8df; margin: 5px 0; }

.drop-badge {
  font-size: 10.5px; font-weight: 500;
  background: #eef3fc; color: #2563c8;
  border-radius: 100px;
  padding: 2px 8px;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}

/* Preview arrow on list item */
.preview-arrow {
  width: 14px; height: 14px;
  color: #c8c4bc;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.12s;
}
.drop-link.has-preview:hover .preview-arrow { opacity: 1; }

/* ── PREVIEW CARD ── */
.preview-panel {
  display: none;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(14,21,32,0.10), 0 16px 48px rgba(14,21,32,0.13), 0 0 0 0.5px rgba(28,43,74,0.07);
  padding: 16px;
  width: 240px;
  margin-left: 8px;
  align-self: flex-start;
}

.drop-link.has-preview:hover + .preview-panel,
.preview-panel:hover { display: flex; }

/* Better: JS-controlled show */
.preview-panel.visible { display: flex; }

.preview-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9aa4b8;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
}

.preview-prod {
  display: flex; align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 0.5px solid #f0ece4;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.12s;
}
.preview-prod:last-of-type { border-bottom: none; }
.preview-prod:hover { opacity: 0.75; }

.preview-swatch {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.preview-info { flex: 1; min-width: 0; }
.preview-name {
  font-size: 12.5px; font-weight: 500;
  color: #1c2b4a;
  font-family: 'Outfit', sans-serif;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.preview-price {
  font-size: 12px; color: #6b7a94;
  font-family: 'Outfit', sans-serif;
  margin-top: 1px;
}

.preview-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  background: #2563c8;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 9px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 500;
  cursor: pointer;
  width: 100%;
  margin-top: 14px;
  text-decoration: none;
  transition: background 0.15s;
}
.preview-cta:hover { background: #1a52b0; }
.preview-cta svg { width: 12px; height: 12px; }

/* Right side */
.nav-right {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto; flex-shrink: 0;
}

.nav-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    cursor: pointer;
    color: #6b7a94 !important;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
    padding: inherit !important;
}

.nav-icon:hover { background: #f7f4ef; color: #1c2b4a; }
.nav-icon svg { width: 19px; height: 19px; }

.nav-cta {
  background: #2563c8; color: #fff;
  border: none; border-radius: 100px;
  padding: 0 20px; height: 38px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  display: flex; align-items: center; gap: 7px;
  margin-left: 6px;
  text-decoration: none;
}
.nav-cta:hover { background: #1a52b0; }
.nav-cta svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── SEARCH OVERLAY ── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.search-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14,21,32,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.search-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 80px 24px 32px;
  transform: translateY(-100%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 40px rgba(14,21,32,0.15);
}
.search-overlay.open .search-panel {
  transform: translateY(0);
}

.search-panel-inner {
  max-width: 720px;
  margin: 0 auto;
}

.search-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.search-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9aa4b8;
  font-family: 'Outfit', sans-serif;
}

.search-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #f7f4ef;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7a94;
  transition: background 0.15s, color 0.15s;
}
.search-close:hover { background: #ede8df; color: #1c2b4a; }
.search-close svg { width: 14px; height: 14px; }

.search-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7f4ef;
  border: 0.5px solid #e8e4de;
  border-radius: 12px;
  padding: 12px 16px;
  transition: border-color 0.2s;
  margin-bottom: 20px;
}
.search-input-row:focus-within {
  border-color: #c8a96e;
  background: #fff;
}

.search-input-row svg { width: 18px; height: 18px; color: #9aa4b8; flex-shrink: 0; }

.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1c2b4a;
}
.search-input::placeholder { color: #9aa4b8; }

.search-kbd {
  font-size: 11px;
  color: #c0bdb8;
  background: #ede8df;
  border-radius: 5px;
  padding: 2px 7px;
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}

.search-suggestions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.search-suggestion-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9aa4b8;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 6px;
}

.search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.search-chip {
  background: #f7f4ef;
  border: 0.5px solid #e8e4de;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: #1c2b4a;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.search-chip:hover {
  background: #1c2b4a;
  color: #fff;
  border-color: #1c2b4a;
}
.search-chip span {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.search-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 0.5px solid #ede8df;
}

.search-footer-hint {
  font-size: 12px;
  color: #9aa4b8;
  font-family: 'Outfit', sans-serif;
}

.search-go-btn {
  background: #2563c8;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 9px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.15s;
}
.search-go-btn:hover { background: #1a52b0; }
.search-go-btn svg { width: 13px; height: 13px; }

/* ── Hamburger button (mobile only) ── */
.hamburger-btn {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 50% !important;
    background: #1c2b4a !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 6px;
    transition: background 0.15s;
    padding: inherit !important;
}
.hamburger-btn:hover { background: #0e1520; }
.hamburger-btn svg { width: 18px; height: 18px; }

/* Mobile breakpoint — collapse pill nav: hide links + separator, show hamburger */
@media (max-width: 900px) {
  .nav-outer { padding: 10px 12px !important; }
  .nav { width: 100% !important; }
  .nav-links { display: none !important; }
  .nav-sep { display: none !important; }
  .hamburger-btn { display: flex !important; }
  .logo-name { display: none !important; }
  .nav-cta { display: none !important; }
}

/* MOBILE DRAWER — slide-from-right with accordion sub-cats. Source: YR-Nav-Mobile-v1.html, merged v1.16 */
.drawer-overlay { position: fixed; inset: 0; background: rgba(14,21,32,0.55); z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(3px); }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 320px; max-width: 90vw; background: #fff; z-index: 99999; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1); overflow: hidden; }
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 0.5px solid #ede8df; flex-shrink: 0; }
.drawer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.drawer-logo-name { font-size: 11px; font-weight: 600; color: #1c2b4a; letter-spacing: 0.08em; text-transform: uppercase; }
.close-btn { width: 34px; height: 34px; border-radius: 50%; background: #f7f4ef; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #6b7a94; }
.close-btn svg { width: 16px; height: 16px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 0; -webkit-overflow-scrolling: touch; }
.drawer-section-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #9aa4b8; padding: 14px 20px 6px; font-family: 'Outfit', sans-serif; }
.drawer-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; cursor: pointer; transition: background 0.12s; border: none; background: none; width: 100%; text-align: left; font-family: 'Outfit', sans-serif; }
.drawer-item:hover, .drawer-item:active { background: #f7f4ef; }
.drawer-item.open { background: #f7f4ef; }
.drawer-item-left { display: flex; align-items: center; gap: 10px; }
.drawer-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.drawer-item-name { font-size: 15px; font-weight: 400; color: #1c2b4a; }
.drawer-item-name.featured { color: #2563c8; font-weight: 500; }
.drawer-chevron { width: 14px; height: 14px; color: #9aa4b8; transition: transform 0.2s; flex-shrink: 0; }
.drawer-item.open .drawer-chevron { transform: rotate(180deg); }
.drawer-sub { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; background: #faf8f4; }
.drawer-sub.open { max-height: 600px; }
.drawer-sub-link { display: flex; align-items: center; gap: 10px; padding: 10px 20px 10px 38px; text-decoration: none; transition: background 0.12s; border-bottom: 0.5px solid rgba(28,43,74,0.05); }
.drawer-sub-link:last-child { border-bottom: none; }
.drawer-sub-link:hover, .drawer-sub-link:active { background: #ede8df; }
.sub-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.sub-name { font-size: 14px; color: #1c2b4a; font-weight: 400; font-family: 'Outfit', sans-serif; flex: 1; }
.sub-badge { font-size: 10px; font-weight: 500; background: #eef3fc; color: #2563c8; border-radius: 100px; padding: 2px 7px; font-family: 'Outfit', sans-serif; }
.drawer-hr { height: 0.5px; background: #ede8df; margin: 4px 20px; }
.drawer-plain-link { display: flex; align-items: center; gap: 10px; padding: 12px 20px; text-decoration: none; transition: background 0.12s; }
.drawer-plain-link:hover, .drawer-plain-link:active { background: #f7f4ef; }
.drawer-plain-link .drawer-item-name { font-size: 15px; }
.drawer-foot { padding: 16px 20px; border-top: 0.5px solid #ede8df; flex-shrink: 0; background: #fff; display: flex; flex-direction: column; gap: 8px; }
.drawer-cta { display: flex; align-items: center; justify-content: center; gap: 8px; background: #2563c8; color: #fff; border: none; border-radius: 100px; padding: 14px 24px; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none; transition: background 0.15s; width: 100%; }
.drawer-cta:hover { background: #1a52b0; }
.drawer-cta svg { width: 14px; height: 14px; flex-shrink: 0; }
.drawer-cta-secondary { display: flex; align-items: center; justify-content: center; gap: 8px; background: none; color: #6b7a94; border: 0.5px solid #e8e4de; border-radius: 100px; padding: 12px 24px; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 400; cursor: pointer; text-decoration: none; transition: all 0.15s; width: 100%; }
.drawer-cta-secondary:hover { background: #f7f4ef; color: #1c2b4a; }
#wp-admin-bar-user-info .avatar {
    object-fit: cover;    
}
/* ── YR Nav 2025 Redesign ── */

/* Full viewport width — remove max-width cap on outer containers */
.elementor-location-header .e-con,
.elementor-location-header .elementor-container {
    max-width: 100% !important;
}

/* ── Logo ── */
.elementor-element-hdr_logo {
    flex: 1 !important;
    min-width: 140px !important;
}
.elementor-element-hdr_logo img {
    width: 140px !important;
    max-width: 140px !important;
    height: auto !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ── Nav layout: logo left · menu centred · right items right ── */
/* flex:1 on both sides forces nav to be exactly centred */
.elementor-element-hdr_main_row > .e-con-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}
.elementor-element-hdr_nav_wrap {
    flex: 0 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.elementor-element-hdr_right {
    flex: 1 !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
}
.elementor-element-hdr_right > .e-con-inner {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    width: auto !important;
}

/* ── Sign In — gold outlined button ── */
.yr-hdr-signin {
    font-family: 'Outfit', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: #c8a96e !important;
    border: 1.5px solid #c8a96e !important;
    padding: 8px 22px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: background 0.18s ease, color 0.18s ease !important;
    display: inline-block !important;
    line-height: 1.4 !important;
}
.yr-hdr-signin:hover,
.yr-hdr-signin:focus {
    background: #c8a96e !important;
    color: #1c2b4a !important;
    text-decoration: none !important;
}

/* ── Partner Login — small plain text ── */
.yr-hdr-partner {
    font-family: 'Outfit', sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #1c2b4a !important;
    opacity: 0.6 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    letter-spacing: 0.02em !important;
    transition: opacity 0.15s !important;
    display: inline-block !important;
    line-height: 1.4 !important;
}
.yr-hdr-partner:hover,
.yr-hdr-partner:focus {
    opacity: 1 !important;
    text-decoration: none !important;
}

/* ── Transparent nav overlaying hero on homepage ── */
body.home .elementor-location-header .elementor-element-hdr_outer > .e-con-inner,
body.home .elementor-location-header .elementor-element-hdr_outer {
    background: transparent !important;
    box-shadow: none !important;
}
body.home .elementor-location-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

/* Homepage: white nav text on dark hero */
body.home .elementor-location-header .elementor-element-hdr_nav_menu .elementor-nav-menu > li > a {
    color: #ffffff !important;
}
body.home .elementor-location-header .elementor-element-hdr_nav_menu .elementor-nav-menu > li > a:hover {
    color: #c8a96e !important;
}
body.home .elementor-location-header .yr-hdr-signin {
    color: #c8a96e !important;
    border-color: #c8a96e !important;
}
body.home .elementor-location-header .yr-hdr-partner {
    color: rgba(255,255,255,0.7) !important;
    opacity: 1 !important;
}

/* Homepage: invert dark logo to white on transparent nav */
body.home .elementor-location-header .elementor-element-hdr_logo img {
    filter: brightness(0) invert(1) !important;
}

/* ── Generic Sign In button selectors (WooCommerce my-account / Elementor button widget) ── */
header.elementor-location-header a[href*="my-account"],
header.elementor-location-header .elementor-button[href*="my-account"],
header.elementor-location-header .elementor-widget-button a {
    border: 1.5px solid #c8a96e !important;
    color: #c8a96e !important;
    background: transparent !important;
    border-radius: 4px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 13px !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    padding: 8px 22px !important;
}
header.elementor-location-header .elementor-widget-button a:hover {
    background: #c8a96e !important;
    color: #1c2b4a !important;
}

/* ── Remove pink hamburger border ── */
header.elementor-location-header .elementor-menu-toggle {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* ── Logo size (generic widget selectors) ── */
header.elementor-location-header .elementor-widget-image img,
header.elementor-location-header .elementor-widget-site-logo img {
    width: 140px !important;
    max-width: 140px !important;
}

/* ── Mobile Sign In padding ── */
@media (max-width: 768px) {
    header.elementor-location-header .elementor-widget-button a {
        padding: 6px 14px !important;
        font-size: 12px !important;
    }
}

/* ── KEPT: Homepage navy body bg (prevents white gap above navy hero) ── */
body.home { background: #1c2b4a !important; }

/* ── KEPT: Inner-page nav text colour (high-specificity to beat Elementor) ── */
header.elementor-location-header .elementor-element-hdr_nav_menu .elementor-nav-menu__container .elementor-nav-menu .menu-item .elementor-item,
header.elementor-location-header .elementor-element-hdr_nav_menu .elementor-nav-menu__container .elementor-nav-menu .menu-item .elementor-item-anchor,
header.elementor-location-header .elementor-element-hdr_nav_menu .elementor-nav-menu__container .elementor-nav-menu .menu-item .elementor-sub-item {
    color: #0e1520 !important;
}
header.elementor-location-header .elementor-element-hdr_nav_menu .elementor-nav-menu__container .elementor-nav-menu .menu-item .elementor-item:hover,
header.elementor-location-header .elementor-element-hdr_nav_menu .elementor-nav-menu__container .elementor-nav-menu .menu-item .elementor-item-anchor:hover,
header.elementor-location-header .elementor-element-hdr_nav_menu .elementor-nav-menu__container .elementor-nav-menu .menu-item .elementor-sub-item:hover {
    color: #c8a96e !important;
}

/* First section flush under header on homepage */
body.home section.hp-s1 {
  padding-top: 80px !important;
  margin-top: 0 !important;
}
/* Fixed header — homepage transparent over navy hero */
body.home .elementor-location-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent !important;
}

/* Fixed header — inner pages white background */
body:not(.home) .elementor-location-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff !important;
}

/* Inner pages: leave 80px clearance under fixed header */
body:not(.home) .elementor > .e-con.e-parent:first-of-type,
body:not(.home) section:first-of-type {
  padding-top: 80px !important;
}
/* YR Nav — Inner Pages Transparent Header (Desktop Only)
   Overrides snippet 509 (lines 205-213) + kit custom_css (lines 120-123)
   "background: #ffffff !important" + "border-bottom: 1px solid rgba(28,43,74,0.08) !important"
   on inner pages, but only at >=769px so mobile keeps the white background + border per design spec.
   Selector specificity (0,0,2,1) matches snippet 509's rule — this snippet has a higher ID so
   it loads later in cascade order and wins the !important tie.
   Partners pages use a different header element so this selector doesn't match them. */
@media (min-width: 769px) {
  body:not(.home) .elementor-location-header {
    background: transparent !important;
    border-bottom: none !important;
  }
}