/* =====================================================================
   BH Herbal — Checkout Suite (autocomplete dropdown + email hint)
   New palette: indigo #2A3A8C, navy #1E2747, lime #8CC63F, soft #E3E8F5
   Adds UI only — does not restyle the WooCommerce blocks themselves.
   ===================================================================== */

/* ---- Google Places inline dropdown ---- */
.bh-ac-list{
  position:absolute; left:0; right:0; top:100%; z-index:30;
  margin:4px 0 0; padding:4px; list-style:none;
  background:#fff; border:1px solid #E3E8F5; border-radius:10px;
  box-shadow:0 12px 28px rgba(30,39,71,.14); max-height:280px; overflow:auto;
}
.bh-ac-item{
  padding:9px 11px; border-radius:7px; cursor:pointer;
  font-size:.92rem; color:#1E2747; line-height:1.35;
}
.bh-ac-item:hover, .bh-ac-item.bh-ac-on{ background:#EEF2FB; }
.bh-ac-main{ font-weight:600; }
.bh-ac-sec{ color:#5C6580; }

/* ---- Email "did you mean" suggestion ---- */
.bh-email-suggest{
  margin:6px 0 0; font-size:.86rem; color:#1E2747;
  background:#EAF4DA; border:1px solid #8CC63F; border-radius:8px;
  padding:7px 11px;
}
.bh-email-yes{
  color:#2A3A8C; font-weight:700; text-decoration:underline; cursor:pointer;
}
.bh-email-yes:hover{ color:#1E2C6E; }
.bh-email-no{
  margin-left:8px; background:none; border:none; padding:0;
  color:#5C6580; text-decoration:underline; cursor:pointer; font-size:.84rem;
}
.bh-email-no:hover{ color:#1E2747; }
