/* Dropdown suggestions for mega menu search */
.pcmm-search-wrap {
  position: relative;
}
.pcmm-search-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-top: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-height: 70vh;
  overflow: auto;
  display: none;
}
.pcmm-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  text-decoration: none;
  color: inherit;
}
.pcmm-item:hover {
  background: #f9fafb;
}
.pcmm-item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
  flex: none;
}
.pcmm-meta {
  display: grid;
  gap: 2px;
}
.pcmm-title {
  font-weight: 600;
  line-height: 1.35;
}
.pcmm-price {
  font-size: 12px;
  color: #0a7d2b;
}
.pcmm-view-all {
  display: block;
  text-align: center;
  padding: 10px 12px;
  border-top: 1px solid #e5e7eb;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}
.pcmm-view-all:hover {
  background: #f9fafb;
}
