/* =========================================================
   PHASE 6.2 — TWILIGHT RUN THEME LAYER
   Scope: Visual Fidelity • Typography • Global Colors
   Dependencies: tru-core.css (must load first)
========================================================= */

/* ---------- 0. FONT IMPORTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700&family=Montserrat:wght@400;500;600&display=swap');

/* ---------- 1. GLOBAL COLOR PALETTE ---------- */
:root {
  /* Brand Accents */
  --accent-gold:    #ffd65c;
  --accent-cyan:    #00eaff;
  --accent-crimson: #ff4a4a;
  --accent-silver:  #cfcfcf;

  /* Base Tones */
  --base-bg:   #000;
  --base-text: #e0e0e0;
  --panel-bg:  rgba(22,22,30,0.75);

  /* Optional theme scope */
  --theme-scope: dark; /* switchable later if light mode added */
}

/* =========================================================
   2. TYPOGRAPHY SYSTEM
========================================================= */

/* --- Global Body --- */
body, p, li, span, a, input, select, textarea {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--base-text);
  letter-spacing: 0.2px;
}

/* --- Headings (Cinematic Hierarchy) --- */
h1, h2, .intro-title {
  font-family: 'Orbitron', sans-serif !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--accent-gold);
  text-shadow:
    0 0 12px rgba(255, 224, 100, 0.75),
    0 0 20px rgba(255, 200, 60, 0.45);
}

h3, h4, h5, h6,
.section-header, .plan-title {
  font-family: 'Orbitron', sans-serif !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-silver);
  text-shadow:
    0 0 6px rgba(74, 163, 255, 0.45),
    0 0 14px rgba(74, 163, 255, 0.2);
}

/* --- Paragraph Emphasis --- */
strong, b {
  color: var(--accent-gold);
  text-shadow: 0 0 6px rgba(255,214,92,0.6);
}

/* --- Code / Technical Text --- */
code, pre {
  font-family: 'Courier New', monospace;
  background: rgba(255,255,255,0.05);
  color: var(--accent-cyan);
  padding: 2px 5px;
  border-radius: 4px;
}

/* =========================================================
   3. LINK & INTERACTION COLORS
========================================================= */
a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
a:hover {
  color: var(--accent-gold);
  text-shadow:
    0 0 10px rgba(255,214,92,0.65),
    0 0 18px rgba(255,200,60,0.35);
}

/* --- Inline highlight links --- */
a.inline-gold { color: var(--accent-gold); }
a.inline-red  { color: var(--accent-crimson); }
a.inline-blue { color: var(--accent-cyan); }

/* =========================================================
   4. BACKGROUND & DEPTH SYSTEM
========================================================= */

/* --- Global Background --- */
body {
  background:
    radial-gradient(circle at center,
      rgba(210,176,85,0.10) 0%,
      rgba(10,10,15,0.96) 70%),
    url("/templates/visualin/images/backgrounds/quantum-starlit.svg");
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 480px auto;
  background-position: center top, center;
  background-attachment: fixed, fixed;
  background-blend-mode: overlay;
}

/* --- Panels --- */
.tru-panel {
  background: var(--panel-bg);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  padding: 20px;
  transition: box-shadow 0.3s ease;
}
.tru-panel:hover {
  box-shadow:
    0 0 18px rgba(210,176,85,0.4),
    0 8px 30px rgba(0,0,0,0.8);
}

/* =========================================================
   5. COLOR UTILITIES
========================================================= */
.text-gold    { color: var(--accent-gold) !important; }
.text-cyan    { color: var(--accent-cyan) !important; }
.text-silver  { color: var(--accent-silver) !important; }
.text-crimson { color: var(--accent-crimson) !important; }

.bg-gold    { background-color: var(--accent-gold) !important; }
.bg-cyan    { background-color: var(--accent-cyan) !important; }
.bg-silver  { background-color: var(--accent-silver) !important; }
.bg-crimson { background-color: var(--accent-crimson) !important; }

/* =========================================================
   6. LIGHTING & GLOW SYSTEM
========================================================= */

