/* =========================
   MODERN HEADER SEARCH BAR
========================= */
/* FORCE ASTRA HEADER HTML VISIBILITY */
.ast-header-html-1,
.ast-header-html-1 * {
  display: block !important;
  visibility: visible !important;
}

.ast-header-html-1 {
  width: 100%;
  min-height: 44px;
}

.modern-search-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.modern-search-form {
  width: 100%;
  max-width: 50vw; /* Laptop half screen */
}

.modern-search-input {
  width: 100%;
  padding: 12px 18px;
  font-size: 15px;
  border-radius: 30px;
  border: 1px solid #ddd;
  outline: none;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.modern-search-input::placeholder {
  color: #999;
}

.modern-search-input:focus {
  background-color: #fff;
  border-color: #000;
}

/* -------- Mobile -------- */
@media (max-width: 768px) {
  .modern-search-form {
    max-width: 100%;
    padding: 0 12px; /* proper margins */
  }
}
.modern-search-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modern-search-form {
  width: 100%;
  max-width: 50vw;
}

.modern-search-input {
  width: 100%;
  height: 44px;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  font-size: 15px;
}
@media (max-width: 768px) {
  .modern-search-form {
    max-width: 100%;
    padding: 0 12px;
  }
}
