/* Hoà Cường — Search dropdown + results page */

.hc-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(13, 77, 140, 0.15), 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #e5e7eb;
  max-height: 480px;
  overflow-y: auto;
  z-index: 9999;
}
.hc-dd-results .hc-dd-item {
  display: block;
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  transition: background 150ms;
}
.hc-dd-results .hc-dd-item:hover { background: #fff8f0; }
.hc-dd-results .hc-dd-item:last-of-type { border-bottom: 0; }
.hc-dd-title {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #0d4d8c;
  margin-bottom: 2px;
}
.hc-dd-meta {
  display: block;
  font-size: 12px;
  color: #94a3b8;
}
.hc-dd-all {
  display: block;
  padding: 12px 16px;
  text-align: center;
  background: linear-gradient(135deg, #ff8a00, #ff6a00);
  color: #fff !important;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border-radius: 0 0 12px 12px;
}
.hc-dd-all:hover { opacity: 0.92; }
.hc-dd-empty {
  padding: 24px 16px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

/* Search results page */
.hc-search-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 16px;
}
.hc-search-page h1 {
  color: #0d4d8c;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 4px;
}
.hc-search-page #hc-search-query {
  color: #ff6a00;
}
.hc-results-count {
  color: #6b7280;
  font-size: 14px;
  margin: 16px 0 24px;
}
.hc-search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.hc-result-item {
  display: block;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: all 200ms ease;
}
.hc-result-item:hover {
  border-color: #ff6a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 77, 140, 0.08);
}
.hc-result-type {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
}
.hc-type-product { background: rgba(255, 106, 0, 0.12); color: #c8400e; }
.hc-type-category { background: rgba(13, 77, 140, 0.1); color: #0d4d8c; }
.hc-type-page { background: rgba(100, 116, 139, 0.1); color: #475569; }
.hc-result-title {
  font-size: 16px;
  font-weight: 700;
  color: #0d4d8c;
  margin: 0 0 8px;
  line-height: 1.35;
}
.hc-result-desc {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 10px;
  line-height: 1.5;
}
.hc-result-url {
  display: block;
  font-size: 11.5px;
  color: #94a3b8;
  font-family: monospace;
}

.hc-no-results {
  text-align: center;
  padding: 48px 16px;
  background: #f9fafb;
  border-radius: 12px;
}
.hc-no-results p {
  color: #4b5563;
  margin-bottom: 16px;
}
.hc-search-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff8a00, #ff6a00);
  color: #fff !important;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 16px;
}

@media (max-width: 767px) {
  .hc-search-dropdown {
    position: fixed;
    left: 8px; right: 8px; top: auto;
    bottom: 80px;
    max-height: 60vh;
  }
}