/* --- Universal Glow Classes --- */
.glow-gold {
  text-shadow: 0 0 8px var(--accent-gold),
               0 0 18px rgba(255,214,92,0.4);
}
.glow-cyan {
  text-shadow: 0 0 8px var(--accent-cyan),
               0 0 18px rgba(0,234,255,0.5);
}
.glow-red {
  text-shadow: 0 0 8px var(--accent-crimson),
               0 0 18px rgba(255,74,74,0.5);
}
.glow-silver {
  text-shadow: 0 0 8px var(--accent-silver),
               0 0 18px rgba(255,255,255,0.35);
}

/* --- Image Glow Utility --- */
.img-glow-gold img {
  filter: drop-shadow(0 0 8px rgba(255,214,92,0.4));
}
.img-glow-cyan img {
  filter: drop-shadow(0 0 8px rgba(0,234,255,0.4));
}

/* =========================================================
   7. ANIMATION TOKENS (GLOBAL)
========================================================= */

@keyframes pulseGold {
  0%, 100% { text-shadow: 0 0 6px rgba(255,214,92,0.6); }
  50% { text-shadow: 0 0 14px rgba(255,214,92,0.9); }
}
@keyframes pulseCyan {
  0%, 100% { text-shadow: 0 0 6px rgba(0,234,255,0.6); }
  50% { text-shadow: 0 0 14px rgba(0,234,255,0.9); }
}

.animate-gold { animation: pulseGold 3s infinite ease-in-out; }
.animate-cyan { animation: pulseCyan 3s infinite ease-in-out; }

/* =========================================================
   8. RESPONSIVE TYPOGRAPHY
========================================================= */
@media (max-width: 992px) {
  h1 { font-size: clamp(1.8rem, 4vw, 2.2rem); }
  h2 { font-size: clamp(1.4rem, 3.5vw, 1.9rem); }
  h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
  body { font-size: 0.95rem; }
}
@media (max-width: 600px) {
  h1, h2 { text-align: center; }
}

/* =========================================================
   9. INTRO SECTION
========================================================= */

/* 1️⃣  BACKGROUND GLOW + DEPTH */
.intro-block {
  background: radial-gradient(circle at 50% 10%, rgba(20,15,35,0.95) 0%, rgba(10,8,18,1) 45%, rgba(0,0,0,1) 100%);
  box-shadow:
    inset 0 0 120px rgba(0,234,255,0.05),
    inset 0 -80px 120px rgba(255,214,92,0.08);
  backdrop-filter: blur(2px);
}

/* 2️⃣  TEXT COLUMN AESTHETIC */
.intro-text-col {
  color: #cfd3db;
  font-size: 1.05rem;
  line-height: 1.8;
  letter-spacing: 0.2px;
  text-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.intro-text-col h1 {
  font-family: 'Orbitron', 'Arial Black', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 6px rgba(255,214,92,0.25));
  margin-bottom: 28px;
}

.intro-text-col p {
  margin-bottom: 1rem;
  color: var(--accent-silver);
  opacity: 0.9;
}

.intro-text-col p em {
  color: var(--accent-cyan);
  font-style: normal;
  text-shadow: 0 0 10px rgba(0,234,255,0.35);
}

/* 3️⃣  IMAGE STACK ENHANCEMENT */
.intro-gallery img {
  border: 1px solid rgba(0,234,255,0.3);
  background: radial-gradient(circle at center, rgba(0,234,255,0.08) 0%, transparent 70%);
  border-radius: 12px;
  box-shadow:
    0 0 12px rgba(0,234,255,0.2),
    0 8px 24px rgba(0,0,0,0.7);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.intro-gallery img:hover {
  transform: scale(1.05);
  border-color: var(--accent-gold);
  box-shadow:
    0 0 20px rgba(255,214,92,0.35),
    0 12px 32px rgba(0,0,0,0.8);
}

/* 4️⃣  RESPONSIVE POLISH */
@media (max-width: 991.98px) {
  .intro-text-col h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 600px) {
  .intro-text-col h1 {
    font-size: 1.8rem;
  }
}
/* =========================================================
   10). HEADER
========================================================= */

/* ---------- 1. Header Base ---------- */
#sp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 8px 20px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.6)),
    url("/images/headers/Stellar.expanse.09.18.2025.png") center center / cover no-repeat !important;
  border-bottom: 1px solid rgba(255,214,92,0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.8);
  position: relative;
  z-index: 1000;
  isolation: isolate;
}

