.header-locations {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;

  font-size: 13pt;
  line-height: 1.3;
  padding: 12px 0;

  background-color: #105c3d;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  white-space: nowrap;
}

.location-item {
  color: #000000; /* existing text color */
}

.location-label {
  color: #fec236; /* brand green */
  font-weight: 700;
}

.header-locations .location-item {
  color: #d4ffee; /* your existing navy */
}

/* Optional: stack on small screens */
@media (max-width: 768px) {
  .header-locations {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    white-space: normal;
  }
}


.header-full .logo img {
/* Change this for desktop */
    max-width: 300px !important;
    height: auto !important;
    max-height: none !important;
}
.header-full>.container {
    height: 120px;
}
.header-full .logo img {
    max-width: 250px !important;
    max-height: 120px !important;
    width: auto !important;
}
header .header-full .logo {
    margin: 20px;
    
}
/* Make the search wrapper the anchor */
.widgetsearch .ajax-search.relsearch{
  position: relative !important;
}
/* Center the submit button + icon vertically inside the input area */
.widgetsearch .ajax-search.relsearch > button[type="submit"]{
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  height: 38px !important;
  width: 38px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 5 !important;
}
/* Make the icon the right color and not weirdly offset */
.widgetsearch .ajax-search.relsearch > button[type="submit"] i.fa-search{
  color: #105c3b !important;
  line-height: 1 !important;
}
/* Give the input room so text doesn't overlap the icon */
.searchlist_hd,
.searchlistpanel_hd{
  padding-right: 52px !important;
  height: 55px !important; /* keep your height */
  border-radius: 999px !important;
  border: 2px solid #105c3b !important;
}
/* Fix for Logo and Search Bar Overlap - Align Logo Far Left */
/* Force logo to align far left */
.header-full .headersection-2 .logo_container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: left !important;
}
.header-full .headersection-2 .logo_container .widgetlogo {
    text-align: left !important;
}
.header-full .headersection-2 .logo_container .logo {
    margin-left: 0 !important;
}
/* Remove any container padding that might push things inward */
.header-full .headersection-2 .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
/* Add margin to search bar to create separation - just a bit to the right */
.header-full .headersection-2 .search_container {
    margin-left: 150px !important;
    padding-left: 0 !important;
}
/* Add Google Maps pin icon to Branch Finder */
.header-full .headersection-2 .branchfinder_container h2::before {
    content: '\f041' !important; /* Font Awesome map marker icon */
    font-family: 'FontAwesome' !important;
    margin-right: 8px !important;
    color: #ffffff !important; /* Red color like Google Maps pin */
    font-size: 50px !important; /* Adjust size here - try 20px, 24px, 28px, etc. */
    vertical-align: middle !important;
}
/* Alternative: If you want to use a custom image instead */
/* 
.header-full .headersection-2 .branchfinder_container h2::before {
    content: '' !important;
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
    background-image: url('path-to-your-pin-icon.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    margin-right: 8px !important;
    vertical-align: middle !important;
}
*/
/* Adjust the row to prevent overlap */
.header-full .headersection-2 .row-2 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
/* Ensure columns don't have excessive padding */
.header-full .headersection-2 .row-2 > [class*="col-"] {
    padding-left: 10px !important;
    padding-right: 10px !important;
}
/* Replace "Sign In Here" with "Hi There!" - Force display */
.account-btn .welcome-message.line1 {
    visibility: hidden !important;
    position: relative !important;
    display: inline-block !important;
    height: auto !important;
    width: auto !important;
}

.account-btn .welcome-message.line1::after {
    content: 'Hi There!' !important;
    visibility: visible !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    font-size: 14px !important;
    font-weight: normal !important;
    white-space: nowrap !important;
    color: #504b76 !important;
}

/* Keep "Your Account" visible and match Branch Finder style */
.account-btn .welcome-message.line2 {
    display: inline-block !important;
    visibility: visible !important;
    font-size: 16px !important;
    color: #504b76 !important;
}

.account-btn .welcome-message.line2 strong {
    font-weight: bold !important;
    color: #504b76 !important;
}

.account-btn br {
    display: block !important;
}

/* Move Branch Finder closer to Your Account by reducing padding */
.header-full .headersection-2 .branchfinder_container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.header-full .headersection-2 .shoppingtools_container {
    padding-right: 5px !important;
}

/* If the overlay is stealing hover/clicks */
.faded-bg{
  pointer-events: none !important;
}

/* Desktop nav: make submenus smaller, white, and a bit lower */
.menu.expanded.hide-mobile .catalog > li.has-submenu{
  position: relative; /* anchor for absolute submenu */
}

.menu.expanded.hide-mobile .catalog > li.has-submenu > ul.submenu{
  /* positioning */
  position: absolute;
  top: calc(100% + 10px);   /* <-- pushes it down a bit (adjust 6–16px) */
  left: 0;

  /* appearance */
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);

  /* sizing */
  width: 240px;             /* <-- smaller dropdown width */
  padding: 10px 0;
  
  /* behavior */
  z-index: 9999;
}

