/* Golf Brothers – Search autocomplete dropdown */
#navigation .nav-head-level-2 .input-group.sa-open { overflow: visible; }
.search-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  max-height: 480px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.sa-group { border-bottom: 1px solid #eee; }
.sa-group:last-of-type { border-bottom: none; }
.sa-group-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
  padding: 8px 14px 4px;
}
.sa-item {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  text-decoration: none;
  color: #222;
  cursor: pointer;
  transition: background .1s;
}
.sa-item:hover, .sa-item--active { background: #f5f5f5; }
.sa-item mark { background: #ffeeba; padding: 0; font-weight: 600; }

/* Product items */
.sa-item--product { gap: 10px; }
.sa-product-pic {
  display: block;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 3px;
  background: #fafafa;
  overflow: hidden;
}
.sa-product-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
/* Category/brand/article thumbnail (uses .sa-pic <picture> wrapper). */
.sa-pic {
  display: block;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  background: #fafafa;
  overflow: hidden;
}
.sa-pic img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
.sa-product-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.sa-product-name {
  font-size: 13px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sa-product-brand {
  font-size: 11px;
  color: #888;
}
.sa-product-meta {
  flex-shrink: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.sa-product-price {
  font-size: 13px;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
}
.sa-product-price--sale { color: #e53935; }
.sa-product-price--list { font-size: 11px; color: #888; font-weight: 400; }
.sa-product-price--list del { text-decoration: line-through; }
.sa-product-price-wrap { display: flex; flex-direction: column; align-items: flex-end; }
.sa-product-stock {
  font-size: 10px;
  color: #aaa;
}
.sa-product-stock--yes,
.sa-product-stock--available { color: #49943c; }
.sa-product-stock--onway { color: #d98600; }
.sa-product-stock--unavailable { color: #c33; }

/* Category items */
.sa-item--cat { gap: 8px; }
.sa-cat-icon {
  flex-shrink: 0;
  color: #aaa;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sa-cat-info {
  display: flex;
  flex-direction: column;
}
.sa-cat-name { font-size: 13px; font-weight: 500; }
.sa-cat-path { font-size: 11px; color: #888; }

/* Article items */
.sa-item--article { justify-content: space-between; }
.sa-article-title { font-size: 13px; }
.sa-article-date { font-size: 11px; color: #888; white-space: nowrap; margin-left: 12px; }

/* View all link */
.sa-all {
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #49943c;
  border-top: 1px solid #eee;
  padding: 10px 14px;
}
.sa-all:hover { color: #3a7a30; }

/* Empty state */
.sa-empty {
  padding: 16px 14px;
  color: #888;
  font-size: 13px;
  text-align: center;
}

/* Mobile: full-width under search */
@media (max-width: 767px) {
  .search-autocomplete {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    max-height: 60vh;
    border-radius: 0;
  }
}
