/* Search dropdown container */
.search-wrapper {
    position: relative;
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 380px;
    max-height: 500px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
}

.search-dropdown.show {
    display: block;
}

.search-dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.search-dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.2s;
}

.search-dropdown-item:hover {
    background-color: #f8f9fa;
}

.search-dropdown-item:last-child {
    border-bottom: none;
}

.search-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-item-details {
    flex: 1;
    min-width: 0;
}

.search-item-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-item-subtitle {
    font-size: 12px;
    color: #666;
    margin: 0 0 4px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-item-price {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.search-show-more {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-top: 1px solid #eee;
    transition: background-color 0.2s;
}

.search-show-more:hover {
    background-color: #e9ecef;
    color: #000;
}

.search-no-results {
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

.search-no-results i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 12px;
}

.search-no-results p {
    margin: 8px 0 0 0;
    font-size: 14px;
}

/* Loading spinner */
.search-loading {
    padding: 40px;
    text-align: center;
}

.search-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .search-dropdown {
        width: calc(100vw - 32px);
        max-width: 380px;
    }
}
