.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 1000;
    max-height: 450px;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none;
    border-radius: 0 0 8px 8px;
}

.suggestion-section-title {
    padding: 8px 15px;
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.2s ease;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f4f6f8;
    text-decoration: none;
    color: #000;
}

.suggestion-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fff;
}

.suggestion-details {
    flex: 1;
}

.suggestion-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
    line-height: 1.4;
}

.suggestion-price {
    font-size: 15px;
    color: #b58111;
    font-weight: 800;
}

.suggestion-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    font-size: 14px;
    color: #555;
    transition: background 0.2s;
}

.suggestion-link:hover {
    background: #f0f2f5;
    color: #b58111;
    text-decoration: none;
}

.suggestion-link i {
    font-size: 12px;
    color: #ccc;
}