/* Transparent inner wrappers so background shows through */
#sp-header .sp-row,
#sp-header .sp-column,
#sp-header .container,
#sp-header .container-inner {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Light overlay for readability */
#sp-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.05), rgba(0,0,0,0.15));
  z-index: 1;
  pointer-events: none;
}

#sp-header > * {
  position: relative;
  z-index: 2;
}

/* ---------- 2. Menu Layout ---------- */
#sp-menu .sp-megamenu-parent {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#sp-menu .sp-megamenu-parent > .sp-menu-item > a {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: #e6e6e6;
  text-decoration: none;
  letter-spacing: 1px;
  padding: 10px 18px;
  border-radius: 6px;
  transition: color 0.3s ease, text-shadow 0.3s ease, background 0.3s ease;
}

#sp-menu .sp-megamenu-parent > .sp-menu-item > a:hover,
#sp-menu .sp-megamenu-parent > .sp-menu-item.active > a {
  color: #ffd65c;
  text-shadow: 0 0 10px rgba(255,214,92,0.9);
  background: rgba(255,214,92,0.08);
}

/* Dropdowns */
#sp-menu .sp-dropdown {
  background: rgba(15,20,35,0.95);
  border: 1px solid rgba(255,214,92,0.25);
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255,214,92,0.25);
  backdrop-filter: blur(4px);
  transition: opacity 0.25s ease;
  z-index: 9999;
}
#sp-menu .sp-dropdown-inner ul li a {
  color: #ccc;
  padding: 8px 14px;
  display: block;
  border-radius: 4px;
  transition: all 0.3s ease;
}
#sp-menu .sp-dropdown-inner ul li a:hover {
  color: #ffd65c;
  background: rgba(255,214,92,0.08);
  text-shadow: 0 0 6px rgba(255,214,92,0.6);
}

/* ---------- 3. Login + Search Modules ---------- */
.header-modules {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}
.header-modules .mod-login,
.header-modules .mod-finder {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Search field */
.header-modules input[type="search"],
.header-modules .js-finder-search-query {
  width: 220px;
  max-width: 260px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: #e6e6e6;
  transition: all 0.3s ease;
}
.header-modules input[type="search"]::placeholder,
.header-modules .js-finder-search-query::placeholder {
  color: #00eaff;
  opacity: 0.9;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
  text-shadow: 0 0 6px rgba(0,234,255,0.7);
}
.header-modules input[type="search"]:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 8px rgba(0,234,255,0.6);
  background: rgba(0,0,0,0.6);
}

/* Search button */
.mod-finder .button,
.mod-finder button {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(90deg, #00eaff, #66f5ff);
  color: #111;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,234,255,0.6);
  transition: all 0.3s ease;
}
.mod-finder button:hover {
  background: #ffd65c;
  color: #000;
  box-shadow: 0 0 18px rgba(255,214,92,0.8);
}

/* Login link */
.header-modules .login a {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  color: var(--accent-gold);
  padding: 8px 12px;
  border: 1px solid rgba(255,214,92,0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.header-modules .login a:hover {
  background: var(--accent-gold);
  color: #000;
}

/* ---------- 4. Responsive Layout ---------- */
@media (max-width: 992px) {
  #sp-menu .sp-megamenu-parent {
    flex-direction: column;
    gap: 12px;
  }
  .header-modules {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
  .header-modules input[type="search"] {
    width: 100%;
    max-width: none;
  }
  .mod-finder button {
    width: 100%;
  }
}

/* ---------- 5. Burger Icon Control ---------- */
#sp-header .offcanvas-toggler,
#sp-header .offcanvas-toggler-right,
#sp-header .sp-megamenu-toggler,
#sp-header .menu-toggler,
#sp-header .hamburger {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
@media (max-width: 991.98px) {
  #sp-header .offcanvas-toggler,
  #sp-header .offcanvas-toggler-right,
  #sp-header .sp-megamenu-toggler,
  #sp-header .menu-toggler,
  #sp-header .hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10000;
  }
}
/* =========================================================
   Header safe gutter (desktop) — push login away from edge
   Keeps full-bleed background; increases right padding only
========================================================= */
@media (min-width: 992px) {
  #sp-header {
    padding-left: clamp(40px, 6vw, 96px) !important;
    padding-right: clamp(40px, 6vw, 96px) !important;
  }
}

/* =========================================================
   11). SMART SEARCH / ADVANCED SEARCH
  ========================================================= */

/* ---------- 1️⃣ Global Layout / Footer Handling ---------- */
body.view-search,
body.com_finder {
  background: radial-gradient(circle at 25% 10%, rgba(10,12,18,0.96), rgba(5,5,8,1)) !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #e6e6e6;
}

.com_finder {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 120px 6vw 100px;
  box-shadow: inset 0 0 60px rgba(0,234,255,0.1);
}

/* Hide footer on short pages */
body.com_finder #sp-footer,
body.view-search #sp-footer {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ---------- 2️⃣ Flush Header Alignment ---------- */
#sp-header,
#sp-header .sp-row,
#sp-header .sp-column {
  margin: 0 !important;
  padding: 0 !important;
}
#sp-header {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  border: none !important;
}

