.goldsine-search-suggest {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border: 1px solid #eceef1;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(17, 22, 34, 0.14);
    overflow: hidden;
    z-index: 40;
    max-height: 360px;
    overflow-y: auto;
}
.goldsine-search-suggest__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    text-decoration: none;
    border-bottom: 1px solid #f1f2f5;
}
.goldsine-search-suggest__item:last-child { border-bottom: none; }
.goldsine-search-suggest__item:hover,
.goldsine-search-suggest__item.is-active {
    background: #fff8ef;
}
.goldsine-search-suggest__type {
    flex-shrink: 0;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-gold-600);
    background: #fff3de;
    border-radius: 6px;
    padding: 3px 8px;
}
.goldsine-search-suggest__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.goldsine-search-suggest__title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark-950);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.goldsine-search-suggest__title mark {
    background: none;
    color: var(--color-gold-600);
    font-weight: 700;
}
.goldsine-search-suggest__meta {
    font-family: var(--font-sans);
    font-size: 12px;
    color: #8a90a0;
}

/* Hero search sits on a dark background — needs its own positioning context */
.hero__search {
    position: relative;
}

/* Header search form is itself position:absolute (expand animation) — dropdown
   is appended inside it, so it needs the overflow:hidden lifted while open,
   otherwise the collapse/expand transition clips the suggestion list. */
.site-header__search.is-open .site-header__search-form {
    overflow: visible;
}