/* Remove the "mega menu" container behavior inside the submenu */
.menu.expanded.hide-mobile .catalog > li.has-submenu > ul.submenu .submenucontainer{
  height: auto !important;      /* you have inline height:200px */
  width: auto !important;
  padding: 0 !important;
}

/* Dropdown items */
.menu.expanded.hide-mobile .catalog > li.has-submenu > ul.submenu li{
  display: block;
}

.menu.expanded.hide-mobile .catalog > li.has-submenu > ul.submenu a{
  display: block;
  padding: 8px 14px;
  color: #111 !important;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.2;
}

/* Hover state */
.menu.expanded.hide-mobile .catalog > li.has-submenu > ul.submenu a:hover{
  background: rgba(16,92,61,.08); /* subtle green tint */
}

/* Keep your overlay from interfering */
.faded-bg{
  pointer-events: none !important;
}

/* --- FIX: submenu text clipping --- */

/* 1) Let the dropdown and its inner container show overflow */
.menu.expanded.hide-mobile .catalog > li.has-submenu > ul.submenu,
.menu.expanded.hide-mobile .catalog > li.has-submenu > ul.submenu .submenucontainer{
  overflow: visible !important;
  height: auto !important;          /* overrides inline height:200px */
}

/* 2) Ensure list items are not floated / constrained */
.menu.expanded.hide-mobile .catalog > li.has-submenu > ul.submenu li{
  float: none !important;
  width: 100% !important;
}

/* 3) Allow wrapping + prevent “cut off” inside the link */
.menu.expanded.hide-mobile .catalog > li.has-submenu > ul.submenu a{
  display: block !important;
  white-space: normal !important;
  word-break: break-word !important;
  overflow: visible !important;
  height: auto !important;
}

/* 4) Make the dropdown widen if needed (while still “small-ish”) */
.menu.expanded.hide-mobile .catalog > li.has-submenu > ul.submenu{
  width: max-content !important;  /* grows to fit longest item */
  min-width: 220px !important;
  max-width: 420px !important;    /* cap so it doesn’t go crazy */
}

/* ULTIMATE FIX: Force white backgrounds on ALL submenu elements */

/* Main submenu wrapper */
.menu.expanded.hide-mobile .catalog > li.has-submenu > ul.submenu {
  background: #fff !important;
  background-color: #fff !important;
}

/* The submenucontainer div */
.menu.expanded.hide-mobile .catalog > li.has-submenu > ul.submenu .submenucontainer {
  background: #fff !important;
  background-color: #fff !important;
}

/* Any .container div inside submenu */
.menu.expanded.hide-mobile .catalog > li.has-submenu > ul.submenu .container {
  background: #fff !important;
  background-color: #fff !important;
}

/* Target ALL possible container variations */
.menu.expanded.hide-mobile ul.submenu > div,
.menu.expanded.hide-mobile ul.submenu > div > div {
  background: #fff !important;
  background-color: #fff !important;
}

/* Force it on the specific inline-styled container */
.menu.expanded.hide-mobile .catalog > li.has-submenu > ul.submenu > div[class*="container"] {
  background: #fff !important;
  background-color: #fff !important;
}


/* Branch Finder header link */
.header-branch-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 14pt;
  font-weight: 600;
  text-decoration: none;

  color: #504b76;
  white-space: nowrap;
}

/* Icon styling */
.header-branch-link i {
  font-size: 22pt;
  line-height: 1;
  color: #ffffff; /* white icon */
}

