.smart-suggest-anchor {
  position: relative;
}

.smart-suggest-menu {
  position: absolute;
  z-index: 10000;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 320px;
  overflow: auto;
  padding: 8px;
  border: 1px solid #d8e0e7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(24, 32, 44, 0.16);
}

.smart-suggest-menu[hidden] {
  display: none !important;
}

.smart-suggest-card {
  width: 100%;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #ffffff;
  color: #18202c;
  padding: 10px;
  display: grid;
  gap: 4px;
  text-align: left;
  cursor: pointer;
}

.smart-suggest-search {
  display: none;
}

.smart-suggest-section {
  padding: 8px 8px 4px;
  color: #8a4a2a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.smart-suggest-card:hover,
.smart-suggest-card:focus-visible {
  border-color: #b94b24;
  background: #fff8f5;
  outline: none;
}

.smart-suggest-card strong {
  font-size: 13px;
  line-height: 1.25;
}

.smart-suggest-card span,
.smart-suggest-card small {
  color: #667085;
  font-size: 12px;
  line-height: 1.35;
}

.smart-suggest-empty {
  padding: 12px;
  color: #667085;
  font-size: 13px;
}

.smart-suggest-close {
  display: none;
}

@media (max-width: 767px) {
  .smart-suggest-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    bottom: auto;
    max-height: min(240px, 44vh);
    border-radius: 10px;
    padding: 8px;
  }

  .smart-suggest-menu::before {
    content: none;
    display: none;
  }

  .smart-suggest-close {
    display: none;
  }

  .smart-suggest-search {
    display: none;
  }

  .smart-suggest-section {
    padding: 8px 8px 4px;
    font-size: 11px;
  }

  .smart-suggest-card {
    min-height: 48px;
    padding: 10px;
  }
}
