/**
 * Header Live Search Styles
 * Styling for search dropdown and live search results
 */

/* Search Dropdown Container */
.header-search-wrapper,
.mobile-search-wrapper {
  position: relative;
}

/* Search Dropdown Panel */
.header-search-dropdown,
.mobile-search-dropdown {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Search Input */
.header-search-form input,
.mobile-search-form input {
  font-family: var(--font-body);
  font-size: 1rem;
}

.header-search-form input:focus,
.mobile-search-form input:focus {
  box-shadow: 0 0 0 3px rgba(243, 119, 33, 0.1);
}

/* Search Results Container */
.header-search-results,
.mobile-search-results {
  scrollbar-width: thin;
  scrollbar-color: #F26A21 #f3f4f6;
}

.header-search-results::-webkit-scrollbar,
.mobile-search-results::-webkit-scrollbar {
  width: 6px;
}

.header-search-results::-webkit-scrollbar-track,
.mobile-search-results::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 3px;
}

.header-search-results::-webkit-scrollbar-thumb,
.mobile-search-results::-webkit-scrollbar-thumb {
  background: #F26A21;
  border-radius: 3px;
}

.header-search-results::-webkit-scrollbar-thumb:hover,
.mobile-search-results::-webkit-scrollbar-thumb:hover {
  background: #d95e1a;
}

/* Search Result Item */
.search-result-item {
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background-color: #f9fafb !important;
}

.search-result-image-wrapper {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
}

.search-result-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  background-color: #f3f4f6;
}

.search-result-image-placeholder {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-result-image-placeholder::before {
  content: '📄';
  font-size: 1.5rem;
}

.search-result-content {
  overflow: hidden;
}

.search-result-title {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.search-result-excerpt {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.search-result-type {
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Line clamp utilities */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Loading animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Mobile specific adjustments */
@media (max-width: 1024px) {
  .mobile-search-dropdown {
    max-width: calc(100vw - 1rem);
  }
}

/* Ensure dropdown appears above other elements */
.header-search-dropdown,
.mobile-search-dropdown {
  z-index: 9999 !important;
}

