.smm-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    border-radius: 0 0 8px 8px;
}

.smm-search-loading,
.smm-search-no-results,
.smm-search-error {
    padding: 15px;
    color: #666;
    font-size: 14px;
    text-align: center;
}

.smm-search-group {
    border-bottom: 1px solid #f9f9f9;
}

.smm-search-group-title {
    padding: 10px 15px;
    background: #fcfcfc;
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.smm-search-item-wrapper {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
    background: #fff;
    transition: background 0.2s;
}

.smm-search-item-wrapper:last-child {
    border-bottom: none;
}

.smm-search-item-wrapper:hover {
    background: #f9f9f9;
}

.smm-search-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    flex-grow: 1;
}

.smm-search-buy-btn {
    display: inline-block;
    padding: 6px 12px;
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    margin-right: 15px;
    white-space: nowrap;
}

.smm-search-buy-btn:hover {
    background: #333;
    color: #fff;
}

.smm-search-thumb {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 12px;
    background: #eee;
    flex-shrink: 0;
}

.smm-search-info {
    flex: 1;
    overflow: hidden;
}

.smm-search-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.smm-search-meta {
    font-size: 12px;
    color: #888;
}

/* Header Search Container Relative Positioning */
.header-search {
    position: relative;
}