/* ==========================================================================
   Frosted Bloom — instant search autocomplete dropdown.
   The panel is fixed just below the slide-down search overlay (which is 49px
   tall) and aligned to the same 1200px content width as the search form.
   ========================================================================== */

.gfd-suggest {
	position: fixed;
	top: 49px;
	left: 0;
	right: 0;
	z-index: 10000;
}
.gfd-suggest__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}
.gfd-suggest__card {
	max-width: 620px;
	max-height: calc(100vh - 80px);
	overflow-y: auto;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 0 0 14px 14px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
	padding: 8px;
}

.gfd-suggest__empty {
	padding: 18px 12px;
	color: #8a8a94;
	font-size: 14px;
	text-align: center;
}

.gfd-suggest__sec { padding: 4px 0; }
.gfd-suggest__sec + .gfd-suggest__sec { border-top: 1px solid #f2f2f2; }
.gfd-suggest__heading {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #9a8f86;
	padding: 8px 10px 4px;
}

/* Category chips. */
.gfd-suggest__cats {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 2px 8px 6px;
}
.gfd-suggest__cat {
	display: inline-block;
	padding: 5px 12px;
	font-size: 13px;
	color: #4a4a55;
	text-decoration: none;
	background: #f6f2ec;
	border: 1px solid #eee1d4;
	border-radius: 999px;
}
.gfd-suggest__cat:hover,
.gfd-suggest__cat.is-active {
	background: rgba(var(--gfd-primary-rgb, 224, 138, 18), 0.12);
	border-color: var(--gfd-primary, #e08a12);
	color: var(--gfd-primary, #e08a12);
}

/* Product rows. */
.gfd-suggest__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 10px;
	border-radius: 10px;
	text-decoration: none;
	color: #1a1a1a;
}
.gfd-suggest__item:hover,
.gfd-suggest__item.is-active { background: rgba(var(--gfd-primary-rgb, 224, 138, 18), 0.08); }
.gfd-suggest__img {
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	border-radius: 8px;
	overflow: hidden;
	background: #f5f5f5;
}
.gfd-suggest__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gfd-suggest__metacol { display: flex; flex-direction: column; min-width: 0; }
.gfd-suggest__name {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	color: #2e2e3a;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.gfd-suggest__price { font-size: 13px; font-weight: 700; color: var(--gfd-primary, #e08a12); margin-top: 2px; }

/* Footer "See all results" row. */
.gfd-suggest__all {
	display: block;
	margin-top: 4px;
	padding: 11px 12px;
	text-align: center;
	font-size: 13.5px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	background: rgb(197, 64, 123);
	border-radius: 10px;
}
.gfd-suggest__all:hover,
.gfd-suggest__all.is-active { filter: brightness(1.06); color: #fff; }

@media (max-width: 600px) {
	.gfd-suggest__inner { padding: 0 12px; }
	.gfd-suggest__card { max-width: 100%; }
}
