html,
body {
  overflow-x: hidden;
}

.tfrx-locator,
.tfrx-locator * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.tfrx-locator input,
.tfrx-locator select,
.tfrx-locator button,
.tfrx-locator a {
  outline: none !important;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.tfrx-locator input:focus,
.tfrx-locator input:focus-visible,
.tfrx-locator select:focus,
.tfrx-locator select:focus-visible,
.tfrx-locator button:focus,
.tfrx-locator button:focus-visible,
.tfrx-locator a:focus,
.tfrx-locator a:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.tfrx-locator {
  --bg: #09090b;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --text: #f2e5c8;
  --heading: #f7e8bf;
  --muted: #d8c8a4;
  --gold: #d4b574;
  --gold-deep: #9a7a3a;
  --gold-dark: #8a6b33;
  --line: rgba(212, 181, 116, 0.16);
  --radius: 24px;
  position: relative;
  width: 100vw;
  max-width: 100vw;
  min-height: 100dvh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background:
    radial-gradient(circle at top right, rgba(183, 147, 72, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(183, 147, 72, 0.08), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

.tfrx-locator a {
  color: inherit;
  text-decoration: none;
}

.tfrx-locator-shell {
  width: min(1360px, 100%);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.tfrx-locator-main {
  padding: 42px 0 56px;
}

.tfrx-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(9, 9, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 181, 116, 0.12);
}

.tfrx-nav-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tfrx-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--heading);
  font-size: 1.1rem;
  font-weight: 800;
  transition: transform 0.28s ease, opacity 0.28s ease, filter 0.28s ease;
}

.tfrx-brand:hover {
  transform: translateY(-2px);
  opacity: 0.98;
  filter: drop-shadow(0 8px 18px rgba(212, 181, 116, 0.12));
}

.tfrx-brand-logo {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  object-fit: contain;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.tfrx-brand:hover .tfrx-brand-logo {
  transform: rotate(-4deg) scale(1.04);
  filter: drop-shadow(0 10px 20px rgba(212, 181, 116, 0.18));
}

.tfrx-brand-text {
  white-space: nowrap;
  font-size: 1.1rem;
  color: var(--heading);
}

.tfrx-menu {
  display: none;
  align-items: center;
  gap: 22px;
}

.tfrx-menu a {
  position: relative;
  color: #ead7ac;
  font-weight: 600;
  font-size: 0.96rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.tfrx-menu a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.tfrx-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transition: width 0.28s ease;
}

.tfrx-menu a:hover::after {
  width: 100%;
}

.tfrx-menu-btn,
.tfrx-menu-btn:hover,
.tfrx-menu-btn:focus,
.tfrx-menu-btn:focus-visible,
.tfrx-menu-btn:active {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(212, 181, 116, 0.16) !important;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03) !important;
  cursor: pointer;
  flex: 0 0 auto;
  box-shadow: none !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.tfrx-menu-btn:hover {
  transform: translateY(-2px);
  background: rgba(212, 181, 116, 0.08) !important;
  border-color: rgba(244, 221, 164, 0.34) !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22) !important;
}

.tfrx-menu-btn * {
  -webkit-tap-highlight-color: transparent !important;
}

.tfrx-menu-btn::-moz-focus-inner {
  border: 0;
}

.tfrx-menu-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #f7e8bf !important;
}

.tfrx-menu-btn:hover .tfrx-menu-bar {
  background: #faedcb !important;
}

.tfrx-mobile {
  display: none;
  padding-bottom: 16px;
}

.tfrx-mobile.active {
  display: block;
}

.tfrx-mobile a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 181, 116, 0.08);
  color: #ead7ac;
  font-weight: 600;
  transition: color 0.28s ease, padding-left 0.28s ease, background 0.28s ease;
}

.tfrx-mobile a:hover {
  color: var(--gold);
  padding-left: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.tfrx-locator-hero {
  text-align: center;
  margin-bottom: 26px;
}

.tfrx-locator-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 18px;
  color: #efd8a2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.tfrx-locator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.tfrx-animated-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 12px;
  text-align: center;
  line-height: 1;
}

.tfrx-animated-title span {
  display: block;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--heading);
  opacity: 0;
  transform: translateY(24px);
  animation: tfrxTitleReveal 0.8s ease forwards;
}

.tfrx-animated-title span:nth-child(1) {
  animation-delay: 0.1s;
}

.tfrx-animated-title span:nth-child(2) {
  animation-delay: 0.28s;
  color: #efcf88;
}

.tfrx-animated-title span:nth-child(3) {
  animation-delay: 0.46s;
}

@keyframes tfrxTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tfrx-locator-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
}

