/* Header navigation menu — added on top of the WordPress/Elementor mirror. */

/* Make the right header column lay out its widgets horizontally so the nav sits next to the button. */
.elementor-element-767cda48 > .elementor-widget-wrap {
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}

.site-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav-menu__link {
  color: #1a1a1a;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.site-nav-menu__link:hover,
.site-nav-menu__link:focus {
  color: #FF5e3a;
  opacity: 1;
}

.site-nav-menu__link.is-active {
  color: #FF5e3a;
}

.site-nav-menu__link.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* Mobile: hide horizontal nav, expose a hamburger toggle that reveals the menu vertically. */
.site-nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: #1a1a1a;
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 880px) {
  .site-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    min-width: 180px;
  }
  .site-nav-menu.is-open {
    display: flex;
  }
  .site-nav-menu__link {
    padding: 12px 20px;
  }
  .site-nav-menu__link.is-active::after {
    display: none;
  }
  .site-nav-menu__link.is-active {
    background: rgba(255, 94, 58, 0.08);
  }

  /* =========================================================
     Header layout fix — keep logo, burger, and Customer Login
     on ONE row on mobile. Without these, the two header columns
     (each elementor-col-50) collapse to 100% width and stack.
     ========================================================= */
  .elementor-element-4e04d8b0 > .elementor-container {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }
  /* Logo column */
  .elementor-element-4e04d8b0 > .elementor-container > .elementor-element-111fa938.elementor-column {
    width: auto !important;
    max-width: 55% !important;
    flex: 0 0 auto !important;
  }
  /* Right column with burger + Customer Login */
  .elementor-element-4e04d8b0 > .elementor-container > .elementor-element-767cda48.elementor-column {
    width: auto !important;
    max-width: none !important;
    flex: 1 1 auto !important;
  }
  /* Logo size: shrink down so right column has breathing room */
  .elementor-element-111fa938 img {
    width: 150px !important;
    height: auto !important;
    max-width: 100%;
  }
  /* Right column's widget-wrap: row layout, burger + button sitting at right */
  .elementor-element-767cda48 > .elementor-widget-wrap {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }
  /* Customer Login button trims down so it still fits next to the burger */
  .elementor-element-29bd92f0 .elementor-button {
    padding: 9px 14px !important;
    font-size: 12px !important;
    min-height: 38px !important;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .elementor-element-111fa938 img {
    width: 130px !important;
  }
  .elementor-element-767cda48 > .elementor-widget-wrap {
    gap: 10px !important;
  }
  .elementor-element-29bd92f0 .elementor-button {
    padding: 8px 12px !important;
    font-size: 11.5px !important;
  }
}

@media (max-width: 480px) {
  .elementor-element-111fa938 img {
    width: 110px !important;
  }
  .elementor-element-29bd92f0 .elementor-button {
    padding: 7px 10px !important;
    font-size: 11px !important;
    min-height: 36px !important;
  }
}

@media (max-width: 380px) {
  .elementor-element-111fa938 img {
    width: 96px !important;
  }
  .elementor-element-29bd92f0 .elementor-button {
    padding: 6px 9px !important;
    font-size: 10.5px !important;
  }
  .elementor-element-767cda48 > .elementor-widget-wrap {
    gap: 8px !important;
  }
}
