/* ==========================================================
   Search Bar (SVG-safe, Home-safe)
   ========================================================== */

.d25-searchhost{
  width: 100%;
  display: flex;
  justify-content: center;
}

.d25-search{
  width: 100%;
  max-width:640px;
  margin: 0 auto ;
}

/* Anchor suggestions dropdown */
.d25-searchbar{
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 4rem;
  padding-inline: 0.75rem;
  background: #fff;
  border: 1px solid #f2f2f0;
  border-radius: 999px;
  box-shadow: var(--shadow-1);
}

.d25-searchbar__icon,
.d25-searchbar__btn{
  flex: 0 0 auto;
  width: 2.375rem;
  height: 2.375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-05);
}

.d25-searchbar__icon svg,
.d25-searchbar__btn svg,
.d25-searchbar__icon img,
.d25-searchbar__btn img{
  width: 20px;
  height: 20px;
  display: block;
}

.d25-search-input{
  flex: 1 1 auto;
  min-width: 0;
  height: 3.5rem;
  border: 0;
  background: transparent;
  outline: none;
  color: var(--grey-10);
  font-size: 1.4rem;
}

.d25-search-input::placeholder{
  color: var(--grey-06);
  font-size: 1rem;
}

.d25-searchbar__btn{
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
}

.d25-searchbar__btn--voice:hover{
  background: #b5be35;
  color: #fff;
}

.d25-searchbar__btn--go{
  background: var(--grey-01);
  color: var(--grey-08);
}

.d25-searchbar__btn--go:hover{
  background: #b5be35;
  color: #fff;
}



/* Suggestions dropdown */
.d25-suggest{
  position: absolute;
  inset-inline: -1px;
  top: calc(100% - 0.625rem);

  background: var(--grey-01);
  border: 1px solid var(--grey-02);
  border-radius: 1rem;
  box-shadow: var(--shadow-1);

  overflow: hidden;
  z-index: 30;
}

/* Home: 92vw behavior explicitly (optional but safe) */
.d25-page--home .d25-search{
  width: 100%;
  max-width: 800px;
}

.d25-page--home .d25-searchbar{
  min-height: 4.8rem;
}


.d25-search__soft-hint{
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--grey-06);
  letter-spacing: 0.02em;
}