/* Base */
:root {
  --accent: #0a1e5c;
  --muted: #3ac1d8;
  --secondary: #f47c25;
  --secondaryH: #d28a57;
  --tertiary: #1e87c9;
  --glass: rgba(255, 255, 255, 0.75);
}

.search-dropdown {
  position: absolute;
  top: 45px;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  display: none;
  z-index: 999;
  max-height: 300px;
  overflow-y: auto;
}

.search-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.search-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.search-item:hover {
  background: #f7f7f7;
}

.search-title {
  font-weight: 600;
  font-size: 14px;
}

.search-price {
  font-size: 13px;
  color: #888;
}

.nav-link.active {
  font-weight: 600;
  border: 1px solid var(--tertiary);
  border-radius: 10px;
  color: var(--tertiary) !important;
}
