/* ===============================
   SEARCH ICON (NO BLUE BACKGROUND)
   =============================== */

#od-search-icon {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-size: 18px;
  color: #000;
}

#od-search-icon:hover,
#od-search-icon:focus {
  background: transparent !important;
  outline: none;
}


/* ===============================
   FULLSCREEN OVERLAY
   =============================== */

#od-search-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 999999;
  padding: 80px 80px 60px;
  display: none;

  overflow-y: auto;          /* ✅ enable scrolling */
  -webkit-overflow-scrolling: touch;
}

#od-search-overlay.active {
  display: block;
}


/* ===============================
   CLOSE BUTTON
   =============================== */

#od-search-close {
  position: fixed;
  top: 24px;
  right: 32px;
  z-index: 1000000;
  font-size: 32px;
  line-height: 1;
  background: transparent;
  border: none;
  color: #000;
  cursor: pointer;
}

#od-search-close:hover {
  opacity: 0.7;
}


/* ===============================
   SEARCH INPUT
   =============================== */

#od-search-input {
  width: 100%;
  max-width: 1100px;
  font-size: 42px;
  border: none;
  border-bottom: 2px solid #000;
  outline: none;
  padding-bottom: 12px;
  margin-bottom: 40px;
}


/* ===============================
   RESULTS WRAPPER
   =============================== */

#od-search-results {
  max-width: 1100px;
}


/* ===============================
   GROUP HEADINGS
   =============================== */

.od-group {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ===============================
   RESULT LINKS
   =============================== */

.od-result {
  display: block;
  font-size: 20px;
  margin: 8px 0;
  color: #000;
  text-decoration: none;
  line-height: 1.4;
}

.od-result:hover {
  text-decoration: underline;
}


/* ===============================
   NO RESULT TEXT
   =============================== */

.od-no-result {
  margin-top: 20px;
  font-size: 16px;
  color: #999;
}


/* ===============================
   MOBILE OPTIMIZATION
   =============================== */

@media (max-width: 768px) {
  #od-search-overlay {
    padding: 60px 20px 40px;
  }

  #od-search-input {
    font-size: 28px;
  }

  .od-result {
    font-size: 18px;
  }

  #od-search-close {
    top: 16px;
    right: 16px;
  }
}