.tfrx-locator-toolbar {
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.tfrx-locator-search-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.tfrx-locator-search-row input,
.tfrx-locator-search-row select,
.tfrx-locator-search-row button {
  min-height: 58px;
  border-radius: 18px;
  font-size: 16px;
}

.tfrx-locator-search-row input,
.tfrx-locator-search-row select {
  width: 100%;
  padding: 0 18px;
  border: 1px solid rgba(212, 181, 116, 0.28);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(24, 24, 26, 0.98), rgba(18, 18, 20, 0.98));
  color: #f7e8bf;
  font-size: 16px;
  font-weight: 500;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 8px 20px rgba(0, 0, 0, 0.14);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.tfrx-locator-search-row select {
  padding-right: 46px;
  background-image:
    linear-gradient(180deg, rgba(24, 24, 26, 0.98), rgba(18, 18, 20, 0.98)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23d4b574' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: center, right 16px center;
  background-size: auto, 14px;
}

.tfrx-locator-search-row input::placeholder {
  color: #d4b574;
  opacity: 0.9;
}

.tfrx-locator-search-row input:hover,
.tfrx-locator-search-row select:hover {
  border-color: rgba(228, 199, 132, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.tfrx-locator-search-row input:focus,
.tfrx-locator-search-row input:focus-visible,
.tfrx-locator-search-row select:focus,
.tfrx-locator-search-row select:focus-visible {
  border: 1px solid rgba(244, 221, 164, 0.72);
  box-shadow:
    0 0 0 2px rgba(212, 181, 116, 0.14),
    0 14px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(30, 30, 32, 1), rgba(20, 20, 22, 1));
  color: #fff4d6;
}

.tfrx-locator-search-row button {
  padding: 0 18px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

#sclSearchBtn {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-dark));
  color: #f8ecd0;
  border-color: rgba(228, 199, 132, 0.28);
  box-shadow:
    0 12px 26px rgba(154, 122, 58, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#sclSearchBtn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(154, 122, 58, 0.34),
    0 0 0 1px rgba(212, 181, 116, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.tfrx-locator-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #f2dfb3;
  border-color: rgba(212, 181, 116, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 20px rgba(0, 0, 0, 0.14);
}

.tfrx-locator-secondary:hover {
  transform: translateY(-2px);
  background: rgba(212, 181, 116, 0.08);
  border-color: rgba(212, 181, 116, 0.48);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(212, 181, 116, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tfrx-locator-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.tfrx-filter-chip {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212, 181, 116, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #f2dfb3;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tfrx-filter-chip:hover {
  transform: translateY(-2px);
  background: rgba(212, 181, 116, 0.08);
  border-color: rgba(212, 181, 116, 0.48);
}

.tfrx-filter-chip.is-active {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-dark));
  color: #f8ecd0;
  border-color: rgba(228, 199, 132, 0.28);
  box-shadow: 0 8px 20px rgba(154, 122, 58, 0.18);
}

.tfrx-locator-debug {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 120, 120, 0.28);
  background: rgba(120, 20, 20, 0.22);
  color: #ffd6d6;
  font-size: 14px;
  line-height: 1.6;
}

.tfrx-locator-results-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.tfrx-locator-results-head {
  padding: 20px 20px 0;
  color: var(--muted);
  font-size: 15px;
}

.tfrx-locator-results-head strong {
  color: var(--heading);
  font-size: 20px;
}

.tfrx-locator-results-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px;
}

.tfrx-locator-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-strong);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.tfrx-locator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  border-color: rgba(212, 181, 116, 0.26);
}

.tfrx-locator-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.tfrx-locator-card h3 {
  margin: 0;
  color: var(--heading);
  font-size: 1.08rem;
}

.tfrx-locator-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 181, 116, 0.18);
  background: rgba(212, 181, 116, 0.1);
  color: #efd39a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tfrx-locator-meta {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.tfrx-locator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tfrx-locator-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.tfrx-locator-actions a:hover {
  transform: translateY(-2px);
}

.tfrx-locator-call-btn {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-dark));
  color: #f8ecd0;
}

.tfrx-locator-nav-btn {
  border: 1px solid rgba(212, 181, 116, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: #f2dfb3;
}

.tfrx-footer {
  margin-top: 40px;
  background: #09090b;
  border-top: 1px solid rgba(212, 181, 116, 0.12);
}

.tfrx-footer-logo-only {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tfrx-footer-logo-only .tfrx-brand-logo {
  width: 64px;
  height: 64px;
}

.tfrx-footer-simple {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  flex-wrap: wrap;
}

.tfrx-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tfrx-social {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 181, 116, 0.18);
  color: #efd39a;
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.tfrx-social:hover {
  transform: translateY(-3px);
  background: rgba(212, 181, 116, 0.12);
  border-color: rgba(244, 221, 164, 0.38);
  color: #faedcb;
}

.tfrx-social svg {
  width: 18px;
  height: 18px;
  display: block;
}

@media (min-width: 768px) {
  .tfrx-menu {
    display: flex;
  }

  .tfrx-menu-btn,
  .tfrx-mobile {
    display: none !important;
  }

  .tfrx-locator-search-row {
    grid-template-columns: 1.2fr 180px 160px 180px;
  }

  .tfrx-locator-results-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .tfrx-locator-results-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
