/* VOG SEARCH — Dropdown suggestions */
.vogsearch-dropdown {
  position: absolute;
  z-index: 9999;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  display: none;
  max-height: 70vh;
  overflow-y: auto;
}
.vogsearch-dropdown--visible { display: block; }

.vogsearch-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 150px;
}
.vogsearch-col { padding: 14px 0; }
.vogsearch-col--cats { border-right: 1px solid #f0f0f0; }
.vogsearch-col-title {
  font-size: 10px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: #aaa; padding: 0 14px 8px;
}

/* Catégories */
.vogsearch-cat {
  display: block; padding: 6px 14px; font-size: 13px; color: #333;
  font-weight: 500; text-decoration: none; transition: background .1s, color .1s;
}
.vogsearch-cat:hover { background: #f5f5f5; color: #BCCF00; text-decoration: none; }

/* Produits */
.vogsearch-product {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 14px; text-decoration: none; transition: background .1s;
}
.vogsearch-product:hover { background: #f9f9f9; text-decoration: none; }
.vogsearch-product-img {
  width: 50px; height: 50px; border-radius: 6px; overflow: hidden;
  background: #f5f5f5; flex-shrink: 0;
}
.vogsearch-product-img img { width: 100%; height: 100%; object-fit: cover; }
.vogsearch-product-info {
  flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px;
}
.vogsearch-product-name {
  font-size: 12px; color: #333; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.vogsearch-product-price { font-size: 13px; font-weight: 600; color: #1a1a1a; }

/* Highlight */
mark { background: transparent; color: #BCCF00; font-weight: 700; padding: 0; }

/* Footer */
.vogsearch-footer {
  border-top: 1px solid #f0f0f0; padding: 10px 14px; background: #fafafa;
  display: flex; justify-content: flex-end;
}
.vogsearch-all { font-size: 12px; font-weight: 500; color: #555; text-decoration: none; }
.vogsearch-all:hover { color: #1a1a1a; }

/* Loading / empty */
.vogsearch-loading, .vogsearch-empty { padding: 20px 14px; text-align: center; font-size: 13px; color: #aaa; }

/* Responsive */
@media (max-width: 768px) {
  .vogsearch-dropdown { left: 10px !important; right: 10px !important; width: auto !important; }
  .vogsearch-grid { grid-template-columns: 1fr; }
  .vogsearch-col--cats { display: none; }
}