/* ---------- 3️⃣ Header Search Field (Cyan Glow) ---------- */
.header-modules .mod-finder input[type="search"],
.header-modules .js-finder-search-query {
  width: 240px;
  max-width: 280px;
  padding: 8px 12px;
  border: 2px solid rgba(0,234,255,0.9);
  border-radius: 6px;
  background: rgba(10,15,25,0.85);
  color: #e6e6e6;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  box-shadow:
    0 0 10px rgba(0,234,255,0.55),
    inset 0 0 4px rgba(0,234,255,0.25);
  transition: all 0.3s ease;
}
.header-modules .js-finder-search-query:focus {
  outline: none;
  border-color: #ffd65c;
  box-shadow:
    0 0 18px rgba(255,214,92,0.8),
    0 0 6px rgba(255,214,92,0.4);
  background: rgba(0,0,0,0.75);
}
.header-modules .js-finder-search-query::placeholder {
  color: #00eaff;
  opacity: 0.9;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 6px rgba(0,234,255,0.6);
}

/* ---------- 4️⃣ Search Bar (Results + Advanced Pages) ---------- */
.com_finder #finder-search {
  text-align: center;
  width: 100%;
  margin-bottom: 60px;
}
.com_finder .js-finder-search-query,
.com_finder #mod-finder-searchword {
  width: 60%;
  max-width: 640px;
  padding: 14px 18px;
  border: 2px solid rgba(0,234,255,0.9);
  border-radius: 8px;
  background: rgba(5,10,18,0.9);
  color: #e6e6e6;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  box-shadow:
    0 0 12px rgba(0,234,255,0.6),
    inset 0 0 6px rgba(0,234,255,0.25);
  transition: all 0.35s ease;
}
.com_finder .js-finder-search-query:focus {
  border-color: #ffd65c;
  box-shadow:
    0 0 18px rgba(255,214,92,0.8),
    0 0 10px rgba(255,214,92,0.5);
  background: rgba(10,15,25,0.95);
}

/* ---------- 5️⃣ Search Button (Gold-Tech Contrast) ---------- */
.com_finder button,
.com_finder .btn {
  margin-left: 10px;
  padding: 14px 22px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(90deg, #ffd65c, #ffecb3);
  color: #0a0a0a; /* darker text for readability */
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(255,214,92,0.4);
  transition: all 0.3s ease;
}
.com_finder button:hover,
.com_finder .btn:hover {
  background: linear-gradient(90deg, #00eaff, #66f5ff);
  color: #000 !important;
  box-shadow: 0 0 22px rgba(0,234,255,0.6);
}

/* ---------- 6️⃣ Results Page (Gold-Tech Cards) ---------- */
#search-results {
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
}
#search-results .result-title a {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffd65c;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255,214,92,0.6);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
#search-results .result-title a:hover {
  color: #00eaff;
  text-shadow: 0 0 10px rgba(0,234,255,0.8);
}
#search-results .result-text {
  background: linear-gradient(180deg, rgba(12,10,6,0.9), rgba(6,5,4,0.95));
  border: 1px solid rgba(255,214,92,0.35);
  border-radius: 12px;
  padding: 20px 24px;
  color: #eaeaea;
  line-height: 1.75;
  margin-bottom: 32px;
  box-shadow:
    0 0 24px rgba(255,214,92,0.25),
    inset 0 0 12px rgba(0,234,255,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#search-results .result-text:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255,214,92,0.35);
}

