/* ======================================================
   search.css — 12.16.2025 — 4:18 PM Texas Time
   Desktop + Mobile Search UI
   ====================================================== */

/* ===============================
   MOBILE SEARCH PANEL (overlay)
   =============================== */

.tbp-mobile-search-panel {
  display: none;
}

@media (max-width: 640px) {

  .tbp-mobile-search-panel {
    position: absolute;
    top: 64px; /* directly below fixed nav bar */
    left: 0;
    right: 0;
    z-index: 2100; /* ABOVE mobile topbar image */
    background: #111;
    padding: 10px 12px;
    border-bottom: 1px solid #333;
  }

  .tbp-mobile-search-panel.open {
    display: block;
  }

  .tbp-mobile-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    background-color: #F7F2D0;
    border: 1px solid #000;
    border-radius: 6px;
    overflow: hidden;
  }

  .tbp-mobile-search-input {
    flex: 1 1 auto;
    width: 100%;
    height: 38px;
    font-size: 16px;
    padding: 0 10px;
    border: 0;
    outline: none;
    background: transparent;
    color: #000;
  }

  .tbp-mobile-search-button {
    width: 44px;
    height: 38px;
    border: 0;
    background: #F7F2D0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }


/* Small black mag glass */
  .tbp-mobile-search-button img {
    width: 26px;
    height: 26px;
    object-fit: contain;
  }


}

/* END OF FILE */
