/**
 * Enhanced Search Dropdown — Depop/Vinted Style
 */

/* Section Structure */
.vrool-es-section {
  padding: 4px 0;
}
.vrool-es-section:not(:last-child) {
  border-bottom: 1px solid #f1f5f9;
}
.vrool-es-section-title {
  padding: 10px 16px 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vrool-es-section-title i {
  font-size: 10px;
  color: #cbd5e1;
}

/* Suggestion Items */
.vrool-es-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: #1e293b;
  transition: background 0.1s;
  cursor: pointer;
}
.vrool-es-item:hover,
.vrool-es-item-active {
  background: #f3ebff;
  border-radius: 8px;
  margin: 0 8px;
}
.vrool-es-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vrool-es-item-icon i {
  font-size: 12px;
  color: #94a3b8;
}
.vrool-es-item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.vrool-es-item-text {
  font-size: 14px;
  font-weight: 400;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vrool-es-item-text strong {
  font-weight: 700;
  color: #0f172a;
}
.vrool-es-item-cat {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  white-space: nowrap;
}
.vrool-es-item-badge {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #ede9fe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vrool-es-item-badge i {
  font-size: 10px;
  color: #7c3aed;
}
.vrool-es-item-detail {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 400;
}

/* People / Shops */
.vrool-es-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.vrool-es-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vrool-es-avatar i {
  font-size: 14px;
  color: #94a3b8;
}
.vrool-es-shop-label {
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: #d1fae5;
  padding: 3px 8px;
  border-radius: 10px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Typo Correction Banner */
.vrool-es-correction {
  padding: 10px 16px;
  background: #fffbeb;
  border-bottom: 1px solid #fef3c7;
  font-size: 13px;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vrool-es-correction i {
  color: #f59e0b;
}
.vrool-es-correction-term {
  font-weight: 700;
  color: #1e293b;
  text-decoration: underline;
  text-decoration-color: #059669;
  cursor: pointer;
}
.vrool-es-correction-term:hover {
  color: #059669;
}

/* Footer */
.vrool-es-footer {
  padding: 12px 16px;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}
.vrool-es-footer a {
  font-size: 13px;
  font-weight: 600;
  color: #4f46e5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.vrool-es-footer a:hover {
  color: #3730a3;
}
.vrool-es-footer a i {
  font-size: 11px;
}

/* Empty State */
.vrool-es-empty {
  padding: 24px 16px;
  text-align: center;
  color: #94a3b8;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.vrool-es-empty i {
  font-size: 14px;
  color: #cbd5e1;
}

/* Dark Mode */
[data-theme="dark"] .vrool-es-section-title { color: #64748b; }
[data-theme="dark"] .vrool-es-section:not(:last-child) { border-color: #334155; }
[data-theme="dark"] .vrool-es-item { color: #e2e8f0; }
[data-theme="dark"] .vrool-es-item:hover,
[data-theme="dark"] .vrool-es-item-active { background: rgba(255,255,255,0.04); }
[data-theme="dark"] .vrool-es-item-icon { background: #334155; }
[data-theme="dark"] .vrool-es-item-icon i { color: #64748b; }
[data-theme="dark"] .vrool-es-item-text { color: #e2e8f0; }
[data-theme="dark"] .vrool-es-item-text strong { color: #fff; }
[data-theme="dark"] .vrool-es-item-cat { color: #94a3b8; }
[data-theme="dark"] .vrool-es-avatar { background: #334155; }
[data-theme="dark"] .vrool-es-correction { background: #1c1917; border-color: #44403c; color: #fbbf24; }
[data-theme="dark"] .vrool-es-correction-term { color: #e2e8f0; }
[data-theme="dark"] .vrool-es-footer { border-color: #334155; }
[data-theme="dark"] .vrool-es-footer a { color: #818cf8; }
[data-theme="dark"] .vrool-es-empty { color: #64748b; }

/* Mobile */
@media (max-width: 640px) {
  .vrool-es-item { padding: 9px 14px; gap: 10px; }
  .vrool-es-item-icon { width: 28px; height: 28px; border-radius: 6px; }
  .vrool-es-avatar { width: 32px; height: 32px; }
  .vrool-es-item-text { font-size: 13px; }
  .vrool-es-item-cat { font-size: 11px; }
  .vrool-es-section-title { padding: 8px 14px 3px; font-size: 10px; }
  .vrool-es-shop-label { font-size: 10px; padding: 2px 6px; }
}