/* ---------- 7️⃣ No Results Found (Gold Panel) ---------- */
.com_finder #search-results .no-results,
.com_finder .finder-empty {
  background: linear-gradient(180deg, rgba(12,10,6,0.95), rgba(10,8,4,0.98));
  color: #ffd65c;
  border: 1px solid rgba(255,214,92,0.35);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 80px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  box-shadow:
    0 0 24px rgba(255,214,92,0.25),
    inset 0 0 10px rgba(0,234,255,0.1);
}

/* ---------- 8️⃣ Advanced Search / Help Panel ---------- */
.com_finder .finder-description,
.com_finder .searchintro,
.com_finder .alert-info,
.com_finder .well,
.com_finder #finder-filter-form p,
.com_finder form#finder-advanced p {
  background: linear-gradient(180deg, rgba(18,16,10,0.95), rgba(12,10,6,0.98));
  color: #f8f8f2 !important;
  border: 1px solid rgba(255,214,92,0.35);
  border-radius: 12px;
  padding: 22px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  box-shadow:
    0 0 24px rgba(255,214,92,0.2),
    inset 0 0 16px rgba(0,234,255,0.1);
  text-shadow: 0 0 2px rgba(0,0,0,0.8);
}

/* Highlighted code phrases in help text */
.com_finder .finder-description code,
.com_finder .searchintro code,
.com-finder-description code {
  background: rgba(0,234,255,0.15);
  color: #00eaff;
  border-radius: 5px;
  padding: 3px 8px;
  font-family: 'Courier New', monospace;
  box-shadow: 0 0 8px rgba(0,234,255,0.3);
}

/* ---------- 9️⃣ Filter Form Elements ---------- */
.com_finder form#finder-advanced,
.com_finder #finder-filter-form {
  background: linear-gradient(180deg, rgba(12,10,8,0.95), rgba(10,9,6,0.98));
  border: 1px solid rgba(255,214,92,0.3);
  border-radius: 12px;
  padding: 30px;
  color: #f0f0e0;
  box-shadow: 0 0 24px rgba(255,214,92,0.2);
}
.com_finder form#finder-advanced label,
.com_finder #finder-filter-form label {
  color: #ffd65c;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.com_finder form#finder-advanced input[type="text"],
.com_finder form#finder-advanced input[type="search"],
.com_finder form#finder-advanced select,
.com_finder #finder-filter-form input[type="text"],
.com_finder #finder-filter-form select {
  background: rgba(5,8,12,0.8);
  color: #e6e6e6;
  border: 1px solid rgba(255,214,92,0.3);
  border-radius: 6px;
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.com_finder form#finder-advanced input[type="text"]:focus,
.com_finder form#finder-advanced select:focus,
.com_finder #finder-filter-form input[type="text"]:focus,
.com_finder #finder-filter-form select:focus {
  border-color: #00eaff;
  box-shadow: 0 0 14px rgba(0,234,255,0.5);
  outline: none;
}
.com_finder form#finder-advanced button,
.com_finder #finder-filter-form button {
  background: linear-gradient(90deg, #ffd65c, #ffecb3);
  color: #111;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(255,214,92,0.4);
  transition: all 0.3s ease;
}
.com_finder form#finder-advanced button:hover,
.com_finder #finder-filter-form button:hover {
  background: linear-gradient(90deg, #00eaff, #66f5ff);
  color: #000;
  box-shadow: 0 0 22px rgba(0,234,255,0.6);
}

/* ---------- 🔟 Responsive ---------- */
@media (max-width: 992px) {
  .com_finder .js-finder-search-query,
  .com_finder #mod-finder-searchword {
    width: 90%;
  }
  .com_finder button,
  .com_finder .btn {
    margin-top: 12px;
    width: 90%;
  }
}