/* Hover state */
.header-branch-link:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* REMOVE dark hover background on top-level header nav items */
.menu.expanded.hide-mobile .catalog > li > a,
.menu.expanded.hide-mobile .catalog > li:hover > a,
.menu.expanded.hide-mobile .catalog > li:focus-within > a,
.menu.expanded.hide-mobile .catalog > li.open > a,
.menu.expanded.hide-mobile .catalog > li.active > a {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Some themes add a dark overlay using pseudo-elements */
.menu.expanded.hide-mobile .catalog > li > a::before,
.menu.expanded.hide-mobile .catalog > li > a::after,
.menu.expanded.hide-mobile .catalog > li:hover > a::before,
.menu.expanded.hide-mobile .catalog > li:hover > a::after {
  background: transparent !important;
  opacity: 0 !important;
  box-shadow: none !important;
}

/* If the theme uses a full-width faded overlay behind dropdowns */
.faded-bg {
  display: none !important;
  opacity: 0 !important;
}

/* Make top-level header dropdown links bolder */
.menu.expanded.hide-mobile .catalog > li > a {
  font-weight: 700 !important;   /* try 600–800 depending on taste */
  letter-spacing: 0.03em;        /* optional: adds clarity */
}

/* Center + pad the footer copyright */
.footer .copyright_container {
  text-align: center !important;
  padding: 14px 12px !important; /* adjust as you like */
}

.footer .copyright_container p {
  margin: 0 !important; /* removes default <p> spacing that can throw it off */
}

/* Increase footer link + heading size */
.footer .quicklinks .title {
  font-size: 16px !important;   /* "Customer Service" */
  margin-bottom: 8px;
}

.footer .quicklinks a {
  font-size: 14px !important;   /* Email us, K&B, etc */
}

.footer .menulinks_container {
  padding: 28px 16px !important;
}

/* More vertical space between footer quicklinks */
.footer .quicklinks ul li a {
  display: inline-block;          /* makes padding behave predictably */
  padding: 2px 0 !important;      /* increase for more space */
  line-height: 1.4 !important;    /* optional: adds breathing room */
}

/* Larger header social icons + text */
.header-social-link {
  color: #ffffff !important;
  margin-right: 12px;
  font-size: 25px;        /* Facebook + Instagram size */
}

.header-social-text {
  color: #504b76;
  font-size: 18px;        /* "Follow us" text size */
  font-weight: 600;
  white-space: nowrap;
}

.header-social-wrapper {
  display: flex;
  align-items: center;
}

/* Align social icons + text on the same vertical center */
.header-social-wrapper {
  display: flex;
  align-items: center;   /*  vertical centering */
}

/* Keep spacing clean */
.header-social-link {
  margin-right: 10px;
  line-height: 1;
}

.header-social-text {
  line-height: 1;
}

/* Hide the branch selection banner */
.current-branch-banner {
  display: none !important;
}


/* --- USP / 3-column strip (full-width, white) --- */
.usp-strip{
  width:100vw;                 /* full viewport width */
  margin-left:50%;
  transform:translateX(-50%);  /* break out of container */
  padding:26px 0;
  background:#ffffff;
  border-top:1px solid rgba(0,0,0,.05);
  border-bottom:1px solid rgba(0,0,0,.05);
}

.usp-container{
  max-width:1400px;            /* wider than before */
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:28px;                    /* ⬅ more spacing between columns */
}

/* Card styling */
/* Softer USP cards */
.usp-card{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 20px;
  background:#f3f7f5;          /* light complementary green-tint */
  border:1px solid #105c3d;    /* thinner border */
  border-radius:12px;
  text-decoration:none;
  color:inherit;
  transition:transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}

.usp-card:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(0,0,0,.12);
  background:#ffffff;          /* clean white on hover */
}

/* Icon */
.usp-icon{
  width:46px;
  height:46px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#105c3d;
  color:#ffffff;
  font-size:20px;
  flex:0 0 auto;
}

/* Headline */
.usp-title{
  margin:0;
  font-size:15px;
  line-height:1.2;
  letter-spacing:.03em;
  font-weight:800;
  text-transform:uppercase;
  color:#105c3d;               /* ⬅ headline green */
}

/* Supporting text */
.usp-text{
  margin:6px 0 0 0;
  font-size:13.5px;
  line-height:1.3;
  color:#333;
}

/* Responsive stacking */
@media (max-width: 900px){
  .usp-container{
    grid-template-columns:1fr;
    gap:16px;
  }
}

.map-container {
  width: 100%;
  height: 600px; /* or 70vh, 100vh, etc */
  overflow: visible;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== Goodro "Pay Bills" CTA ===== */
:root{
  --goodro-green: #105c3d;
  --goodro-yellow: #F2C94C; /* <-- replace with your header yellow */
}

.goodro-pay-cta-wrap{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 12px 0 18px;
}

.goodro-pay-cta{
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 18px;
  border-radius: 999px;

  border: 2px solid var(--goodro-green);
  background: var(--goodro-yellow);

  text-decoration: none !important;
  color: var(--goodro-green) !important;

  font-weight: 700;
  letter-spacing: .2px;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(16,92,61,.15);

  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}

.goodro-pay-cta:hover,
.goodro-pay-cta:focus{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(16,92,61,.22);
  text-decoration: none !important;
  color: var(--goodro-green) !important;
}

.goodro-pay-cta:active{
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(16,92,61,.15);
}

.goodro-pay-cta-icon{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  border: 2px solid var(--goodro-green);
  flex: 0 0 auto;
}

.goodro-pay-cta-icon i{
  font-size: 18px;
  color: var(--goodro-green);
}

.goodro-pay-cta-text{
  font-size: 18px;
  white-space: nowrap;
}

/* Mobile: make it full-width and wrap nicely */
@media (max-width: 600px){
  .goodro-pay-cta{
    width: 100%;
    justify-content: center;
    padding: 14px 14px;
  }
  .goodro-pay-cta-text{
    font-size: 16px;
    white-space: normal;
    text-align: center;
  }
}

.goodro-pay-cta-wrap{
  margin-bottom: 40px;
}

.goodro-pay-cta-wrap{
  min-width: 420px;   /* try 380–480 */
  justify-content: center;
}