:root {
  --tfv-header-surface: #ffffff;
  --tfv-header-ink: #111827;
  --tfv-header-muted: #6b7280;
  --tfv-header-line: rgba(17, 24, 39, 0.08);
  --tfv-header-accent: #f18701;
  --tfv-header-accent-soft: #fff3e4;
  --tfv-header-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  --tfv-header-shadow-strong: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.tfv-navbar-shell {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  background: transparent;
}

#main-header.tfv-navbar-component {
  width: 100%;
  padding: 0;
  background: transparent;
  border-bottom: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.tfv-navbar-padding {
  padding: 0 !important;
}

.tfv-navbar-container {
  width: min(1280px, calc(100% - 48px));
  max-width: none !important;
  margin: 0 auto;
  padding: 0 !important;
}

.tfv-navbar-wrapper {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.tfv-navbar-shell .nav-left-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: none;
  min-width: fit-content;
}

.tfv-navbar-shell .navbar-logo {
  display: block;
  flex: none;
  max-width: none;
  height: 46px;
  padding-left: 0;
}

.tfv-navbar-shell .navbar-logo-image {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
}

.tfv-navbar-shell .nav-line {
  display: block;
  flex: none;
  width: 1px;
  height: 34px;
  background: var(--tfv-header-line);
}

.tfv-navbar-shell .navbar-menu {
  display: flex;
  position: static;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 auto;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.tfv-navbar-shell .navbar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--tfv-header-ink);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.tfv-navbar-shell .navbar-link:hover {
  background: var(--tfv-header-accent);
  color: var(--tfv-header-ink);
}

.tfv-navbar-shell .navbar-link.w--current,
.tfv-navbar-shell .navbar-link[aria-current="page"] {
  background: var(--tfv-header-accent);
  color: var(--tfv-header-ink);
}

.tfv-navbar-shell .navbar-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: none;
  margin-left: 0;
}

.tfv-navbar-shell .nav-phone-wrap {
  display: none;
}

.tfv-navbar-shell .phone-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--tfv-header-accent-soft);
  color: var(--tfv-header-ink);
}

.tfv-navbar-shell .phone-icon {
  width: 22px;
  height: 22px;
}

.tfv-navbar-shell .phone-text-wrap {
  color: var(--tfv-header-muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.tfv-navbar-shell .phone-link {
  display: block;
  margin-top: 4px;
  color: var(--tfv-header-ink);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
}

.tfv-navbar-shell .phone-link:hover {
  color: #9a5300;
}

.tfv-navbar-action-line {
  display: none;
}

.tfv-navbar-settings {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease,
    background-color 0.25s ease;
}

.tfv-navbar-settings:hover {
  border-color: rgba(241, 135, 1, 0.32);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.tfv-navbar-settings-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.tfv-navbar-settings-flag-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tfv-navbar-settings-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.tfv-navbar-settings-label {
  color: var(--tfv-header-muted);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tfv-navbar-settings-value {
  color: var(--tfv-header-ink);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
}

.tfv-navbar-settings-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: var(--tfv-header-ink);
  background: var(--tfv-header-accent-soft);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.tfv-navbar-settings .button-icon {
  width: 14px;
  height: 14px;
}

.tfv-navbar-settings:hover .tfv-navbar-settings-chevron {
  background: var(--tfv-header-accent);
  color: var(--tfv-header-ink);
  transform: translateY(1px);
}

.tfv-navbar-shell .navbar-toggle-button {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--tfv-header-ink);
  color: #ffffff;
  cursor: pointer;
}

.tfv-navbar-shell .navbar-toggle-icon {
  width: 20px;
  height: 20px;
}

.tfv-navbar-spacer {
  height: 86px;
}

#main-header.is-scrolled {
  box-shadow: none;
}

#main-header.is-scrolled .tfv-navbar-wrapper {
  box-shadow: none;
}

#mobile-menu {
  background: #ffffff !important;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.18);
}

#mobile-menu > .px-6 {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
}

#mobile-menu > .px-6 span {
  color: var(--tfv-header-ink) !important;
}

#mobile-menu .close-mobile-menu {
  color: var(--tfv-header-muted) !important;
}

#mobile-menu .close-mobile-menu:hover {
  background: var(--tfv-header-accent-soft) !important;
  color: var(--tfv-header-ink) !important;
}

#mobile-menu .mobile-menu-item {
  padding: 0 12px;
}

#mobile-menu .mobile-menu-item + .mobile-menu-item {
  margin-top: 6px;
}

#mobile-menu .tfv-mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  color: var(--tfv-header-ink);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

#mobile-menu .tfv-mobile-nav-link:hover {
  background: var(--tfv-header-accent-soft);
  color: var(--tfv-header-ink);
  transform: translateX(2px);
}

#mobile-menu .tfv-mobile-nav-link.is-current {
  background: rgba(241, 135, 1, 0.14);
  color: #9a5300;
}

#mobile-menu #mobile-settings-btn {
  border: 0 !important;
  border-radius: 18px !important;
  background: var(--tfv-header-ink) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

#mobile-menu #mobile-settings-btn:hover {
  background: var(--tfv-header-accent) !important;
  color: var(--tfv-header-ink) !important;
}

#mobile-menu #mobile-settings-btn .bg-brand-orange {
  background: rgba(255, 255, 255, 0.16) !important;
  color: inherit !important;
}

@media screen and (max-width: 1279px) {
  .tfv-navbar-shell .nav-phone-wrap,
  .tfv-navbar-action-line {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  #main-header.tfv-navbar-component {
    padding: 0;
  }

  .tfv-navbar-container {
    width: calc(100% - 20px);
  }

  .tfv-navbar-wrapper {
    min-height: 74px;
    padding: 0;
    border-radius: 0;
  }

  .tfv-navbar-shell .nav-left-wrap {
    gap: 16px;
  }

  .tfv-navbar-shell .navbar-logo {
    height: 39px;
  }

  .tfv-navbar-shell .nav-line,
  .tfv-navbar-shell .navbar-menu,
  .tfv-navbar-settings {
    display: none;
  }

  .tfv-navbar-shell .navbar-button-wrapper {
    gap: 12px;
    margin-left: auto;
  }

  .tfv-navbar-shell .navbar-toggle-button {
    display: flex;
  }

  .tfv-navbar-spacer {
    height: 74px;
  }
}

@media screen and (max-width: 639px) {
  .tfv-navbar-shell .navbar-logo {
    height: 36px;
  }

  .tfv-navbar-wrapper {
    min-height: 70px;
  }

  .tfv-navbar-spacer {
    height: 70px;
  }
}
